forked from jimmo78/blendswap-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.pot
More file actions
executable file
·3954 lines (3126 loc) · 86.2 KB
/
Copy pathdefault.pot
File metadata and controls
executable file
·3954 lines (3126 loc) · 86.2 KB
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: 2013-12-04 19:50-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/AtomsController.php:32;76;102
msgid "Invalid atom"
msgstr ""
#: Controller/AtomsController.php:59;80
msgid "The atom has been saved"
msgstr ""
#: Controller/AtomsController.php:61;83
msgid "The atom could not be saved. Please, try again."
msgstr ""
#: Controller/AtomsController.php:105
msgid "Atom deleted"
msgstr ""
#: Controller/AtomsController.php:108
msgid "Atom was not deleted"
msgstr ""
#: Controller/BadgesController.php:38;80;111;137
msgid "Invalid badge"
msgstr ""
#: Controller/BadgesController.php:94;115
msgid "The badge has been saved"
msgstr ""
#: Controller/BadgesController.php:97;118
msgid "The badge could not be saved. Please, try again."
msgstr ""
#: Controller/BadgesController.php:140
msgid "Badge deleted"
msgstr ""
#: Controller/BadgesController.php:143
msgid "Badge was not deleted"
msgstr ""
#: Controller/BlendsController.php:131
#: View/Elements/placeholder.ctp:32
#: View/Elements/menus/topMenu.ctp:101
msgid "Staff Picks"
msgstr ""
#: Controller/BlendsController.php:209;219;979;1003;1032
msgid "Invalid blend"
msgstr ""
#: Controller/BlendsController.php:375
msgid "We are preparing to update the site's back end software, so we have disabled uploads for now. Sorry for the inconvenience."
msgstr ""
#: Controller/BlendsController.php:428
msgid "The blend was not saved, please review any omissions below and try again. And do not forget to re-select your files"
msgstr ""
#: Controller/BlendsController.php:471
msgid "The requested blend does not exist."
msgstr ""
#: Controller/BlendsController.php:490
msgid "The new blend data was saved successfully"
msgstr ""
#: Controller/BlendsController.php:492
msgid "The blend was saved, but its categories and tags failed to save"
msgstr ""
#: Controller/BlendsController.php:495
msgid "The blend was not saved, please try again."
msgstr ""
#: Controller/BlendsController.php:1007
msgid "The blend has been saved"
msgstr ""
#: Controller/BlendsController.php:1011
msgid "The blend could not be saved. Please, try again."
msgstr ""
#: Controller/BlendsController.php:1035
msgid "Blend deleted"
msgstr ""
#: Controller/BlendsController.php:1038
msgid "Blend was not deleted"
msgstr ""
#: Controller/BlendsController.php:1058
msgid "The blend was removed from all lists. We will preserve copy of all the data for archival purposes."
msgstr ""
#: Controller/BlendsController.php:1061
msgid "There was an error while removing the blend from all listings, please try again and report if this error repeats."
msgstr ""
#: Controller/BlendsController.php:1064
msgid "This blend is published! Only an admin can take it down, please get in touch with the site admins to let them know why you want this blend taken down."
msgstr ""
#: Controller/ChatsController.php:56;185;214
msgid "Invalid chat"
msgstr ""
#: Controller/ChatsController.php:189
msgid "The chat has been saved"
msgstr ""
#: Controller/ChatsController.php:192
msgid "The chat could not be saved. Please, try again."
msgstr ""
#: Controller/ChatsController.php:219
msgid "Chat deleted"
msgstr ""
#: Controller/ChatsController.php:222
msgid "Chat was not deleted"
msgstr ""
#: Controller/CollectionsController.php:80
msgid "Latest Blend Collections"
msgstr ""
#: Controller/CollectionsController.php:137;235;292
msgid "Invalid collection"
msgstr ""
#: Controller/CollectionsController.php:150
msgid "Some items were removed from this collection because they are not available on Blend Swap anymore..."
msgstr ""
#: Controller/CollectionsController.php:183
msgid "The collection was saved"
msgstr ""
#: Controller/CollectionsController.php:188;268
msgid "The Collection could not be saved. Please, try again."
msgstr ""
#: Controller/CollectionsController.php:213
msgid "Sorry, you have to be an associate member to be able to create a new collection."
msgstr ""
#: Controller/CollectionsController.php:266
msgid "The Collection was saved"
msgstr ""
#: Controller/CollectionsController.php:297
msgid "Collection deleted"
msgstr ""
#: Controller/CollectionsController.php:299
msgid "Collection was not deleted"
msgstr ""
#: Controller/CollectionsController.php:357
msgid "Error while starting the request"
msgstr ""
#: Controller/CollectionsController.php:408
msgid "Click to like this blend"
msgstr ""
#: Controller/CollectionsController.php:410
#: View/Elements/bars/blend_actions.ctp:6
msgid "Like"
msgstr ""
#: Controller/CollectionsController.php:413
msgid "Something went wrong while processing your request. Please try again and report if this happens again."
msgstr ""
#: Controller/CollectionsController.php:468
msgid "You have not created any collections yet, create one now! :)"
msgstr ""
#: Controller/CollectionsController.php:475
msgid "Manage collections"
msgstr ""
#: Controller/CollectionsController.php:477
msgid "Create"
msgstr ""
#: Controller/CollectionsController.php:479
msgid "Publicly visible"
msgstr ""
#: Controller/CollectionsController.php:483
msgid "You have a %s, to create more Collections you'll have to become an "
msgstr ""
#: Controller/CollectionsController.php:483
#: View/App/home.ctp:61
#: View/Elements/placeholder.ctp:66
msgid "Free Account"
msgstr ""
#: Controller/CollectionsController.php:484
msgid "Associate Member"
msgstr ""
#: Controller/CollectionsController.php:512
msgid "Error while creating the collection"
msgstr ""
#: Controller/CollectionsController.php:515
msgid "Sorry, to create more collections you have to be an Associate Member."
msgstr ""
#: Controller/CollectionsController.php:558
msgid "Error saving the item. please report you saw this message."
msgstr ""
#: Controller/CollectionsController.php:563
msgid "Invalid blend id."
msgstr ""
#: Controller/CollectionsController.php:567
msgid "To create new collection you have to purchase a paid membership."
msgstr ""
#: Controller/CommentsController.php:51
msgid "Your comment contains known profanity, we will moderate it. Be careful how to talk to our users..."
msgstr ""
#: Controller/CommentsController.php:55
msgid "The comment was not saved to the database, something went wrong..."
msgstr ""
#: Controller/CommentsController.php:134;148;174;249
msgid "Invalid comment"
msgstr ""
#: Controller/CommentsController.php:154;215
msgid "The comment has been saved"
msgstr ""
#: Controller/CommentsController.php:157;218
msgid "The comment could not be saved. Please, try again."
msgstr ""
#: Controller/CommentsController.php:252
msgid "Comment deleted"
msgstr ""
#: Controller/CommentsController.php:255
msgid "Comment was not deleted"
msgstr ""
#: Controller/ContactsController.php:82
msgid "The contact entry was saved to our database. Thanks for getting in touch!"
msgstr ""
#: Controller/ContactsController.php:84
msgid "The submission could not be saved correctly please correct any errors and try again."
msgstr ""
#: Controller/ContactsController.php:142;165;191
msgid "Invalid contact"
msgstr ""
#: Controller/ContactsController.php:169
msgid "The contact has been saved"
msgstr ""
#: Controller/ContactsController.php:172
msgid "The contact could not be saved. Please, try again."
msgstr ""
#: Controller/ContactsController.php:194
msgid "Contact deleted"
msgstr ""
#: Controller/ContactsController.php:197
msgid "Contact was not deleted"
msgstr ""
#: Controller/DownloadsController.php:41
msgid "Invalid download"
msgstr ""
#: Controller/DownloadsController.php:94
msgid "Downloading"
msgstr ""
#: Controller/DownloadsController.php:96
msgid "This blend is licensed"
msgstr ""
#: Controller/DownloadsController.php:99
msgid "Do you agree with this license"
msgstr ""
#: Controller/DownloadsController.php:100
msgid "and the limitations imposed by the Fan Art marking"
msgstr ""
#: Controller/DownloadsController.php:105
msgid "I accept the license. Start file download, please"
msgstr ""
#: Controller/DownloadsController.php:106
msgid "Yes. Download now!"
msgstr ""
#: Controller/DownloadsController.php:108
msgid "Cancel download"
msgstr ""
#: Controller/DownloadsController.php:108
#: View/Blends/edit.ctp:106
msgid "Cancel"
msgstr ""
#: Controller/DownloadsController.php:256;257
msgid "Creative Commons Public Domain Mark 1.0"
msgstr ""
#: Controller/DownloadsController.php:258
msgid "which has no requirements:"
msgstr ""
#: Controller/DownloadsController.php:261;262
msgid "Creative Commons Attribution 3.0"
msgstr ""
#: Controller/DownloadsController.php:263;268;273;278
msgid "which has the following requirements:"
msgstr ""
#: Controller/DownloadsController.php:266;267
msgid "Creative Commons Attribution-ShareAlike 3.0"
msgstr ""
#: Controller/DownloadsController.php:271;272
msgid "Creative Commons Attribution-NonCommercial 3.0"
msgstr ""
#: Controller/DownloadsController.php:276;277
msgid "Creative Commons Attribution-NonCommercial-ShareAlike 3.0"
msgstr ""
#: Controller/DownloadsController.php:291
msgid "Blend Swap recommends you give credit to the blend author, but there is no obligation to do so"
msgstr ""
#: Controller/DownloadsController.php:294
#: View/Helper/SingleBlendHelper.php:149
msgid "You must give credit to the author of this blend"
msgstr ""
#: Controller/DownloadsController.php:297
#: View/Helper/SingleBlendHelper.php:152
msgid "You can not use this blend commercially under any circumstance"
msgstr ""
#: Controller/DownloadsController.php:300
#: View/Helper/SingleBlendHelper.php:155
msgid "You must distribute any derivative works under the same license"
msgstr ""
#: Controller/DownloadsController.php:305
msgid "What's the deal with all this \"giving credits\" thing?"
msgstr ""
#: Controller/FeaturesController.php:31;63;91
msgid "Invalid feature"
msgstr ""
#: Controller/FeaturesController.php:45;67
msgid "The feature has been saved"
msgstr ""
#: Controller/FeaturesController.php:48;70
msgid "The feature could not be saved. Please, try again."
msgstr ""
#: Controller/FeaturesController.php:94
msgid "Feature deleted"
msgstr ""
#: Controller/FeaturesController.php:97
msgid "Feature was not deleted"
msgstr ""
#: Controller/ItemsController.php:120;155;183
msgid "Invalid item"
msgstr ""
#: Controller/ItemsController.php:135;159
msgid "The item has been saved."
msgstr ""
#: Controller/ItemsController.php:138;162
msgid "The item could not be saved. Please, try again."
msgstr ""
#: Controller/ItemsController.php:187
msgid "The item has been deleted."
msgstr ""
#: Controller/ItemsController.php:189
msgid "The item could not be deleted. Please, try again."
msgstr ""
#: Controller/LimitsController.php:43;74;100
msgid "Invalid limit"
msgstr ""
#: Controller/LimitsController.php:57;78
msgid "The limit has been saved"
msgstr ""
#: Controller/LimitsController.php:60;81
msgid "The limit could not be saved. Please, try again."
msgstr ""
#: Controller/LimitsController.php:103
msgid "Limit deleted"
msgstr ""
#: Controller/LimitsController.php:106
msgid "Limit was not deleted"
msgstr ""
#: Controller/LimitsController.php:203
msgid "Your bandwidth was recalculated"
msgstr ""
#: Controller/LimitsController.php:203
msgid "No changes were made to your bandwidth limit."
msgstr ""
#: Controller/LimitsController.php:205
msgid "You made %d downloads that can be counted on that month, totaling %d Megabytes. %s"
msgstr ""
#: Controller/MembershipsController.php:66;112;140
msgid "Invalid membership"
msgstr ""
#: Controller/MembershipsController.php:91;116
msgid "The membership has been saved"
msgstr ""
#: Controller/MembershipsController.php:94;119
msgid "The membership could not be saved. Please, try again."
msgstr ""
#: Controller/MembershipsController.php:143
msgid "Membership deleted"
msgstr ""
#: Controller/MembershipsController.php:146
msgid "Membership was not deleted"
msgstr ""
#: Controller/MessagesController.php:45;258;287;312
msgid "Invalid message"
msgstr ""
#: Controller/MessagesController.php:209;265
msgid "The message could not be saved. Please, try again."
msgstr ""
#: Controller/MessagesController.php:262
msgid "The message has been saved"
msgstr ""
#: Controller/MessagesController.php:290;319
msgid "Message deleted"
msgstr ""
#: Controller/MessagesController.php:293;321
msgid "Message was not deleted"
msgstr ""
#: Controller/NewsController.php:93;172;231
msgid "Invalid news"
msgstr ""
#: Controller/NewsController.php:155
msgid "The news has been saved"
msgstr ""
#: Controller/NewsController.php:158;206
msgid "The news could not be saved. Please, try again."
msgstr ""
#: Controller/NewsController.php:234
msgid "News deleted"
msgstr ""
#: Controller/NewsController.php:237
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:120;126;131;175;213
msgid "Invalid page"
msgstr ""
#: Controller/PagesController.php:148
msgid "The page has been saved"
msgstr ""
#: Controller/PagesController.php:151;189
msgid "The page could not be saved. Please, try again."
msgstr ""
#: Controller/PagesController.php:216
msgid "Page deleted"
msgstr ""
#: Controller/PagesController.php:219
msgid "Page was not deleted"
msgstr ""
#: Controller/PaymentsController.php:60;321
msgid "Invalid payment"
msgstr ""
#: Controller/PaymentsController.php:324
msgid "Payment deleted"
msgstr ""
#: Controller/PaymentsController.php:327
msgid "Payment was not deleted"
msgstr ""
#: Controller/PlansController.php:34;65;91
msgid "Invalid plan"
msgstr ""
#: Controller/PlansController.php:48;69
msgid "The plan has been saved"
msgstr ""
#: Controller/PlansController.php:51;72
msgid "The plan could not be saved. Please, try again."
msgstr ""
#: Controller/PlansController.php:94
msgid "Plan deleted"
msgstr ""
#: Controller/PlansController.php:97
msgid "Plan was not deleted"
msgstr ""
#: Controller/ProfilesController.php:27;108;139;165
msgid "Invalid profile"
msgstr ""
#: Controller/ProfilesController.php:78;122;143
msgid "The profile has been saved"
msgstr ""
#: Controller/ProfilesController.php:80;125;146
msgid "The profile could not be saved. Please, try again."
msgstr ""
#: Controller/ProfilesController.php:168
msgid "Profile deleted"
msgstr ""
#: Controller/ProfilesController.php:171
msgid "Profile was not deleted"
msgstr ""
#: Controller/QuestionsController.php:82;173;248;280;308
msgid "Invalid question"
msgstr ""
#: Controller/QuestionsController.php:155;191;262;284
msgid "The question has been saved"
msgstr ""
#: Controller/QuestionsController.php:158;194;265;287
msgid "The question could not be saved. Please, try again."
msgstr ""
#: Controller/QuestionsController.php:311
msgid "Question deleted"
msgstr ""
#: Controller/QuestionsController.php:314
msgid "Question was not deleted"
msgstr ""
#: Controller/ReportsController.php:172;206;232
msgid "Invalid report"
msgstr ""
#: Controller/ReportsController.php:210
msgid "The report has been saved"
msgstr ""
#: Controller/ReportsController.php:213
msgid "The report could not be saved. Please, try again."
msgstr ""
#: Controller/ReportsController.php:235
msgid "Report deleted"
msgstr ""
#: Controller/ReportsController.php:238
msgid "Report was not deleted"
msgstr ""
#: Controller/RequestsController.php:74;208;258;314;547;581;622
msgid "Invalid request"
msgstr ""
#: Controller/RequestsController.php:180
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:184;228;564;589
msgid "The request could not be saved. Please, try again."
msgstr ""
#: Controller/RequestsController.php:225;561;586
msgid "The request has been saved"
msgstr ""
#: Controller/RequestsController.php:625
msgid "Request deleted"
msgstr ""
#: Controller/RequestsController.php:628
msgid "Request was not deleted"
msgstr ""
#: Controller/ResponsesController.php:35;70;101
msgid "Invalid response"
msgstr ""
#: Controller/ResponsesController.php:49;74
msgid "The response has been saved"
msgstr ""
#: Controller/ResponsesController.php:52;77
msgid "The response could not be saved. Please, try again."
msgstr ""
#: Controller/ResponsesController.php:104
msgid "Response deleted"
msgstr ""
#: Controller/ResponsesController.php:107
msgid "Response was not deleted"
msgstr ""
#: Controller/SubsController.php:41;72;98
msgid "Invalid sub"
msgstr ""
#: Controller/SubsController.php:55;76
msgid "The sub has been saved"
msgstr ""
#: Controller/SubsController.php:58;79
msgid "The sub could not be saved. Please, try again."
msgstr ""
#: Controller/SubsController.php:101
msgid "Sub deleted"
msgstr ""
#: Controller/SubsController.php:104
msgid "Sub was not deleted"
msgstr ""
#: Controller/SubsController.php:116
msgid "Subscription dispatch started, but not finished."
msgstr ""
#: Controller/SubsController.php:180
#: View/Elements/bars/news_actions.ctp:24
msgid "Unfollow"
msgstr ""
#: Controller/SubsController.php:185
msgid "You are now following %s"
msgstr ""
#: Controller/SubsController.php:192
msgid "You are again following %s"
msgstr ""
#: Controller/SubsController.php:198
msgid "You are already following %s"
msgstr ""
#: Controller/SubsController.php:205
#: View/Elements/bars/news_actions.ctp:31
msgid "Follow"
msgstr ""
#: Controller/SubsController.php:209
msgid "Hey! it doesn't seem you're following %s"
msgstr ""
#: Controller/SubsController.php:215
msgid "You are no longer following %s"
msgstr ""
#: Controller/SubsController.php:220
msgid "There was a problem processing your request, try again and report if the rror repeats."
msgstr ""
#: Controller/SubsController.php:227
msgid "You're not even following this entry, please let us know that you saw this message and we will try to fix this bug."
msgstr ""
#: Controller/SubsController.php:233
msgid "Looks like you're trying to follow yourself, but that's not allowed."
msgstr ""
#: Controller/TermsController.php:43
#: View/Blends/edit.ctp:42
#: View/Elements/menus/topMenu.ctp:96
#: View/Elements/navs/taxonomies.ctp:4
msgid "Categories"
msgstr ""
#: Controller/TermsController.php:57
msgid "Invalid category name, these are the ones available."
msgstr ""
#: Controller/TermsController.php:98
msgid "Category: %s"
msgstr ""
#: Controller/TermsController.php:132
msgid "Tag: %s"
msgstr ""
#: Controller/UserbadgesController.php:30;61;87
msgid "Invalid userbadge"
msgstr ""
#: Controller/UserbadgesController.php:44;65
msgid "The userbadge has been saved"
msgstr ""
#: Controller/UserbadgesController.php:47;68
msgid "The userbadge could not be saved. Please, try again."
msgstr ""
#: Controller/UserbadgesController.php:90
msgid "Userbadge deleted"
msgstr ""
#: Controller/UserbadgesController.php:93
msgid "Userbadge was not deleted"
msgstr ""
#: Controller/UsersController.php:265;1220;1252;1279
msgid "Invalid user"
msgstr ""
#: Controller/UsersController.php:287
msgid "Account and settings saved"
msgstr ""
#: Controller/UsersController.php:308
msgid "The setting could not be saved. Please review the rrors below and try again."
msgstr ""
#: Controller/UsersController.php:349
msgid "Your username was changed. you must use it to log in from now on."
msgstr ""
#: Controller/UsersController.php:356
msgid "The username you enteres is not valid, please check the rules again."
msgstr ""
#: Controller/UsersController.php:427
msgid "Register your account"
msgstr ""
#: Controller/UsersController.php:453
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:456
msgid "The data you entered does not validate, please review any red messages below and try again."
msgstr ""
#: Controller/UsersController.php:459
msgid "The passwords you entered do not match, please try again."
msgstr ""
#: Controller/UsersController.php:501
msgid "Recaptcha challenge was invalid, please try again."
msgstr ""
#: Controller/UsersController.php:505
msgid "Please fill the ReCAPTCHA field."
msgstr ""
#: Controller/UsersController.php:555
msgid "Captcha was incorrect please try again."
msgstr ""
#: Controller/UsersController.php:1235;1257
msgid "The user has been saved"
msgstr ""
#: Controller/UsersController.php:1238;1260
msgid "The user could not be saved. Please, try again."
msgstr ""
#: Controller/UsersController.php:1282
msgid "User deleted"
msgstr ""
#: Controller/UsersController.php:1285
msgid "User was not deleted"
msgstr ""
#: Controller/UsersController.php:1605
msgid "You have been logged out from Blend Swap. Your password was changed to a very long and random string. You can reactivate your account by resetting your password."
msgstr ""
#: Controller/UsersController.php:1609
msgid "Error while saving your account."
msgstr ""
#: Controller/UsersController.php:1663
msgid "One or both files failed to upload. Please take some time to repair your entry.<br>"
msgstr ""
#: Controller/UsersController.php:1669
msgid "Manage Portfolio"
msgstr ""
#: Controller/VotesController.php:107;176;197
msgid "The vote has been saved"
msgstr ""
#: Controller/VotesController.php:110;179;200
msgid "The vote could not be saved. Please, try again."
msgstr ""
#: Controller/VotesController.php:162;193;219
msgid "Invalid vote"
msgstr ""
#: Controller/VotesController.php:222
msgid "Vote deleted"
msgstr ""
#: Controller/VotesController.php:225
msgid "Vote was not deleted"
msgstr ""
#: View/Answers/admin_add.ctp:4
msgid "Admin Add Response"
msgstr ""
#: View/Answers/admin_add.ctp:11
#: View/Answers/admin_edit.ctp:12
#: View/Blends/admin_add.ctp:27
#: View/Blends/admin_edit.ctp:58
#: View/Chats/add.ctp:11
#: View/Chats/edit.ctp:12
#: View/Comments/admin_edit.ctp:13
#: View/Contacts/add.ctp:88
#: View/Contacts/admin_edit.ctp:17
#: View/Elements/forms/commentForm.ctp:20
#: View/Feedbacks/add.ctp:21
#: View/Feedbacks/admin_edit.ctp:38
#: View/Items/admin_add.ctp:12
#: View/Items/admin_edit.ctp:13
#: View/Limits/admin_add.ctp:12
#: View/Limits/admin_edit.ctp:13
#: View/Messages/add.ctp:12
#: View/Messages/edit.ctp:13
#: View/Options/admin_add.ctp:13
#: View/Options/admin_edit.ctp:32
#: View/Pages/admin_add.ctp:15
#: View/Profiles/admin_add.ctp:22
#: View/Profiles/admin_edit.ctp:23
#: View/Profiles/edit.ctp:89
#: View/Questions/add.ctp:32
#: View/Questions/admin_add.ctp:11
#: View/Questions/admin_edit.ctp:12
#: View/Questions/edit.ctp:18
#: View/Reports/__add.ctp:11
#: View/Reports/admin_edit.ctp:12
#: View/Requests/add.ctp:119
#: View/Requests/admin_add.ctp:12
#: View/Requests/admin_edit.ctp:14
#: View/Requests/edit.ctp:42
#: View/Users/account.ctp:31
#: View/Users/admin_add.ctp:25
#: View/Users/admin_edit.ctp:26
msgid "Submit"
msgstr ""
#: View/Answers/admin_add.ctp:14
#: View/Answers/admin_edit.ctp:15
#: View/Answers/admin_index.ctp:11;50
#: View/Answers/admin_view.ctp:37
#: View/Blends/admin_add.ctp:30
#: View/Blends/admin_edit.ctp:61
#: View/Blends/admin_index.ctp:37
#: View/Blends/admin_view.ctp:117;158;205;254;303;341
#: View/Blends/media.ctp:29;93
#: View/Chats/add.ctp:14
#: View/Chats/edit.ctp:15
#: View/Chats/index.ctp:12
#: View/Comments/admin_edit.ctp:16
#: View/Comments/admin_index.ctp:23;80
#: View/Comments/admin_view.ctp:82
#: View/Contacts/admin_edit.ctp:20
#: View/Contacts/admin_index.ctp:20;62
#: View/Contacts/admin_view.ctp:87
#: View/Downloads/admin_index.ctp:11;46
#: View/Feedbacks/add.ctp:24
#: View/Feedbacks/admin_edit.ctp:43
#: View/Feedbacks/admin_index.ctp:20
#: View/Feedbacks/admin_view.ctp:87
#: View/Items/admin_add.ctp:15
#: View/Items/admin_edit.ctp:16
#: View/Items/admin_index.ctp:12;50
#: View/Items/admin_view.ctp:42
#: View/Limits/admin_add.ctp:15
#: View/Limits/admin_edit.ctp:16
#: View/Limits/admin_index.ctp:12;48
#: View/Limits/admin_view.ctp:42
#: View/Messages/add.ctp:15
#: View/Messages/edit.ctp:16
#: View/Messages/index.ctp:12;48
#: View/Messages/view.ctp:42
#: View/News/admin_index.ctp:22
#: View/Options/admin_add.ctp:16
#: View/Options/admin_edit.ctp:35
#: View/Options/admin_index.ctp:46
#: View/Options/admin_manage.ctp:9;42
#: View/Options/admin_view.ctp:27
#: View/Pages/admin_add.ctp:18
#: View/Pages/admin_index.ctp:8;40
#: View/Profiles/admin_add.ctp:25
#: View/Profiles/admin_edit.ctp:26
#: View/Profiles/admin_index.ctp:22;68
#: View/Profiles/admin_view.ctp:92
#: View/Questions/admin_add.ctp:14
#: View/Questions/admin_edit.ctp:15
#: View/Questions/admin_index.ctp:11;46
#: View/Questions/admin_view.ctp:37
#: View/Reports/__add.ctp:14
#: View/Reports/admin_edit.ctp:15
#: View/Reports/admin_index.ctp:22;62