Changed "Companies that use Moose" to "Organizations that use Moose"
Jay Hannah [Tue, 6 Apr 2010 19:37:52 +0000 (14:37 -0500)]
Build.PL
data/pages.yml
lib/Moose/Website/I18N/po/en.po
lib/Moose/Website/Resource/Templates/about.tt

index 3da0b3b..82dce12 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -19,8 +19,11 @@ my $self = Local::Moose::Website::Build->new(
     requires => {
         'Locale::Maketext::Lexicon'  => 0,
         Moose                        => 0,
+        'MooseX::Params::Validate'   => 0, 
+        'MooseX::Role::Parameterized'=> 0, 
         'MooseX::Types::Path::Class' => 0,
         'Path::Class'                => 0,
+        'Resource::Pack'             => 0,   # http://github.com/stevan/Resource-Pack
         Template                     => 0,
         'YAML::XS'                   => 0,
     },
index e370f15..3e50488 100644 (file)
@@ -6,7 +6,7 @@
   template : about.tt
   outfile  : about.html
   data     :
-    companies:
+    organizations:
       - name : "Yahoo!"
         url  : http://www.yahoo.com
       - name : "Symantec"
index f29709e..e090175 100644 (file)
@@ -55,11 +55,11 @@ msgstr ""
 "<p>If you're new to Moose, the best place to start is the <a href='http://search.cpan.org/dist/Moose/lib/Moose/Manual.pod'><code>Moose::Manual</code></a> docs, followed by the <a href='http://search.cpan.org/dist/Moose/lib/Moose/Cookbook.pod'><code>Moose::Cookbook</code></a>. The intro will show you what Moose is, and how it makes Perl 5 <acronym title='object orientation'>OO</acronym> better.</p>"
 "<p>The cookbook recipes on Moose basics will get you up to speed with many of Moose's features quickly. Once you have an idea of what Moose can do, you can use the <acronym title='application programming interface'>API</acronym> documentation to get more detail on features which interest you.</p>"
 
-msgid "about company list header"
-msgstr "Companies that use Moose"
+msgid "about organization list header"
+msgstr "Organizations that use Moose"
 
-msgid "about company list body"
-msgstr "<p>Moose is used by a large number of companies around the world, here are a few of them.</p>"
+msgid "about organization list body"
+msgstr "<p>Moose is used by a large number of organizations around the world, here are a few of them.</p>"
 
 # download
 
index 86f2db2..a983ec6 100644 (file)
@@ -9,12 +9,13 @@
     <h3>[% loc('about new to moose header') %]</h3>
     [% loc('about new to moose body') %]
 
-    <h3>[% loc('about company list header') %]</h3>
-    [% loc('about company list body') %]
+    <a name="organizations"></a>
+    <h3>[% loc('about organization list header') %]</h3>
+    [% loc('about organization list body') %]
 
     <ul>
-    [% FOREACH company IN current_page.data.companies.sort('name') %]
-        <li><a href="[% company.url %]">[% company.name %]</a></li>
+    [% FOREACH org IN current_page.data.organizations.sort('name') %]
+        <li><a href="[% org.url %]">[% org.name %]</a></li>
     [% END %]
     </ul>
-[% END %]
\ No newline at end of file
+[% END %]