forked from jimmo78/blendswap-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.pot
executable file
·5360 lines (4242 loc) · 121 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: 2014-02-17 10:44-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/BadgesController.php:42;84;115;141
msgid "Invalid badge"
msgstr ""
#: Controller/BadgesController.php:98;119
msgid "The badge has been saved"
msgstr ""
#: Controller/BadgesController.php:101;122
msgid "The badge could not be saved. Please, try again."
msgstr ""
#: Controller/BadgesController.php:144
msgid "Badge deleted"
msgstr ""
#: Controller/BadgesController.php:147
msgid "Badge was not deleted"
msgstr ""
#: Controller/BlendsController.php:213
#: View/Elements/menus/topMenu.ctp:123
msgid "Staff Picks"
msgstr ""
#: Controller/BlendsController.php:276
msgid "The blend was resubmitted for review to the admins. Please allow some time for moderation."
msgstr ""
#: Controller/BlendsController.php:278
msgid "There was an error while resubmitting yourblend to the admins. Please try again, and report if you see this message a second time."
msgstr ""
#: Controller/BlendsController.php:293;1099;1122;1151
msgid "Invalid blend"
msgstr ""
#: Controller/BlendsController.php:388
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 "Your blend was successfully saved and is now waiting for moderation."
msgstr ""
#: Controller/BlendsController.php:429
msgid " Please be patient, moderation can take anything between a few minutes to an entire day."
msgstr ""
#: Controller/BlendsController.php:435
msgid "Your blend was also added as a response to %s"
msgstr ""
#: Controller/BlendsController.php:445
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:570
msgid "The requested blend does not exist."
msgstr ""
#: Controller/BlendsController.php:590
msgid "The new blend data was saved successfully"
msgstr ""
#: Controller/BlendsController.php:592
msgid "The blend was saved, but its categories and tags failed to save"
msgstr ""
#: Controller/BlendsController.php:595
msgid "The blend was not saved, please try again."
msgstr ""
#: Controller/BlendsController.php:691
msgid "The blend has been published, thanks for completing it!"
msgstr ""
#: Controller/BlendsController.php:696
msgid "The blend was updated, thanks for completing it. it is now waiting for moderation."
msgstr ""
#: Controller/BlendsController.php:1126
msgid "The blend has been saved"
msgstr ""
#: Controller/BlendsController.php:1130
msgid "The blend could not be saved. Please, try again."
msgstr ""
#: Controller/BlendsController.php:1154
msgid "Blend deleted"
msgstr ""
#: Controller/BlendsController.php:1157
msgid "Blend was not deleted"
msgstr ""
#: Controller/BlendsController.php:1179
msgid "The blend was removed from all lists. We will preserve copy of all the data for archival purposes."
msgstr ""
#: Controller/BlendsController.php:1182
msgid "There was an error while removing the blend from all listings, please try again and report if this error repeats."
msgstr ""
#: Controller/CollectionsController.php:85
msgid "Latest Blend Collections"
msgstr ""
#: Controller/CollectionsController.php:160;191
msgid "Some items were removed from this collection because they are not available on Blend Swap anymore..."
msgstr ""
#: Controller/CollectionsController.php:178;276;318
msgid "Invalid collection"
msgstr ""
#: Controller/CollectionsController.php:225
msgid "The collection was saved"
msgstr ""
#: Controller/CollectionsController.php:230;285
msgid "The Collection could not be saved. Please, try again."
msgstr ""
#: Controller/CollectionsController.php:255
msgid "Sorry, you have to be an associate member to be able to create a new collection."
msgstr ""
#: Controller/CollectionsController.php:283
msgid "The Collection was saved"
msgstr ""
#: Controller/CollectionsController.php:323
msgid "Collection deleted"
msgstr ""
#: Controller/CollectionsController.php:325
msgid "Collection was not deleted"
msgstr ""
#: Controller/CollectionsController.php:396
msgid "An error happened when adding this blend to the collection."
msgstr ""
#: Controller/CollectionsController.php:489
msgid "You have not created any collections yet, create one now!:)"
msgstr ""
#: Controller/CollectionsController.php:497
msgid "Manage collections"
msgstr ""
#: Controller/CollectionsController.php:498
#: View/Terms/_view.ctp:9
#: View/Terms/admin_view.ctp:9
msgid "Name"
msgstr ""
#: Controller/CollectionsController.php:499
msgid "Create"
msgstr ""
#: Controller/CollectionsController.php:501
msgid "Publicly visible"
msgstr ""
#: Controller/CollectionsController.php:505
msgid "You have a %s, to create more Collections you'll have to become an "
msgstr ""
#: Controller/CollectionsController.php:505
#: View/App/home.ctp:57
#: View/Elements/placeholder.ctp:94
#: View/Events/home.ctp:57
msgid "Free Account"
msgstr ""
#: Controller/CollectionsController.php:506
msgid "Associate Member"
msgstr ""
#: Controller/CommentsController.php:124
msgid "The comment did not validate."
msgstr ""
#: Controller/CommentsController.php:177
msgid "Process failed!"
msgstr ""
#: Controller/CommentsController.php:194
msgid "there was an error when saving your comment"
msgstr ""
#: Controller/CommentsController.php:202
msgid "Edit comment"
msgstr ""
#: Controller/CommentsController.php:208
#: View/News/admin_add.ctp:18
msgid "Save"
msgstr ""
#: Controller/CommentsController.php:209
#: Controller/DownloadsController.php:176
#: View/Blends/edit.ctp:110
#: View/Helper/CommentListHelper.php:79
msgid "Cancel"
msgstr ""
#: Controller/CommentsController.php:230
msgid "The comment was deleted"
msgstr ""
#: Controller/CommentsController.php:232
msgid "There was an error deleting this comment!"
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:47
#: View/Users/bandwidth.ctp:15
msgid "Complete downloads history"
msgstr ""
#: Controller/DownloadsController.php:73
msgid "Invalid download"
msgstr ""
#: Controller/DownloadsController.php:85
msgid "This blend doesn't exist!"
msgstr ""
#: Controller/DownloadsController.php:108
msgid "Sorry, you don't have enough bandwidth left this month to download this file."
msgstr ""
#: Controller/DownloadsController.php:137
msgid "I accept the license. Start file download, please"
msgstr ""
#: Controller/DownloadsController.php:138
msgid "Yes. Download now!"
msgstr ""
#: Controller/DownloadsController.php:158
msgid "Error!"
msgstr ""
#: Controller/DownloadsController.php:160
msgid "There was an error while processing your request :("
msgstr ""
#: Controller/DownloadsController.php:166
msgid "Downloading"
msgstr ""
#: Controller/DownloadsController.php:168
msgid "This blend is licensed"
msgstr ""
#: Controller/DownloadsController.php:170
msgid "Do you agree with this license"
msgstr ""
#: Controller/DownloadsController.php:170
msgid "and the limitations imposed by the Fan Art marking"
msgstr ""
#: Controller/DownloadsController.php:176
msgid "Cancel download"
msgstr ""
#: Controller/DownloadsController.php:330;331
msgid "Creative Commons Public Domain Mark 1.0"
msgstr ""
#: Controller/DownloadsController.php:332
msgid "which has no requirements:"
msgstr ""
#: Controller/DownloadsController.php:335;336
msgid "Creative Commons Attribution 3.0"
msgstr ""
#: Controller/DownloadsController.php:337;342;347;352
msgid "which has the following requirements:"
msgstr ""
#: Controller/DownloadsController.php:340;341
msgid "Creative Commons Attribution-ShareAlike 3.0"
msgstr ""
#: Controller/DownloadsController.php:345;346
msgid "Creative Commons Attribution-NonCommercial 3.0"
msgstr ""
#: Controller/DownloadsController.php:350;351
msgid "Creative Commons Attribution-NonCommercial-ShareAlike 3.0"
msgstr ""
#: Controller/DownloadsController.php:365
msgid "Blend Swap recommends you give credit to the blend author, but there is no obligation to do so"
msgstr ""
#: Controller/DownloadsController.php:368
#: View/Helper/SingleBlendHelper.php:180
msgid "You must give credit to the author of this blend"
msgstr ""
#: Controller/DownloadsController.php:371
#: View/Helper/SingleBlendHelper.php:183
msgid "You can not use this blend commercially under any circumstance"
msgstr ""
#: Controller/DownloadsController.php:374
#: View/Helper/SingleBlendHelper.php:186
msgid "You must distribute any derivative works under the same license"
msgstr ""
#: Controller/DownloadsController.php:379
msgid "What's the deal with all this \"giving credits\" thing?"
msgstr ""
#: Controller/EventsController.php:171;209;235
msgid "Invalid event"
msgstr ""
#: Controller/EventsController.php:192;213
msgid "The event has been saved"
msgstr ""
#: Controller/EventsController.php:194;216
msgid "The event could not be saved. Please, try again."
msgstr ""
#: Controller/EventsController.php:238
msgid "Event deleted"
msgstr ""
#: Controller/EventsController.php:241
msgid "Event was not deleted"
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:77
msgid "We were unable to save the like :("
msgstr ""
#: Controller/ItemsController.php:96
msgid "Your browser sent invalid data..."
msgstr ""
#: Controller/ItemsController.php:148;183;211
msgid "Invalid item"
msgstr ""
#: Controller/ItemsController.php:163;187
msgid "The item has been saved."
msgstr ""
#: Controller/ItemsController.php:166;190
msgid "The item could not be saved. Please, try again."
msgstr ""
#: Controller/ItemsController.php:215
msgid "The item has been deleted."
msgstr ""
#: Controller/ItemsController.php:217
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:149
msgid "Your bandwidth was recalculated"
msgstr ""
#: Controller/LimitsController.php:149
msgid "No changes were made to your bandwidth limit."
msgstr ""
#: Controller/LimitsController.php:150
msgid "You made %d downloads that can be counted on that month, totaling %d Megabytes. %s"
msgstr ""
#: Controller/MembershipsController.php:69;115;143
msgid "Invalid membership"
msgstr ""
#: Controller/MembershipsController.php:94;119
msgid "The membership has been saved"
msgstr ""
#: Controller/MembershipsController.php:97;122
msgid "The membership could not be saved. Please, try again."
msgstr ""
#: Controller/MembershipsController.php:146
msgid "Membership deleted"
msgstr ""
#: Controller/MembershipsController.php:149
msgid "Membership was not deleted"
msgstr ""
#: Controller/MessagesController.php:95
msgid "This user does not exist any more on Blend Swap"
msgstr ""
#: Controller/MessagesController.php:106
msgid "Conversation with %s"
msgstr ""
#: Controller/MessagesController.php:143
msgid "This user doesn't exist!"
msgstr ""
#: Controller/MessagesController.php:151
msgid "Your message has been sent"
msgstr ""
#: Controller/MessagesController.php:153
msgid "An error occurred when saving your message. Please try again"
msgstr ""
#: Controller/MessagesController.php:205
msgid "Your message was successfully sent to %s"
msgstr ""
#: Controller/MessagesController.php:211
msgid "There was an error while sending your message please report you saw this."
msgstr ""
#: Controller/MessagesController.php:217
msgid "We received an empty message please write a message for %s."
msgstr ""
#: Controller/MessagesController.php:225
msgid "Sorry you can not message yourself!"
msgstr ""
#: Controller/MessagesController.php:230
msgid "Message to %s"
msgstr ""
#: Controller/MessagesController.php:296
msgid "Message deleted"
msgstr ""
#: Controller/MessagesController.php:298
msgid "Message was not deleted"
msgstr ""
#: Controller/NewsController.php:96;143;201
msgid "Invalid news"
msgstr ""
#: Controller/NewsController.php:126
msgid "The news has been saved"
msgstr ""
#: Controller/NewsController.php:129;177
msgid "The news could not be saved. Please, try again."
msgstr ""
#: Controller/NewsController.php:204
msgid "News deleted"
msgstr ""
#: Controller/NewsController.php:207
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:121;127;132;167;201
msgid "Invalid page"
msgstr ""
#: Controller/PagesController.php:149
msgid "The page has been saved"
msgstr ""
#: Controller/PagesController.php:152;181
msgid "The page could not be saved. Please, try again."
msgstr ""
#: Controller/PagesController.php:204
msgid "Page deleted"
msgstr ""
#: Controller/PagesController.php:207
msgid "Page was not deleted"
msgstr ""
#: Controller/PaymentsController.php:60;322
msgid "Invalid payment"
msgstr ""
#: Controller/PaymentsController.php:325
msgid "Payment deleted"
msgstr ""
#: Controller/PaymentsController.php:328
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:25;96;127;153
msgid "Invalid profile"
msgstr ""
#: Controller/ProfilesController.php:66;110;131
msgid "The profile has been saved"
msgstr ""
#: Controller/ProfilesController.php:68;113;134
msgid "The profile could not be saved. Please, try again."
msgstr ""
#: Controller/ProfilesController.php:156
msgid "Profile deleted"
msgstr ""
#: Controller/ProfilesController.php:159
msgid "Profile was not deleted"
msgstr ""
#: Controller/QuestionsController.php:55
msgid "Sorry, this tag name clashed with another tag on another type."
msgstr ""
#: Controller/QuestionsController.php:88;156;225;257;285
msgid "Invalid question"
msgstr ""
#: Controller/QuestionsController.php:109
msgid "An error happened when marking the question"
msgstr ""
#: Controller/QuestionsController.php:138;169;239;261
msgid "The question has been saved"
msgstr ""
#: Controller/QuestionsController.php:141;172;242;264
msgid "The question could not be saved. Please, try again."
msgstr ""
#: Controller/QuestionsController.php:288
msgid "Question deleted"
msgstr ""
#: Controller/QuestionsController.php:291
msgid "Question was not deleted"
msgstr ""
#: Controller/ReportsController.php:166;188;214
msgid "Invalid report"
msgstr ""
#: Controller/ReportsController.php:192
msgid "The report has been saved"
msgstr ""
#: Controller/ReportsController.php:195
msgid "The report could not be saved. Please, try again."
msgstr ""
#: Controller/ReportsController.php:217
msgid "Report deleted"
msgstr ""
#: Controller/ReportsController.php:220
msgid "Report was not deleted"
msgstr ""
#: Controller/RequestsController.php:116;236;279;338;492;526;566
msgid "Invalid request"
msgstr ""
#: Controller/RequestsController.php:169
msgid "Request data saved to the database"
msgstr ""
#: Controller/RequestsController.php:180
msgid "You must use the file field to upload the format it says"
msgstr ""
#: Controller/RequestsController.php:186
msgid "One or both files failed to upload. Please take some time to repair your entry"
msgstr ""
#: Controller/RequestsController.php:208
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:212;252;509;533
msgid "The request could not be saved. Please, try again."
msgstr ""
#: Controller/RequestsController.php:249;506;530
msgid "The request has been saved"
msgstr ""
#: Controller/RequestsController.php:569
msgid "Request deleted"
msgstr ""
#: Controller/RequestsController.php:572
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:86
msgid "Request received but not dispatched"
msgstr ""
#: Controller/SubsController.php:105
msgid "There was an error while processing your request, please report you saw this message."
msgstr ""
#: Controller/SubsController.php:131
msgid "There was an error when saving your subscription, please report you saw this message."
msgstr ""
#: Controller/SubsController.php:138
msgid "There was an error when processing your request, please try again. and report if this happens again"
msgstr ""
#: Controller/TermrelsController.php:31
msgid "Term removed"
msgstr ""
#: Controller/TermrelsController.php:35
#: View/Reports/index.ctp:47
msgid ""
msgstr ""
#: Controller/TermsController.php:44
#: View/Blends/edit.ctp:39
#: View/Elements/menus/topMenu.ctp:71
#: View/Elements/navs/taxonomies.ctp:4
msgid "Categories"
msgstr ""
#: Controller/TermsController.php:58
msgid "Invalid category name, these are the ones available."
msgstr ""
#: Controller/TermsController.php:100
msgid "Category: %s"
msgstr ""
#: Controller/TermsController.php:134
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:164
msgid "This user does not exist on Blend Swap"
msgstr ""
#: Controller/UsersController.php:290
msgid "The account was saved correctly."
msgstr ""
#: Controller/UsersController.php:293
msgid "There was an error when saving the account, please see if you have any errors below"
msgstr ""
#: Controller/UsersController.php:320
msgid "Your username was changed. you must use it to log in from now on."
msgstr ""
#: Controller/UsersController.php:327
msgid "The username you entered is not valid, please check the rules again."
msgstr ""
#: Controller/UsersController.php:375
msgid "Register your account"
msgstr ""
#: Controller/UsersController.php:400
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:403
msgid "The data you entered does not validate, please review any red messages below and try again."
msgstr ""
#: Controller/UsersController.php:406
msgid "The passwords you entered do not match, please try again."
msgstr ""
#: Controller/UsersController.php:447
msgid "Recaptcha challenge was invalid, please try again."
msgstr ""
#: Controller/UsersController.php:451
msgid "Please fill the ReCAPTCHA field."
msgstr ""
#: Controller/UsersController.php:497
msgid "Captcha was incorrect please try again."
msgstr ""
#: Controller/UsersController.php:726
msgid "Invalid credentials.<br>ATTENTION:<br>We improved our password encryption directives on February 3rd, 2014; you may need to reset your password!"
msgstr ""
#: Controller/UsersController.php:760
msgid "You are now logged off Blend Swap, see you soon!"
msgstr ""
#: Controller/UsersController.php:866;898;925
msgid "Invalid user"
msgstr ""
#: Controller/UsersController.php:881;903
msgid "The user has been saved"
msgstr ""
#: Controller/UsersController.php:884;906
msgid "The user could not be saved. Please, try again."
msgstr ""
#: Controller/UsersController.php:928
msgid "User deleted"
msgstr ""
#: Controller/UsersController.php:931
msgid "User was not deleted"
msgstr ""
#: Controller/UsersController.php:1208
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:1212
msgid "Error while saving your account."
msgstr ""
#: Controller/UsersController.php:1266
msgid "One or both files failed to upload. Please take some time to repair your entry.<br>"
msgstr ""
#: Controller/UsersController.php:1272
msgid "Manage Portfolio"
msgstr ""
#: Controller/UsersController.php:1297
msgid "Your password was updated!"
msgstr ""
#: Controller/UsersController.php:1299;1337
msgid "The password was not updated, please try again."
msgstr ""
#: Controller/UsersController.php:1302
msgid "The passwords didn't match. Please try again."
msgstr ""
#: Controller/UsersController.php:1329
msgid "Sorry, this account is blocked, to recover it you will have to get in touch with the administrators."
msgstr ""
#: Controller/UsersController.php:1340
msgid "The passwords didn't match, please try again."
msgstr ""
#: Controller/UsersController.php:1355
msgid "The email dispatcher failed to send your secure link, please get in touch with the admins!"
msgstr ""
#: Controller/UsersController.php:1358
msgid "We couldn't find any account registered whith that email. Please try again with another email."
msgstr ""
#: Controller/UsersController.php:1367
#: View/Users/password.ctp:83
msgid "Reset your password"
msgstr ""
#: Controller/VotesController.php:94;157;178
msgid "The vote has been saved"
msgstr ""
#: Controller/VotesController.php:97;160;181
msgid "The vote could not be saved. Please, try again."
msgstr ""
#: Controller/VotesController.php:143;174;200
msgid "Invalid vote"
msgstr ""
#: Controller/VotesController.php:203
msgid "Vote deleted"
msgstr ""
#: Controller/VotesController.php:206
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/Comments/admin_edit.ctp:13
#: View/Contacts/add.ctp:88
#: View/Contacts/admin_edit.ctp:17
#: View/Conversations/add.ctp:11
#: View/Conversations/edit.ctp:12
#: View/Elements/forms/commentForm.ctp:21
#: View/Events/admin_add.ctp:18
#: View/Events/admin_edit.ctp:16
#: View/Features/admin_add.ctp:11
#: View/Features/admin_edit.ctp:12
#: 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/Memberships/admin_add.ctp:15
#: View/Memberships/admin_edit.ctp:15
#: 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:83
#: View/Questions/admin_add.ctp:11
#: View/Questions/admin_edit.ctp:12