=$head NAME

Locale::VersionedMessages::Sets::$set -- Description of the $set message set

=$head DESCRIPTION

This module is not intended for public use. It is used internally by Locale::VersionedMessages to store the description of a set of messages that will be localized for some application.

This message set has been translated into the following locales:

$def_locale (Default locale)
";

foreach my $locale (@oth_locale) {
   print $out "   $locale\n";
}

print $out "
=$head MESSAGE IDS

The following message IDs are available in this message set:

    ";

    foreach my $msgid (sort keys %$messages) {
       print $out "=item B<'$msgid'>\n\n";
    
       if (exists $$messages{$msgid}{'vals'}) {
          my @vals = @{ $$messages{$msgid}{'vals'} };
          my $vals = join(' ',@vals);
          print $out "Substitution values: $vals\n";
       }
    
       if (exists $$messages{$msgid}{'desc'}) {
          my $desc = $$messages{$msgid}{'desc'};
          print $out "$desc\n";
       }
       print $out "\n";
    }
    
    print $out "
    =back

1 POD Error

The following errors were encountered while parsing the POD:

Around line 166:

=over without closing =back