whoops
[gitmo/moose-website.git] / lib / Moose / Website / I18N / po / en.po
1 msgid ""
2 msgstr ""
3 "MIME-Version: 1.0\n"
4 "Content-Type: text/plain; charset=utf-8\n"
5 "Content-Transfer-Encoding: 8bit\n"
6
7 msgid "header moose"
8 msgstr "moose"
9
10 msgid "header moose subtitle"
11 msgstr "A Post Modern Object System for Perl"
12
13 msgid "moose page title"
14 msgstr "Moose - A post modern object system for Perl"
15
16 # nav
17
18 msgid "nav home"
19 msgstr "Home"
20
21 msgid "nav about"
22 msgstr "About"
23
24 msgid "nav articles"
25 msgstr "Articles"
26
27 msgid "nav download"
28 msgstr "Download"
29
30 msgid "nav support"
31 msgstr "Support"
32
33 msgid "nav presentations"
34 msgstr "Presentations"
35
36 # home
37
38 msgid "home body"
39 msgstr ""
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>"
42
43 # about
44
45 msgid "about header"
46 msgstr "About Moose"
47
48 msgid "about body"
49 msgstr ""
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>"
51 "<p>Here is a sample of what Moose looks like.</p>"
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
78 msgid "about new to moose header"
79 msgstr "New to Moose?"
80
81 msgid "about new to moose body"
82 msgstr ""
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>"
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>"
85
86 msgid "about company list header"
87 msgstr "Companies that use Moose"
88
89 msgid "about company list body"
90 msgstr "Moose is used by a large number of companies around the world, here are a few of them."
91
92 # download
93
94 msgid "download header"
95 msgstr "Download"
96
97 msgid "download cpan header"
98 msgstr "CPAN"
99
100 msgid "download cpan body"
101 msgstr "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
103 msgid "download info Moose"
104 msgstr "The core Moose distribution"
105
106 msgid "download info Class::MOP"
107 msgstr "The underlying meta object protocol upon which Moose is built"
108
109 msgid "download info Task::Moose"
110 msgstr "A collection of excellent Moose extensions"
111
112 msgid "download info Task::Kensho"
113 msgstr "A collection of excellent Modern Perl modules"
114
115 msgid "download info MooseX::*"
116 msgstr "The Moose extensions"
117
118 msgid "download git header"
119 msgstr "Git"
120
121 msgid "download git body"
122 msgstr ""
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>"
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>"
125
126 msgid "download git public"
127 msgstr "Git Public Repo URL"
128
129 msgid "download git commiter"
130 msgstr "Git URL for Commiters"
131
132 msgid "download git web view"
133 msgstr "Git Web View"
134
135 msgid "download github mirror"
136 msgstr "Github Mirror"
137
138 # support
139
140 msgid "support header"
141 msgstr "Support"
142
143 msgid "support irc header"
144 msgstr "IRC Channels"
145
146 msgid "support irc body"
147 msgstr "The quickest way to get Moose support is to engage the community on IRC."
148
149 msgid "support mailing list header"
150 msgstr "Mailing List"
151
152 msgid "support mailing list body"
153 msgstr "The Moose mailing lists can be an excellent way to get your questions answered."
154
155 msgid "support misc header"
156 msgstr "Misc."
157
158 msgid "support misc body"
159 msgstr "Here are a couple other items which are useful that you might like."
160
161 msgid "support moose mailing list"
162 msgstr "Moose mailing list"
163
164 msgid "support moose mailing list archives"
165 msgstr "Moose mailing list archives"
166
167 msgid "support textmate bundle"
168 msgstr "Moose TextMate Bundle"
169
170 msgid "support quickref card"
171 msgstr "Moose QuickRef Card"
172
173 msgid "support training header"
174 msgstr "Moose Training"
175
176 msgid "support training body"
177 msgstr "Several companies and individuals provide Moose training, here are a few."
178
179 msgid "support consulting header"
180 msgstr "Moose Consulting"
181
182 msgid "support consulting body"
183 msgstr "Several companies and individuals provide Moose consulting, here are a few."
184
185 # articles
186
187 msgid "articles header"
188 msgstr "Articles About Moose"
189
190 msgid "articles body"
191 msgstr "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."
192
193 # presentations
194
195 msgid "presentations header"
196 msgstr "Presentations About Moose"
197
198 msgid "presentations body"
199 msgstr "Below are links to presentations given about Moose at conferences and local Perl Mongers group meetings."
200
201 # footer
202
203 msgid "footer copyright"
204 msgstr "Copyright &copy; 2006&mdash;2010 Infinity Interactive"
205
206 msgid "footer terms"
207 msgstr "This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself."
208
209
210