getting there, now just need to fill out the rest of the content
[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::Kensho"
110 msgstr "A collection of excellent Moose extensions"
111
112 msgid "download info MooseX::"
113 msgstr "The Moose extensions"
114
115 msgid "download git header"
116 msgstr "Git"
117
118 msgid "download git body"
119 msgstr ""
120 "<p>Moose is developed using the <a target='_blank' href='http://git-scm.com/'>Git</a> source control system. Moose is 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>"
121 "<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>"
122
123 msgid "download git public"
124 msgstr "Git Public Repo URL"
125
126 msgid "download git commiter"
127 msgstr "Git URL for Commiters"
128
129 msgid "download git web view"
130 msgstr "Git Web View"
131
132 msgid "download github mirror"
133 msgstr "Github Mirror"
134
135 # support
136
137 msgid "support header"
138 msgstr "Support"
139
140 msgid "support irc header"
141 msgstr "IRC Channels"
142
143 msgid "support irc body"
144 msgstr "The quickest way to get Moose support is to engage the community on IRC."
145
146 msgid "support mailing list header"
147 msgstr "Mailing List"
148
149 msgid "support mailing list body"
150 msgstr "The Moose mailing lists can be an excellent way to get your questions answered."
151
152 msgid "support misc header"
153 msgstr "Misc."
154
155 msgid "support misc body"
156 msgstr "Here are a couple other items which are useful that you might like."
157
158 msgid "support moose mailing list"
159 msgstr "Moose mailing list"
160
161 msgid "support moose mailing list archives"
162 msgstr "Moose mailing list archives"
163
164 msgid "support textmate bundle"
165 msgstr "Moose TextMate Bundle"
166
167 msgid "support quickref card"
168 msgstr "Moose QuickRef Card"
169
170 msgid "support training header"
171 msgstr "Moose Training"
172
173 msgid "support training body"
174 msgstr "Several companies and individuals provide Moose training, here are a few."
175
176 msgid "support consulting header"
177 msgstr "Moose Consulting"
178
179 msgid "support consulting body"
180 msgstr "Several companies and individuals provide Moose consulting, here are a few."
181
182 # articles
183
184 msgid "articles header"
185 msgstr "Articles About Moose"
186
187 msgid "articles body"
188 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."
189
190 # presentations
191
192 msgid "presentations header"
193 msgstr "Presentations About Moose"
194
195 msgid "presentations body"
196 msgstr "Below are links to presentations given about Moose at conferences and local Perl Mongers group meetings."
197
198 # footer
199
200 msgid "footer copyright"
201 msgstr "Copyright &copy; 2006&mdash;2010 Infinity Interactive"
202
203 msgid "footer terms"
204 msgstr "This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself."
205
206
207