whoops
[gitmo/moose-website.git] / lib / Moose / Website / I18N / po / en.po
CommitLineData
7476895d 1msgid ""
2msgstr ""
3"MIME-Version: 1.0\n"
4"Content-Type: text/plain; charset=utf-8\n"
5"Content-Transfer-Encoding: 8bit\n"
6
9db2b8f2 7msgid "header moose"
9dac4e3b 8msgstr "moose"
7476895d 9
9db2b8f2 10msgid "header moose subtitle"
7476895d 11msgstr "A Post Modern Object System for Perl"
12
9db2b8f2 13msgid "moose page title"
14msgstr "Moose - A post modern object system for Perl"
15
7476895d 16# nav
17
18msgid "nav home"
19msgstr "Home"
20
21msgid "nav about"
22msgstr "About"
23
24msgid "nav articles"
25msgstr "Articles"
26
27msgid "nav download"
28msgstr "Download"
29
5efab74a 30msgid "nav support"
31msgstr "Support"
32
c5fd0670 33msgid "nav presentations"
34msgstr "Presentations"
35
4e705bd2 36# home
37
38msgid "home body"
39msgstr ""
e4ac6848 40"<p>Moose is a <a target='_blank' href='http://www.perl.com/pub/a/1999/03/pm.html'>postmodern object system</a> for Perl 5 that takes the tedium out of writing object-oriented Perl. It borrows all the best features from Perl 6, CLOS (LISP), Smalltalk, Java, BETA, OCaml, Ruby and more, while still keeping true to its Perl 5 roots.</p>"
41"<p>Moose is 100% production ready and in heavy use in a number of systems and growing every day. <a target='_blank' href='http://search.cpan.org/dist/Moose'>Try it today!</a></p>"
4e705bd2 42
7476895d 43# about
44
5efab74a 45msgid "about header"
7476895d 46msgstr "About Moose"
47
48msgid "about body"
49msgstr ""
4e705bd2 50"<p>Moose is an extension of the Perl 5 object system. The main goal of Moose is to make Perl 5 Object Oriented programming easier, more consistent and less tedious. With Moose you can to think more about what you want to do and less about the mechanics of OOP.</p>"
9db2b8f2 51"<p>Here is a sample of what Moose looks like.</p>"
4e705bd2 52"<pre>"
53"package Point;\n"
54"use Moose;\n"
55"\n"
56"has 'x' => (is => 'rw', isa => 'Int');\n"
57"has 'y' => (is => 'rw', isa => 'Int');\n"
58"\n"
59"sub clear {\n"
60" my $self = shift;\n"
61" $self->x(0);\n"
62" $self->y(0);\n"
63"}\n"
64"\n"
65"package Point3D;\n"
66"use Moose;\n"
67"\n"
68"extends 'Point';\n"
69"\n"
70"has 'z' => (is => 'rw', isa => 'Int');\n"
71"\n"
72"after 'clear' => sub {\n"
73" my $self = shift;\n"
74" $self->z(0);\n"
75"};\n"
76"</pre>"
77
78msgid "about new to moose header"
79msgstr "New to Moose?"
80
81msgid "about new to moose body"
82msgstr ""
e4ac6848 83"<p>If you're new to Moose, the best place to start is the <a target='_blank' href='http://search.cpan.org/dist/Moose/lib/Moose/Manual.pod'>Moose::Manual</a> docs, followed by the <a target='_blank' href='http://search.cpan.org/dist/Moose/lib/Moose/Cookbook.pod'>Moose::Cookbook</a>. The intro will show you what Moose is, and how it makes Perl 5 OO better.</p>"
4e705bd2 84"<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 API documentation to get more detail on features which interest you.</p>"
7476895d 85
5efab74a 86msgid "about company list header"
87msgstr "Companies that use Moose"
88
89msgid "about company list body"
90msgstr "Moose is used by a large number of companies around the world, here are a few of them."
91
7476895d 92# download
93
5efab74a 94msgid "download header"
7476895d 95msgstr "Download"
96
5efab74a 97msgid "download cpan header"
7476895d 98msgstr "CPAN"
99
5efab74a 100msgid "download cpan body"
9db2b8f2 101msgstr "Moose is available for download from the CPAN, Perl's world-wide mirrored module distribution platform. Below is a number of links to Moose and it's related modules. <a target='_blank' href='http://cpants.perl.org/dist/used_by/Moose'>Here is a list</a> of other CPAN modules that use Moose."
102
103msgid "download info Moose"
104msgstr "The core Moose distribution"
105
106msgid "download info Class::MOP"
107msgstr "The underlying meta object protocol upon which Moose is built"
108
0932f6fe 109msgid "download info Task::Moose"
9db2b8f2 110msgstr "A collection of excellent Moose extensions"
111
0932f6fe 112msgid "download info Task::Kensho"
113msgstr "A collection of excellent Modern Perl modules"
114
abf4f469 115msgid "download info MooseX::*"
9db2b8f2 116msgstr "The Moose extensions"
5efab74a 117
118msgid "download git header"
7476895d 119msgstr "Git"
120
5efab74a 121msgid "download git body"
9db2b8f2 122msgstr ""
0932f6fe 123"<p>Moose is developed using the <a target='_blank' href='http://git-scm.com/'>Git</a> source control system. Moose is a very open project and we are always willing to take contributions from others. The <a target='_blank' href='http://search.cpan.org/dist/Moose/lib/Moose/Manual/Contributing.pod'>Moose::Manual::Contributing</a> outlines our specific contribution policies and tells you how get started with our workflow.</p>"
9db2b8f2 124"<p>Here is a visualization of the <a target='_blank' href='http://www.youtube.com/watch?v=Gwq10W0RaHQ&hd=1'>Moose</a> and <a target='_blank' href='http://www.youtube.com/watch?v=HlJDnvNSfJo&hd=1'>Class::MOP</a> git repositories over time.</p>"
5efab74a 125
126msgid "download git public"
7476895d 127msgstr "Git Public Repo URL"
128
5efab74a 129msgid "download git commiter"
7476895d 130msgstr "Git URL for Commiters"
131
5efab74a 132msgid "download git web view"
7476895d 133msgstr "Git Web View"
134
9db2b8f2 135msgid "download github mirror"
136msgstr "Github Mirror"
137
5efab74a 138# support
139
140msgid "support header"
141msgstr "Support"
142
143msgid "support irc header"
144msgstr "IRC Channels"
145
4e705bd2 146msgid "support irc body"
147msgstr "The quickest way to get Moose support is to engage the community on IRC."
148
5efab74a 149msgid "support mailing list header"
150msgstr "Mailing List"
151
4e705bd2 152msgid "support mailing list body"
153msgstr "The Moose mailing lists can be an excellent way to get your questions answered."
154
5efab74a 155msgid "support misc header"
156msgstr "Misc."
157
4e705bd2 158msgid "support misc body"
159msgstr "Here are a couple other items which are useful that you might like."
160
5efab74a 161msgid "support moose mailing list"
162msgstr "Moose mailing list"
163
164msgid "support moose mailing list archives"
165msgstr "Moose mailing list archives"
166
167msgid "support textmate bundle"
168msgstr "Moose TextMate Bundle"
169
170msgid "support quickref card"
171msgstr "Moose QuickRef Card"
172
173msgid "support training header"
174msgstr "Moose Training"
175
176msgid "support training body"
177msgstr "Several companies and individuals provide Moose training, here are a few."
178
179msgid "support consulting header"
180msgstr "Moose Consulting"
181
182msgid "support consulting body"
183msgstr "Several companies and individuals provide Moose consulting, here are a few."
184
4e705bd2 185# articles
186
187msgid "articles header"
188msgstr "Articles About Moose"
189
190msgid "articles body"
9db2b8f2 191msgstr "Below are a list of articles and blog posts written about Moose, this is by no means a comprehensive list. The <a href='_blank' href='http://ironman.enlightenedperl.org/'>Perl Iron Man</a> blog feed quite often has Moose related blog posts."
4e705bd2 192
c5fd0670 193# presentations
5efab74a 194
c5fd0670 195msgid "presentations header"
196msgstr "Presentations About Moose"
5efab74a 197
4e705bd2 198msgid "presentations body"
199msgstr "Below are links to presentations given about Moose at conferences and local Perl Mongers group meetings."
200
3cb66fff 201# footer
7476895d 202
3cb66fff 203msgid "footer copyright"
4e705bd2 204msgstr "Copyright &copy; 2006&mdash;2010 Infinity Interactive"
7476895d 205
3cb66fff 206msgid "footer terms"
207msgstr "This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself."
7476895d 208
209
210