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