hows them apples
[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
7476895d 7msgid "moose"
9dac4e3b 8msgstr "moose"
7476895d 9
10msgid "moose subtitle"
11msgstr "A Post Modern Object System for Perl"
12
13# nav
14
15msgid "nav home"
16msgstr "Home"
17
18msgid "nav about"
19msgstr "About"
20
21msgid "nav articles"
22msgstr "Articles"
23
24msgid "nav download"
25msgstr "Download"
26
5efab74a 27msgid "nav support"
28msgstr "Support"
29
c5fd0670 30msgid "nav presentations"
31msgstr "Presentations"
32
4e705bd2 33# home
34
35msgid "home body"
36msgstr ""
e4ac6848 37"<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>"
38"<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 39
7476895d 40# about
41
5efab74a 42msgid "about header"
7476895d 43msgstr "About Moose"
44
45msgid "about body"
46msgstr ""
4e705bd2 47"<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>"
48"<pre>"
49"package Point;\n"
50"use Moose;\n"
51"\n"
52"has 'x' => (is => 'rw', isa => 'Int');\n"
53"has 'y' => (is => 'rw', isa => 'Int');\n"
54"\n"
55"sub clear {\n"
56" my $self = shift;\n"
57" $self->x(0);\n"
58" $self->y(0);\n"
59"}\n"
60"\n"
61"package Point3D;\n"
62"use Moose;\n"
63"\n"
64"extends 'Point';\n"
65"\n"
66"has 'z' => (is => 'rw', isa => 'Int');\n"
67"\n"
68"after 'clear' => sub {\n"
69" my $self = shift;\n"
70" $self->z(0);\n"
71"};\n"
72"</pre>"
73
74msgid "about new to moose header"
75msgstr "New to Moose?"
76
77msgid "about new to moose body"
78msgstr ""
e4ac6848 79"<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 80"<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 81
5efab74a 82msgid "about company list header"
83msgstr "Companies that use Moose"
84
85msgid "about company list body"
86msgstr "Moose is used by a large number of companies around the world, here are a few of them."
87
7476895d 88# download
89
5efab74a 90msgid "download header"
7476895d 91msgstr "Download"
92
5efab74a 93msgid "download cpan header"
7476895d 94msgstr "CPAN"
95
5efab74a 96msgid "download cpan body"
4e705bd2 97msgstr "Moose is available for download from the CPAN."
5efab74a 98
99msgid "download git header"
7476895d 100msgstr "Git"
101
5efab74a 102msgid "download git body"
103msgstr "Here is the information about the Moose git repositories."
104
105msgid "download git public"
7476895d 106msgstr "Git Public Repo URL"
107
5efab74a 108msgid "download git commiter"
7476895d 109msgstr "Git URL for Commiters"
110
5efab74a 111msgid "download git web view"
7476895d 112msgstr "Git Web View"
113
5efab74a 114# support
115
116msgid "support header"
117msgstr "Support"
118
119msgid "support irc header"
120msgstr "IRC Channels"
121
4e705bd2 122msgid "support irc body"
123msgstr "The quickest way to get Moose support is to engage the community on IRC."
124
5efab74a 125msgid "support mailing list header"
126msgstr "Mailing List"
127
4e705bd2 128msgid "support mailing list body"
129msgstr "The Moose mailing lists can be an excellent way to get your questions answered."
130
5efab74a 131msgid "support misc header"
132msgstr "Misc."
133
4e705bd2 134msgid "support misc body"
135msgstr "Here are a couple other items which are useful that you might like."
136
5efab74a 137msgid "support moose mailing list"
138msgstr "Moose mailing list"
139
140msgid "support moose mailing list archives"
141msgstr "Moose mailing list archives"
142
143msgid "support textmate bundle"
144msgstr "Moose TextMate Bundle"
145
146msgid "support quickref card"
147msgstr "Moose QuickRef Card"
148
149msgid "support training header"
150msgstr "Moose Training"
151
152msgid "support training body"
153msgstr "Several companies and individuals provide Moose training, here are a few."
154
155msgid "support consulting header"
156msgstr "Moose Consulting"
157
158msgid "support consulting body"
159msgstr "Several companies and individuals provide Moose consulting, here are a few."
160
4e705bd2 161# articles
162
163msgid "articles header"
164msgstr "Articles About Moose"
165
166msgid "articles body"
167msgstr "Below are a list of articles and blog posts written about Moose."
168
c5fd0670 169# presentations
5efab74a 170
c5fd0670 171msgid "presentations header"
172msgstr "Presentations About Moose"
5efab74a 173
4e705bd2 174msgid "presentations body"
175msgstr "Below are links to presentations given about Moose at conferences and local Perl Mongers group meetings."
176
3cb66fff 177# footer
7476895d 178
3cb66fff 179msgid "footer copyright"
4e705bd2 180msgstr "Copyright &copy; 2006&mdash;2010 Infinity Interactive"
7476895d 181
3cb66fff 182msgid "footer terms"
183msgstr "This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself."
7476895d 184
185
186