forked from jimmo78/blendswap-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.pot
executable file
·4306 lines (3375 loc) · 93.9 KB
/
default.pot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# LANGUAGE translation of CakePHP Application
# Copyright YEAR NAME <EMAIL@ADDRESS>
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"POT-Creation-Date: 2015-02-24 19:14-0600\n"
"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
"Last-Translator: NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: Controller/AchievementsController.php:21
#: View/Users/view.ctp:133
msgid "Achievements"
msgstr ""
#: Controller/AppController.php:1013
msgid "Search stuff..."
msgstr ""
#: Controller/BadgesController.php:93;124;150
msgid "Invalid badge"
msgstr ""
#: Controller/BadgesController.php:107;128
msgid "The badge has been saved"
msgstr ""
#: Controller/BadgesController.php:110;131
msgid "The badge could not be saved. Please, try again."
msgstr ""
#: Controller/BadgesController.php:153
msgid "Badge deleted"
msgstr ""
#: Controller/BadgesController.php:156
msgid "Badge was not deleted"
msgstr ""
#: Controller/BlendsController.php:250;501;532
msgid "Invalid blend"
msgstr ""
#: Controller/BlendsController.php:262
msgid "This blend is not published..."
msgstr ""
#: Controller/BlendsController.php:302
msgid "The requested blend does not exist."
msgstr ""
#: Controller/BlendsController.php:357
msgid "Error while processing your"
msgstr ""
#: Controller/BlendsController.php:367
msgid "Deletion complete"
msgstr ""
#: Controller/BlendsController.php:413
#: View/Elements/navs/usernav.ctp:82
msgid "Advanced Stats"
msgstr ""
#: Controller/BlendsController.php:433
#: View/Elements/blendswap-top-menu.ctp:89
msgid "Staff Picks"
msgstr ""
#: Controller/BlendsController.php:505
msgid "The blend has been saved"
msgstr ""
#: Controller/BlendsController.php:510
msgid "The blend could not be saved. Please, try again."
msgstr ""
#: Controller/BlendsController.php:535
msgid "Blend deleted"
msgstr ""
#: Controller/BlendsController.php:539
msgid "Blend was not deleted"
msgstr ""
#: Controller/BlendsController.php:559
msgid "The blend was resubmitted for review to the admins. "
msgstr ""
#: Controller/BlendsController.php:560
msgid "Please allow some time for moderation."
msgstr ""
#: Controller/BlendsController.php:564
msgid "There was an error while resubmitting yourblend to the admins. "
msgstr ""
#: Controller/BlendsController.php:565
msgid "Please try again, and report if you see this message a second time."
msgstr ""
#: Controller/CollectionsController.php:160
#: View/Elements/navs/usernav.ctp:68
msgid "My Collections"
msgstr ""
#: Controller/CollectionsController.php:250
msgid "Some of the items in this collection were removed because the blends they referenced do not exist any more on Blend Swap"
msgstr ""
#: Controller/CollectionsController.php:294
msgid "Collection updated"
msgstr ""
#: Controller/CollectionsController.php:300
msgid "The collection was not updated, please try again."
msgstr ""
#: Controller/CommentsController.php:134
msgid "The comment did not validate."
msgstr ""
#: Controller/CommentsController.php:250
msgid "The comment was deleted successfully."
msgstr ""
#: Controller/ContactsController.php:68
msgid "The contact entry was saved to our database. Thanks for getting in touch!"
msgstr ""
#: Controller/ContactsController.php:70
msgid "The submission could not be saved correctly please correct any errors and try again."
msgstr ""
#: Controller/ContactsController.php:129;152;178
msgid "Invalid contact"
msgstr ""
#: Controller/ContactsController.php:156
msgid "The contact has been saved"
msgstr ""
#: Controller/ContactsController.php:159
msgid "The contact could not be saved. Please, try again."
msgstr ""
#: Controller/ContactsController.php:181
msgid "Contact deleted"
msgstr ""
#: Controller/ContactsController.php:184
msgid "Contact was not deleted"
msgstr ""
#: Controller/DownloadsController.php:46
#: View/Users/bandwidth.ctp:15
msgid "Complete downloads history"
msgstr ""
#: Controller/DownloadsController.php:147
msgid "Invalid download"
msgstr ""
#: Controller/EventsController.php:63
#: View/App/dashboard.ctp:1
#: View/Elements/blendswap-top-menu.ctp:23
#: View/Pages/welcome.ctp:129
msgid "Dashboard"
msgstr ""
#: Controller/EventsController.php:77
#: View/App/homepage.ctp:2
msgid "Welcome to Blend Swap!"
msgstr ""
#: Controller/FeaturesController.php:38;70;98
msgid "Invalid feature"
msgstr ""
#: Controller/FeaturesController.php:52;74
msgid "The feature has been saved"
msgstr ""
#: Controller/FeaturesController.php:55;77
msgid "The feature could not be saved. Please, try again."
msgstr ""
#: Controller/FeaturesController.php:101
msgid "Feature deleted"
msgstr ""
#: Controller/FeaturesController.php:104
msgid "Feature was not deleted"
msgstr ""
#: Controller/LimitsController.php:71
msgid "Current limit"
msgstr ""
#: Controller/LimitsController.php:95;126;152
msgid "Invalid limit"
msgstr ""
#: Controller/LimitsController.php:109;130
msgid "The limit has been saved"
msgstr ""
#: Controller/LimitsController.php:112;133
msgid "The limit could not be saved. Please, try again."
msgstr ""
#: Controller/LimitsController.php:155
msgid "Limit deleted"
msgstr ""
#: Controller/LimitsController.php:158
msgid "Limit was not deleted"
msgstr ""
#: Controller/LimitsController.php:200
msgid "Your bandwidth was recalculated"
msgstr ""
#: Controller/LimitsController.php:200
msgid "No changes were made to your bandwidth limit."
msgstr ""
#: Controller/LimitsController.php:201
msgid "You made %d downloads that can be counted on that month, totaling %d Megabytes. %s"
msgstr ""
#: Controller/MembershipsController.php:55
msgid "There is no plan available for the data passed, please report this error to the admins right away"
msgstr ""
#: Controller/MembershipsController.php:64
msgid "The free plan doesn't need a membership"
msgstr ""
#: Controller/MembershipsController.php:81
#: Controller/UsersController.php:341
msgid "There was an error when we were forming the PaylPal URl we had to redirect you to. Please report this error to the admins right away!"
msgstr ""
#: Controller/MembershipsController.php:89
msgid "The membership did not validate, please try again and report to the admins if you see this error again"
msgstr ""
#: Controller/MembershipsController.php:146
#: View/Elements/blendswap-top-menu.ctp:314;438
#: View/Elements/navs/usernav.ctp:118
#: View/Users/view.ctp:24;158
msgid "Manage Membership"
msgstr ""
#: Controller/MembershipsController.php:178;224;252
msgid "Invalid membership"
msgstr ""
#: Controller/MembershipsController.php:203;228
msgid "The membership has been saved"
msgstr ""
#: Controller/MembershipsController.php:206;231
msgid "The membership could not be saved. Please, try again."
msgstr ""
#: Controller/MembershipsController.php:255
msgid "Membership deleted"
msgstr ""
#: Controller/MembershipsController.php:258
msgid "Membership was not deleted"
msgstr ""
#: Controller/NewsController.php:104;154;206
msgid "Invalid news"
msgstr ""
#: Controller/NewsController.php:117
msgid "News Blog"
msgstr ""
#: Controller/NewsController.php:137
msgid "The news has been saved"
msgstr ""
#: Controller/NewsController.php:140;183
msgid "The news could not be saved. Please, try again."
msgstr ""
#: Controller/NewsController.php:209
msgid "News deleted"
msgstr ""
#: Controller/NewsController.php:212
msgid "News was not deleted"
msgstr ""
#: Controller/OptionsController.php:70;105;131
msgid "Invalid option"
msgstr ""
#: Controller/OptionsController.php:88;109
msgid "The option has been saved"
msgstr ""
#: Controller/OptionsController.php:91
msgid "The option could not be saved. Please, try again."
msgstr ""
#: Controller/OptionsController.php:112
msgid "Error!The option could not be saved. Please, try again."
msgstr ""
#: Controller/OptionsController.php:134
msgid "Option deleted"
msgstr ""
#: Controller/OptionsController.php:137
msgid "Error!The option was not deleted"
msgstr ""
#: Controller/PagesController.php:127;133;138;173;200
msgid "Invalid page"
msgstr ""
#: Controller/PagesController.php:155
msgid "The page has been saved"
msgstr ""
#: Controller/PagesController.php:158;180
msgid "The page could not be saved. Please, try again."
msgstr ""
#: Controller/PagesController.php:203
msgid "Page deleted"
msgstr ""
#: Controller/PagesController.php:206
msgid "Page was not deleted"
msgstr ""
#: Controller/PaymentsController.php:56;310
msgid "Invalid payment"
msgstr ""
#: Controller/PaymentsController.php:313
msgid "Payment deleted"
msgstr ""
#: Controller/PaymentsController.php:316
msgid "Payment was not deleted"
msgstr ""
#: Controller/PlansController.php:62;93;119
msgid "Invalid plan"
msgstr ""
#: Controller/PlansController.php:76;97
msgid "The plan has been saved"
msgstr ""
#: Controller/PlansController.php:79;100
msgid "The plan could not be saved. Please, try again."
msgstr ""
#: Controller/PlansController.php:122
msgid "Plan deleted"
msgstr ""
#: Controller/PlansController.php:125
msgid "Plan was not deleted"
msgstr ""
#: Controller/ProfilesController.php:62;106;127
msgid "The profile has been saved"
msgstr ""
#: Controller/ProfilesController.php:64;109;130
msgid "The profile could not be saved. Please, try again."
msgstr ""
#: Controller/ProfilesController.php:92;123;149
msgid "Invalid profile"
msgstr ""
#: Controller/ProfilesController.php:152
msgid "Profile deleted"
msgstr ""
#: Controller/ProfilesController.php:155
msgid "Profile was not deleted"
msgstr ""
#: Controller/QuestionsController.php:32
#: View/Elements/blendswap-top-menu.ctp:239
#: View/Users/view.ctp:248
msgid "Questions"
msgstr ""
#: Controller/QuestionsController.php:93
msgid "Sorry, this tag name clashed with another tag on another type."
msgstr ""
#: Controller/QuestionsController.php:130;217;275;307;332
msgid "Invalid question"
msgstr ""
#: Controller/QuestionsController.php:201;240;292;314
msgid "The question could not be saved. Please, try again."
msgstr ""
#: Controller/QuestionsController.php:233;289;311
msgid "The question has been saved"
msgstr ""
#: Controller/QuestionsController.php:335
msgid "Question deleted"
msgstr ""
#: Controller/QuestionsController.php:338
msgid "Question was not deleted"
msgstr ""
#: Controller/ReportsController.php:112;134;160
msgid "Invalid report"
msgstr ""
#: Controller/ReportsController.php:138
msgid "The report has been saved"
msgstr ""
#: Controller/ReportsController.php:141
msgid "The report could not be saved. Please, try again."
msgstr ""
#: Controller/ReportsController.php:163
msgid "Report deleted"
msgstr ""
#: Controller/ReportsController.php:166
msgid "Report was not deleted"
msgstr ""
#: Controller/RequestsController.php:132;266;334;429;589;623;663
msgid "Invalid request"
msgstr ""
#: Controller/RequestsController.php:195
msgid "Request data saved to the database"
msgstr ""
#: Controller/RequestsController.php:220
msgid "One or both files failed to upload. Please take some time to repair your entry"
msgstr ""
#: Controller/RequestsController.php:238
msgid "The request has been saved. But one or more files failed to upload. Please take some time to fix this."
msgstr ""
#: Controller/RequestsController.php:242;282;606;630
msgid "The request could not be saved. Please, try again."
msgstr ""
#: Controller/RequestsController.php:279;603;627
msgid "The request has been saved"
msgstr ""
#: Controller/RequestsController.php:316;320
msgid "The request was not deleted"
msgstr ""
#: Controller/RequestsController.php:666
msgid "Request deleted"
msgstr ""
#: Controller/RequestsController.php:669
msgid "Request was not deleted"
msgstr ""
#: Controller/ResponsesController.php:94;129;160
msgid "Invalid response"
msgstr ""
#: Controller/ResponsesController.php:108;133
msgid "The response has been saved"
msgstr ""
#: Controller/ResponsesController.php:111;136
msgid "The response could not be saved. Please, try again."
msgstr ""
#: Controller/ResponsesController.php:163
msgid "Response deleted"
msgstr ""
#: Controller/ResponsesController.php:166
msgid "Response was not deleted"
msgstr ""
#: Controller/SubsController.php:68
msgid "Request received but not dispatched"
msgstr ""
#: Controller/SubsController.php:86
msgid "There was an error while processing your request, please report you saw this message."
msgstr ""
#: Controller/SubsController.php:110
msgid "There was an error when saving your subscription, please report you saw this message."
msgstr ""
#: Controller/SubsController.php:116
msgid "There was an error when processing your request, please try again. and report if this happens again"
msgstr ""
#: Controller/TermrelsController.php:30
msgid "Term removed"
msgstr ""
#: Controller/TermrelsController.php:34
#: View/Reports/index.ctp:47
msgid ""
msgstr ""
#: Controller/TermsController.php:64
#: View/Blends/_edit.ctp:37
#: View/Elements/blendswap-top-menu.ctp:94
#: View/Elements/navs/taxonomies.ctp:5
msgid "Categories"
msgstr ""
#: Controller/TermsController.php:179
msgid "Questions tagged: %s"
msgstr ""
#: Controller/UsersController.php:213
msgid "The account was saved correctly."
msgstr ""
#: Controller/UsersController.php:216
msgid "Some of the data you provided did not validate, please correct any errors below and try again."
msgstr ""
#: Controller/UsersController.php:245
msgid "Register your account"
msgstr ""
#: Controller/UsersController.php:256
msgid "The reCaptcha is invalid, please try again."
msgstr ""
#: Controller/UsersController.php:261
msgid "The passwords you entered do not match, please try again."
msgstr ""
#: Controller/UsersController.php:266
msgid "The data you entered does not validate, please review any red messages below and try again."
msgstr ""
#: Controller/UsersController.php:288
msgid "Your account has been created, look in your email inbox for the account verification link we sent you and visit it before 24 hours have passed before being able to log in."
msgstr ""
#: Controller/UsersController.php:387
msgid "Recaptcha challenge was invalid, please try again."
msgstr ""
#: Controller/UsersController.php:391
msgid "Please fill the ReCAPTCHA field."
msgstr ""
#: Controller/UsersController.php:431
msgid "Captcha was incorrect please try again."
msgstr ""
#: Controller/UsersController.php:581
msgid "Something went wrong, please report you saw this error when validating your account"
msgstr ""
#: Controller/UsersController.php:597
msgid "Looks like you're trying to log in with your email, please use your username!"
msgstr ""
#: Controller/UsersController.php:663
msgid "You are now logged off Blend Swap, see you soon!"
msgstr ""
#: Controller/UsersController.php:695;727;762
msgid "Invalid user"
msgstr ""
#: Controller/UsersController.php:710;735
msgid "The user has been saved"
msgstr ""
#: Controller/UsersController.php:713;738
msgid "The user could not be saved. Please, try again."
msgstr ""
#: Controller/UsersController.php:765
msgid "User deleted"
msgstr ""
#: Controller/UsersController.php:768
msgid "User was not deleted"
msgstr ""
#: Controller/UsersController.php:971
msgid "Reset your password"
msgstr ""
#: View/Achievements/index.ctp:37
#: View/Answers/admin_index.ctp:37
#: View/App/admin_code.ctp:31
#: View/Blends/index.ctp:10
#: View/Blends/search.ctp:28
#: View/Blends/user.ctp:25
#: View/Collections/index.ctp:46
#: View/Collections/likes.ctp:19
#: View/Collections/user.ctp:47
#: View/Collections/view.ctp:37
#: View/Downloads/user.ctp:32
#: View/Elements/bars/admin_pagination.ctp:4
#: View/Features/admin_index.ctp:35
#: View/Follows/user.ctp:15
#: View/Items/admin_index.ctp:40
#: View/Options/admin_index.ctp:30
#: View/Options/admin_manage.ctp:30
#: View/Profiles/admin_index.ctp:56
#: View/Questions/index.ctp:50
#: View/Questions/user.ctp:62
#: View/Reports/admin_index.ctp:62
#: View/Requests/index.ctp:49
#: View/Requests/user.ctp:62
#: View/Terms/category.ctp:10
#: View/Terms/index.ctp:27
#: View/Terms/tag.ctp:10
#: View/Terms/tagged.ctp:43
#: View/Users/featured.ctp:51
#: View/Users/forhire.ctp:72
msgid "Page {:page} of {:pages}, showing {:current} out of {:count} total."
msgstr ""
#: View/Achievements/index.ctp:41
#: View/Blends/index.ctp:13
#: View/Blends/search.ctp:32
#: View/Collections/index.ctp:49
#: View/Collections/likes.ctp:24
#: View/Collections/user.ctp:53
#: View/Collections/view.ctp:40
#: View/Downloads/user.ctp:35
#: View/Follows/user.ctp:20
#: View/Questions/index.ctp:53
#: View/Questions/user.ctp:65
#: View/Terms/category.ctp:13
#: View/Terms/tag.ctp:13
#: View/Terms/tagged.ctp:46
#: View/Users/bandwidth.ctp:111
#: View/Users/featured.ctp:56
#: View/Users/forhire.ctp:75
msgid "First Page"
msgstr ""
#: View/Achievements/index.ctp:42
#: View/Answers/admin_index.ctp:40
#: View/App/admin_code.ctp:34
#: View/Blends/index.ctp:14
#: View/Blends/search.ctp:33
#: View/Blends/user.ctp:29
#: View/Collections/index.ctp:50
#: View/Collections/likes.ctp:25
#: View/Collections/user.ctp:54
#: View/Collections/view.ctp:41
#: View/Conversations/inbox.ctp:46
#: View/Downloads/user.ctp:36
#: View/Elements/bars/admin_pagination.ctp:7
#: View/Features/admin_index.ctp:38
#: View/Follows/user.ctp:21
#: View/Items/admin_index.ctp:43
#: View/News/index.ctp:34
#: View/Options/admin_index.ctp:33
#: View/Options/admin_manage.ctp:33
#: View/Profiles/admin_index.ctp:59
#: View/Questions/index.ctp:54
#: View/Questions/user.ctp:66
#: View/Reports/admin_index.ctp:65
#: View/Requests/index.ctp:52
#: View/Requests/user.ctp:65
#: View/Terms/category.ctp:14
#: View/Terms/index.ctp:32
#: View/Terms/tag.ctp:14
#: View/Terms/tagged.ctp:47
#: View/Users/bandwidth.ctp:112
#: View/Users/featured.ctp:57
#: View/Users/forhire.ctp:76
msgid "previous"
msgstr ""
#: View/Achievements/index.ctp:44
#: View/Answers/admin_index.ctp:42
#: View/App/admin_code.ctp:36
#: View/Blends/index.ctp:16
#: View/Blends/search.ctp:35
#: View/Blends/user.ctp:31
#: View/Collections/index.ctp:52
#: View/Collections/likes.ctp:27
#: View/Collections/user.ctp:56
#: View/Collections/view.ctp:43
#: View/Conversations/inbox.ctp:47
#: View/Downloads/user.ctp:38
#: View/Elements/bars/admin_pagination.ctp:9
#: View/Features/admin_index.ctp:40
#: View/Follows/user.ctp:23
#: View/Items/admin_index.ctp:45
#: View/News/index.ctp:36
#: View/Options/admin_index.ctp:35
#: View/Options/admin_manage.ctp:35
#: View/Profiles/admin_index.ctp:61
#: View/Questions/index.ctp:56
#: View/Questions/user.ctp:68
#: View/Reports/admin_index.ctp:67
#: View/Requests/index.ctp:54
#: View/Requests/user.ctp:67
#: View/Terms/category.ctp:16
#: View/Terms/index.ctp:34
#: View/Terms/tag.ctp:16
#: View/Terms/tagged.ctp:49
#: View/Users/bandwidth.ctp:114
#: View/Users/featured.ctp:59
#: View/Users/forhire.ctp:78
msgid "next"
msgstr ""
#: View/Achievements/index.ctp:45
#: View/Blends/index.ctp:17
#: View/Blends/search.ctp:36
#: View/Collections/index.ctp:53
#: View/Collections/likes.ctp:28
#: View/Collections/user.ctp:57
#: View/Collections/view.ctp:44
#: View/Downloads/user.ctp:39
#: View/Follows/user.ctp:24
#: View/Questions/index.ctp:57
#: View/Questions/user.ctp:69
#: View/Terms/category.ctp:17
#: View/Terms/tag.ctp:17
#: View/Terms/tagged.ctp:50
#: View/Users/bandwidth.ctp:115
#: View/Users/featured.ctp:60
#: View/Users/forhire.ctp:79
msgid "Last Page"
msgstr ""
#: View/Answers/admin_add.ctp:4
msgid "Admin Add Response"
msgstr ""
#: View/Answers/admin_add.ctp:9
#: View/Answers/admin_edit.ctp:10
#: View/Blends/admin_add.ctp:25
#: View/Comments/admin_edit.ctp:12
#: View/Contacts/add.ctp:70
#: View/Conversations/add.ctp:10
#: View/Conversations/edit.ctp:11
#: View/Events/admin_add.ctp:16
#: View/Events/admin_edit.ctp:15
#: View/Features/admin_add.ctp:10
#: View/Features/admin_edit.ctp:11
#: View/Items/admin_add.ctp:11
#: View/Items/admin_edit.ctp:12
#: View/Limits/admin_add.ctp:11
#: View/Limits/admin_edit.ctp:12
#: View/Memberships/admin_add.ctp:13
#: View/Memberships/admin_edit.ctp:14
#: View/Messages/add.ctp:11
#: View/Messages/edit.ctp:12
#: View/Options/admin_add.ctp:12
#: View/Options/admin_edit.ctp:26
#: View/Pages/admin_add.ctp:12
#: View/Profiles/admin_add.ctp:21
#: View/Profiles/admin_edit.ctp:22
#: View/Profiles/edit.ctp:84
#: View/Questions/add.ctp:78
#: View/Questions/admin_add.ctp:10
#: View/Questions/admin_edit.ctp:10
#: View/Reports/__add.ctp:10
#: View/Reports/admin_edit.ctp:11
#: View/Requests/add.ctp:142
#: View/Requests/admin_add.ctp:11
#: View/Requests/admin_edit.ctp:20
#: View/Requests/edit.ctp:34
#: View/Terms/add.ctp:10
#: View/Terms/admin_add.ctp:11
#: View/Terms/admin_edit.ctp:12
#: View/Terms/edit.ctp:11
#: View/Users/account.ctp:18
#: View/Users/admin_add.ctp:24
#: View/Users/admin_edit.ctp:26
msgid "Submit"
msgstr ""
#: View/Answers/admin_add.ctp:12
#: View/Answers/admin_edit.ctp:13
#: View/Answers/admin_index.ctp:11
#: View/Answers/admin_view.ctp:37
#: View/Blends/admin_add.ctp:28
#: View/Blends/media.ctp:25;89
#: View/Comments/admin_edit.ctp:15
#: View/Comments/admin_view.ctp:82
#: View/Conversations/add.ctp:13
#: View/Conversations/edit.ctp:14
#: View/Events/admin_add.ctp:19
#: View/Events/admin_edit.ctp:18
#: View/Events/admin_view.ctp:72
#: View/Features/admin_add.ctp:13
#: View/Features/admin_edit.ctp:14
#: View/Features/admin_index.ctp:10
#: View/Features/admin_view.ctp:32
#: View/Items/admin_add.ctp:14
#: View/Items/admin_edit.ctp:15
#: View/Items/admin_index.ctp:12
#: View/Items/admin_view.ctp:42
#: View/Limits/admin_add.ctp:14
#: View/Limits/admin_edit.ctp:15
#: View/Limits/admin_view.ctp:42
#: View/Memberships/admin_add.ctp:16
#: View/Memberships/admin_edit.ctp:17
#: View/Memberships/admin_view.ctp:47
#: View/Messages/add.ctp:14
#: View/Messages/edit.ctp:15
#: View/Options/admin_add.ctp:15
#: View/Options/admin_edit.ctp:29
#: View/Options/admin_manage.ctp:9
#: View/Options/admin_view.ctp:27
#: View/Pages/admin_add.ctp:15
#: View/Profiles/admin_add.ctp:24
#: View/Profiles/admin_edit.ctp:25
#: View/Profiles/admin_index.ctp:22
#: View/Profiles/admin_view.ctp:92
#: View/Questions/admin_add.ctp:13
#: View/Questions/admin_edit.ctp:13
#: View/Questions/admin_view.ctp:37
#: View/Reports/__add.ctp:13
#: View/Reports/admin_edit.ctp:14
#: View/Reports/admin_index.ctp:34
#: View/Reports/admin_view.ctp:104
#: View/Reports/view.ctp:37
#: View/Requests/admin_add.ctp:14
#: View/Requests/admin_view.ctp:42;65
#: View/Requests/media.ctp:20
#: View/Terms/_view.ctp:27
#: View/Terms/add.ctp:13
#: View/Terms/admin_add.ctp:14
#: View/Terms/admin_edit.ctp:15
#: View/Terms/admin_view.ctp:27
#: View/Terms/edit.ctp:14
#: View/Terms/index.ctp:9;39
#: View/Users/account.ctp:21
#: View/Users/admin_view.ctp:228
#: View/Users/portfolio.ctp:43
msgid "Actions"
msgstr ""
#: View/Answers/admin_edit.ctp:4
msgid "Admin Edit Response"
msgstr ""
#: View/Answers/admin_edit.ctp:16
#: View/Answers/admin_index.ctp:28
#: View/Blends/media.ctp:51;55;104;108
#: View/Blends/view.ctp:103
#: View/Comments/admin_edit.ctp:18
#: View/Conversations/edit.ctp:17
#: View/Elements/commentList.ctp:89
#: View/Events/admin_edit.ctp:21
#: View/Features/admin_edit.ctp:17
#: View/Features/admin_index.ctp:25
#: View/Items/admin_edit.ctp:18
#: View/Items/admin_index.ctp:30
#: View/Limits/admin_edit.ctp:18
#: View/Memberships/admin_edit.ctp:20
#: View/Messages/conversation.ctp:23
#: View/Messages/edit.ctp:18
#: View/Options/admin_edit.ctp:32
#: View/Options/admin_index.ctp:18
#: View/Options/admin_manage.ctp:20
#: View/Profiles/admin_edit.ctp:28
#: View/Profiles/admin_index.ctp:46
#: View/Questions/admin_edit.ctp:16
#: View/Questions/edit.ctp:21
#: View/Reports/admin_edit.ctp:17
#: View/Reports/admin_index.ctp:52
#: View/Requests/admin_edit.ctp:5
#: View/Requests/admin_view.ctp:79
#: View/Requests/media.ctp:35;39
#: View/Terms/admin_edit.ctp:18
#: View/Terms/edit.ctp:17
#: View/Terms/index.ctp:20
#: View/Users/account.ctp:24
#: View/Users/portfolio.ctp:58
msgid "Delete"
msgstr ""
#: View/Answers/admin_edit.ctp:16
#: View/Answers/admin_index.ctp:28
#: View/Answers/admin_view.ctp:40
#: View/Comments/admin_edit.ctp:18
#: View/Comments/admin_view.ctp:85
#: View/Conversations/edit.ctp:17
#: View/Events/admin_edit.ctp:21
#: View/Events/admin_view.ctp:75
#: View/Features/admin_edit.ctp:17
#: View/Features/admin_index.ctp:25
#: View/Features/admin_view.ctp:35
#: View/Items/admin_edit.ctp:18
#: View/Items/admin_index.ctp:30
#: View/Items/admin_view.ctp:45
#: View/Limits/admin_edit.ctp:18
#: View/Limits/admin_view.ctp:45
#: View/Memberships/admin_edit.ctp:20
#: View/Memberships/admin_view.ctp:50
#: View/Messages/edit.ctp:18
#: View/Options/admin_edit.ctp:32
#: View/Options/admin_index.ctp:18
#: View/Options/admin_manage.ctp:20
#: View/Options/admin_view.ctp:30
#: View/Profiles/admin_edit.ctp:28
#: View/Profiles/admin_index.ctp:46
#: View/Profiles/admin_view.ctp:95
#: View/Questions/admin_edit.ctp:16
#: View/Questions/admin_view.ctp:40
#: View/Reports/admin_edit.ctp:17
#: View/Reports/admin_index.ctp:52
#: View/Reports/admin_view.ctp:107
#: View/Reports/view.ctp:40
#: View/Requests/admin_edit.ctp:5
#: View/Requests/admin_view.ctp:45;79
#: View/Terms/_view.ctp:30
#: View/Terms/admin_edit.ctp:18
#: View/Terms/admin_view.ctp:30
#: View/Terms/edit.ctp:17
#: View/Terms/index.ctp:20
#: View/Users/account.ctp:24
#: View/Users/admin_view.ctp:231
msgid "Are you sure you want to delete # %s?"
msgstr ""
#: View/Answers/admin_index.ctp:2
#: View/Requests/view.ctp:139
msgid "Responses"
msgstr ""
#: View/Answers/admin_index.ctp:26
#: View/Features/admin_index.ctp:23
#: View/Items/admin_index.ctp:28
#: View/Options/admin_index.ctp:16
#: View/Options/admin_manage.ctp:18
#: View/Profiles/admin_index.ctp:44
#: View/Reports/admin_index.ctp:50
#: View/Requests/admin_view.ctp:77
#: View/Terms/index.ctp:18
msgid "View"
msgstr ""
#: View/Answers/admin_index.ctp:27
#: View/Blends/view.ctp:97
#: View/Features/admin_index.ctp:24
#: View/Items/admin_index.ctp:29
#: View/Options/admin_index.ctp:17
#: View/Options/admin_manage.ctp:19
#: View/Profiles/admin_index.ctp:45
#: View/Questions/view.ctp:60
#: View/Reports/admin_index.ctp:51
#: View/Requests/admin_view.ctp:78
#: View/Terms/index.ctp:19
msgid "Edit"
msgstr ""
#: View/Answers/admin_view.ctp:2
msgid "Response"
msgstr ""
#: View/Answers/admin_view.ctp:4
#: View/Comments/admin_view.ctp:4
#: View/Events/admin_view.ctp:4
#: View/Features/admin_view.ctp:4
#: View/Items/admin_view.ctp:4
#: View/Limits/admin_view.ctp:4
#: View/Memberships/admin_view.ctp:4
#: View/Options/admin_view.ctp:4
#: View/Profiles/admin_view.ctp:4
#: View/Questions/admin_view.ctp:4