-
Notifications
You must be signed in to change notification settings - Fork 1
/
cake_console.pot
2210 lines (1669 loc) · 56.6 KB
/
cake_console.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: CakePHP 2.4.4\n"
"POT-Creation-Date: 2014-01-30 20:38+0100\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"
#: Console/ConsoleErrorHandler.php:57
msgid "<error>Error:</error> %s\n%s"
msgstr ""
#: Console/ConsoleErrorHandler.php:81
msgid "%s in [%s, line %s]"
msgstr ""
#: Console/ConsoleErrorHandler.php:82
msgid "<error>%s Error:</error> %s\n"
msgstr ""
#: Console/ConsoleInputArgument.php:98
msgid " <comment>(optional)</comment>"
msgstr ""
#: Console/ConsoleInputArgument.php:101
#: Console/ConsoleInputOption.php:130
msgid " <comment>(choices: %s)</comment>"
msgstr ""
#: Console/ConsoleInputArgument.php:145
msgid "\"%s\" is not a valid value for %s. Please use one of \"%s\""
msgstr ""
#: Console/ConsoleInputOption.php:95
msgid "Short option \"%s\" is invalid, short options must be one letter."
msgstr ""
#: Console/ConsoleInputOption.php:127
msgid " <comment>(default: %s)</comment>"
msgstr ""
#: Console/ConsoleInputOption.php:190
msgid "\"%s\" is not a valid value for --%s. Please use one of \"%s\""
msgstr ""
#: Console/ConsoleOptionParser.php:147
msgid "Display this help."
msgstr ""
#: Console/ConsoleOptionParser.php:154
msgid "Enable verbose output."
msgstr ""
#: Console/ConsoleOptionParser.php:158
msgid "Enable quiet output."
msgstr ""
#: Console/ConsoleOptionParser.php:482
msgid "Missing required arguments. %s is required."
msgstr ""
#: Console/ConsoleOptionParser.php:566
msgid "Unknown short option `%s`"
msgstr ""
#: Console/ConsoleOptionParser.php:582
msgid "Unknown option `%s`"
msgstr ""
#: Console/ConsoleOptionParser.php:634
msgid "Too many arguments."
msgstr ""
#: Console/HelpFormatter.php:70
msgid "<info>Usage:</info>"
msgstr ""
#: Console/HelpFormatter.php:75
msgid "<info>Subcommands:</info>"
msgstr ""
#: Console/HelpFormatter.php:86
msgid "To see help on a subcommand use <info>`cake %s [subcommand] --help`</info>"
msgstr ""
#: Console/HelpFormatter.php:93
msgid "<info>Options:</info>"
msgstr ""
#: Console/HelpFormatter.php:108
msgid "<info>Arguments:</info>"
msgstr ""
#: Console/Shell.php:226
#: Console/Command/ServerShell.php:108
msgid "<info>Welcome to CakePHP %s Console</info>"
msgstr ""
#: Console/Shell.php:228
#: Console/Command/ServerShell.php:110
msgid "App : %s"
msgstr ""
#: Console/Shell.php:229
#: Console/Command/ServerShell.php:111
#: Console/Command/Task/PluginTask.php:64
#: Console/Command/Task/TestTask.php:112
msgid "Path: %s"
msgstr ""
#: Console/Shell.php:658
msgid "<error>Error:</error> %s"
msgstr ""
#: Console/Shell.php:696
msgid "<warning>File `%s` exists</warning>"
msgstr ""
#: Console/Shell.php:697
msgid "Do you want to overwrite?"
msgstr ""
#: Console/Shell.php:700
msgid "<error>Quitting</error>."
msgstr ""
#: Console/Shell.php:703
msgid "Skip `%s`"
msgstr ""
#: Console/Shell.php:707
msgid "Creating file %s"
msgstr ""
#: Console/Shell.php:714
msgid "<success>Wrote</success> `%s`"
msgstr ""
#: Console/Shell.php:718
msgid "<error>Could not write to `%s`</error>."
msgstr ""
#: Console/Shell.php:738
msgid "PHPUnit is not installed. Do you want to bake unit test files anyway?"
msgstr ""
#: Console/Shell.php:744
msgid "You can download PHPUnit from %s"
msgstr ""
#: Console/Command/AclShell.php:77
msgid "Error: Your current CakePHP configuration is set to an ACL implementation other than DB."
msgstr ""
#: Console/Command/AclShell.php:78
msgid "Please change your core config to reflect your decision to use DbAcl before attempting to use this script"
msgstr ""
#: Console/Command/AclShell.php:80
msgid "Current ACL Classname: %s"
msgstr ""
#: Console/Command/AclShell.php:88
#: Console/Command/BakeShell.php:88
#: Console/Command/I18nShell.php:54
msgid "Your database configuration was not found. Take a moment to create one."
msgstr ""
#: Console/Command/AclShell.php:133
msgid "/ can not be used as an alias!"
msgstr ""
#: Console/Command/AclShell.php:133
msgid "\t/ is the root, please supply a sub alias"
msgstr ""
#: Console/Command/AclShell.php:139
msgid "<success>New %s</success> '%s' created."
msgstr ""
#: Console/Command/AclShell.php:141
msgid "There was a problem creating a new %s '%s'."
msgstr ""
#: Console/Command/AclShell.php:157
msgid "Node Not Deleted"
msgstr ""
#: Console/Command/AclShell.php:157
msgid "There was an error deleting the %s. Check that the node exists."
msgstr ""
#: Console/Command/AclShell.php:159
msgid "<success>%s deleted.</success>"
msgstr ""
#: Console/Command/AclShell.php:180
msgid "Error in setting new parent. Please make sure the parent node exists, and is not a descendant of the node specified."
msgstr ""
#: Console/Command/AclShell.php:182
msgid "Node parent set to %s"
msgstr ""
#: Console/Command/AclShell.php:200
msgid "Supplied Node '%s' not found"
msgstr ""
#: Console/Command/AclShell.php:201;317;319;528
msgid "No tree returned."
msgstr ""
#: Console/Command/AclShell.php:204
msgid "Path:"
msgstr ""
#: Console/Command/AclShell.php:238
msgid "%s is <success>allowed</success>."
msgstr ""
#: Console/Command/AclShell.php:240
msgid "%s is <error>not allowed</error>."
msgstr ""
#: Console/Command/AclShell.php:253
msgid "Permission <success>granted</success>."
msgstr ""
#: Console/Command/AclShell.php:255
msgid "Permission was <error>not granted</error>."
msgstr ""
#: Console/Command/AclShell.php:268
msgid "Permission denied."
msgstr ""
#: Console/Command/AclShell.php:270
msgid "Permission was not denied."
msgstr ""
#: Console/Command/AclShell.php:283
msgid "Permission inherited."
msgstr ""
#: Console/Command/AclShell.php:285
msgid "Permission was not inherited."
msgstr ""
#: Console/Command/AclShell.php:317;319;528
#: Console/Command/ApiShell.php:92
#: Console/Command/Task/DbConfigTask.php:254
msgid "%s not found"
msgstr ""
#: Console/Command/AclShell.php:369
msgid "Type of node to create."
msgstr ""
#: Console/Command/AclShell.php:373
msgid "A console tool for managing the DbAcl"
msgstr ""
#: Console/Command/AclShell.php:375
msgid "Create a new ACL node"
msgstr ""
#: Console/Command/AclShell.php:377
msgid "Creates a new ACL object <node> under the parent"
msgstr ""
#: Console/Command/AclShell.php:378
msgid "You can use `root` as the parent when creating nodes to create top level nodes."
msgstr ""
#: Console/Command/AclShell.php:382
msgid "The node selector for the parent."
msgstr ""
#: Console/Command/AclShell.php:386
msgid "The alias to use for the newly created node."
msgstr ""
#: Console/Command/AclShell.php:392
msgid "Deletes the ACL object with the given <node> reference"
msgstr ""
#: Console/Command/AclShell.php:394
msgid "Delete an ACL node."
msgstr ""
#: Console/Command/AclShell.php:398
msgid "The node identifier to delete."
msgstr ""
#: Console/Command/AclShell.php:404
msgid "Moves the ACL node under a new parent."
msgstr ""
#: Console/Command/AclShell.php:406
msgid "Moves the ACL object specified by <node> beneath <parent>"
msgstr ""
#: Console/Command/AclShell.php:410
msgid "The node to move"
msgstr ""
#: Console/Command/AclShell.php:414
msgid "The new parent for <node>."
msgstr ""
#: Console/Command/AclShell.php:420
msgid "Print out the path to an ACL node."
msgstr ""
#: Console/Command/AclShell.php:423
msgid "Returns the path to the ACL object specified by <node>."
msgstr ""
#: Console/Command/AclShell.php:424
msgid "This command is useful in determining the inheritance of permissions for a certain object in the tree."
msgstr ""
#: Console/Command/AclShell.php:429
msgid "The node to get the path of"
msgstr ""
#: Console/Command/AclShell.php:435
msgid "Check the permissions between an ACO and ARO."
msgstr ""
#: Console/Command/AclShell.php:438
msgid "Use this command to check ACL permissions."
msgstr ""
#: Console/Command/AclShell.php:441
msgid "ARO to check."
msgstr ""
#: Console/Command/AclShell.php:442
msgid "ACO to check."
msgstr ""
#: Console/Command/AclShell.php:443
msgid "Action to check"
msgstr ""
#: Console/Command/AclShell.php:447
msgid "Grant an ARO permissions to an ACO."
msgstr ""
#: Console/Command/AclShell.php:450
msgid "Use this command to grant ACL permissions. Once executed, the ARO specified (and its children, if any) will have ALLOW access to the specified ACO action (and the ACO's children, if any)."
msgstr ""
#: Console/Command/AclShell.php:453
msgid "ARO to grant permission to."
msgstr ""
#: Console/Command/AclShell.php:454
msgid "ACO to grant access to."
msgstr ""
#: Console/Command/AclShell.php:455
msgid "Action to grant"
msgstr ""
#: Console/Command/AclShell.php:459
msgid "Deny an ARO permissions to an ACO."
msgstr ""
#: Console/Command/AclShell.php:462
msgid "Use this command to deny ACL permissions. Once executed, the ARO specified (and its children, if any) will have DENY access to the specified ACO action (and the ACO's children, if any)."
msgstr ""
#: Console/Command/AclShell.php:465
msgid "ARO to deny."
msgstr ""
#: Console/Command/AclShell.php:466
msgid "ACO to deny."
msgstr ""
#: Console/Command/AclShell.php:467
msgid "Action to deny"
msgstr ""
#: Console/Command/AclShell.php:471
msgid "Inherit an ARO's parent permissions."
msgstr ""
#: Console/Command/AclShell.php:474
msgid "Use this command to force a child ARO object to inherit its permissions settings from its parent."
msgstr ""
#: Console/Command/AclShell.php:477
msgid "ARO to have permissions inherit."
msgstr ""
#: Console/Command/AclShell.php:478
msgid "ACO to inherit permissions on."
msgstr ""
#: Console/Command/AclShell.php:479
msgid "Action to inherit"
msgstr ""
#: Console/Command/AclShell.php:483
msgid "View a tree or a single node's subtree."
msgstr ""
#: Console/Command/AclShell.php:486
msgid "The view command will return the ARO or ACO tree."
msgstr ""
#: Console/Command/AclShell.php:487
msgid "The optional node parameter allows you to return"
msgstr ""
#: Console/Command/AclShell.php:488
msgid "only a portion of the requested tree."
msgstr ""
#: Console/Command/AclShell.php:492
msgid "The optional node to view the subtree of."
msgstr ""
#: Console/Command/AclShell.php:496
msgid "Initialize the DbAcl tables. Uses this command : cake schema create DbAcl"
msgstr ""
#: Console/Command/AclShell.php:564
msgid "Could not find node using reference \"%s\""
msgstr ""
#: Console/Command/ApiShell.php:100
msgid "%s::%s() could not be found"
msgstr ""
#: Console/Command/ApiShell.php:117
msgid "Select a number to see the more information about a specific method. q to quit. l to list."
msgstr ""
#: Console/Command/ApiShell.php:119
msgid "Done"
msgstr ""
#: Console/Command/ApiShell.php:147
msgid "Either a full path or type of class (model, behavior, controller, component, view, helper)"
msgstr ""
#: Console/Command/ApiShell.php:149
msgid "A CakePHP core class name (e.g: Component, HtmlHelper)."
msgstr ""
#: Console/Command/ApiShell.php:152
msgid "The specific method you want help on."
msgstr ""
#: Console/Command/ApiShell.php:153
msgid "Lookup doc block comments for classes in CakePHP."
msgstr ""
#: Console/Command/ApiShell.php:190
msgid "Command %s not found"
msgstr ""
#: Console/Command/ApiShell.php:207
msgid "%s could not be found"
msgstr ""
#: Console/Command/BakeShell.php:92
msgid "Interactive Bake Shell"
msgstr ""
#: Console/Command/BakeShell.php:94
msgid "[D]atabase Configuration"
msgstr ""
#: Console/Command/BakeShell.php:95
msgid "[M]odel"
msgstr ""
#: Console/Command/BakeShell.php:96
msgid "[V]iew"
msgstr ""
#: Console/Command/BakeShell.php:97
msgid "[C]ontroller"
msgstr ""
#: Console/Command/BakeShell.php:98
msgid "[P]roject"
msgstr ""
#: Console/Command/BakeShell.php:99
msgid "[F]ixture"
msgstr ""
#: Console/Command/BakeShell.php:100
msgid "[T]est case"
msgstr ""
#: Console/Command/BakeShell.php:101
#: Console/Command/I18nShell.php:71
msgid "[Q]uit"
msgstr ""
#: Console/Command/BakeShell.php:103
msgid "What would you like to Bake?"
msgstr ""
#: Console/Command/BakeShell.php:129
msgid "You have made an invalid selection. Please choose a type of class to Bake by entering D, M, V, F, T, or C."
msgstr ""
#: Console/Command/BakeShell.php:197
msgid "<success>Bake All complete</success>"
msgstr ""
#: Console/Command/BakeShell.php:200
msgid "Bake All could not continue without a valid model"
msgstr ""
#: Console/Command/BakeShell.php:212
msgid "The Bake script generates controllers, views and models for your application. If run with no command line arguments, Bake guides the user through the class creation process. You can customize the generation process by telling Bake where different parts of your application are using command line arguments."
msgstr ""
#: Console/Command/BakeShell.php:217
msgid "Bake a complete MVC. optional <name> of a Model"
msgstr ""
#: Console/Command/BakeShell.php:219
msgid "Bake a new app folder in the path supplied or in current directory if no path is specified"
msgstr ""
#: Console/Command/BakeShell.php:222
msgid "Bake a new plugin folder in the path supplied or in current directory if no path is specified."
msgstr ""
#: Console/Command/BakeShell.php:225
msgid "Bake a database.php file in config directory."
msgstr ""
#: Console/Command/BakeShell.php:228
msgid "Bake a model."
msgstr ""
#: Console/Command/BakeShell.php:231
msgid "Bake views for controllers."
msgstr ""
#: Console/Command/BakeShell.php:234
msgid "Bake a controller."
msgstr ""
#: Console/Command/BakeShell.php:237
msgid "Bake a fixture."
msgstr ""
#: Console/Command/BakeShell.php:240
msgid "Bake a unit test."
msgstr ""
#: Console/Command/BakeShell.php:243
msgid "Database connection to use in conjunction with `bake all`."
msgstr ""
#: Console/Command/BakeShell.php:248
#: Console/Command/Task/ControllerTask.php:483
#: Console/Command/Task/FixtureTask.php:90
#: Console/Command/Task/ModelTask.php:998
#: Console/Command/Task/ProjectTask.php:437
#: Console/Command/Task/TestTask.php:566
#: Console/Command/Task/ViewTask.php:437
msgid "Theme to use when baking code."
msgstr ""
#: Console/Command/CommandListShell.php:45
msgid "<info>Current Paths:</info>"
msgstr ""
#: Console/Command/CommandListShell.php:51
msgid "<info>Changing Paths:</info>"
msgstr ""
#: Console/Command/CommandListShell.php:52
msgid "Your working path should be the same as your application path. To change your path use the '-app' param."
msgstr ""
#: Console/Command/CommandListShell.php:53
msgid "Example: %s or %s"
msgstr ""
#: Console/Command/CommandListShell.php:55
msgid "<info>Available Shells:</info>"
msgstr ""
#: Console/Command/CommandListShell.php:125
msgid "To run an app or core command, type <info>cake shell_name [args]</info>"
msgstr ""
#: Console/Command/CommandListShell.php:126
msgid "To run a plugin command, type <info>cake Plugin.shell_name [args]</info>"
msgstr ""
#: Console/Command/CommandListShell.php:127
msgid "To get help on a specific command, type <info>cake shell_name --help</info>"
msgstr ""
#: Console/Command/CommandListShell.php:164
msgid "Get the list of available shells for this CakePHP application."
msgstr ""
#: Console/Command/CommandListShell.php:166
msgid "Does nothing (deprecated)"
msgstr ""
#: Console/Command/CommandListShell.php:170
msgid "Get the listing as XML."
msgstr ""
#: Console/Command/ConsoleShell.php:91;250
msgid "Model classes:"
msgstr ""
#: Console/Command/ConsoleShell.php:99
msgid "There was an error loading the routes config. Please check that the file exists and contains no errors."
msgstr ""
#: Console/Command/ConsoleShell.php:212
msgid "Invalid command"
msgstr ""
#: Console/Command/ConsoleShell.php:277
msgid "Created %s association between %s and %s"
msgstr ""
#: Console/Command/ConsoleShell.php:280
msgid "Please verify you are using valid models and association types"
msgstr ""
#: Console/Command/ConsoleShell.php:314
msgid "Removed %s association between %s and %s"
msgstr ""
#: Console/Command/ConsoleShell.php:317
msgid "Please verify you are using valid models, valid current association, and valid association types"
msgstr ""
#: Console/Command/ConsoleShell.php:376
msgid "No result set found"
msgstr ""
#: Console/Command/ConsoleShell.php:379
msgid "%s is not a valid model"
msgstr ""
#: Console/Command/ConsoleShell.php:403
msgid "Saved record for %s"
msgstr ""
#: Console/Command/ConsoleShell.php:431
msgid "Please verify that you selected a valid model"
msgstr ""
#: Console/Command/ConsoleShell.php:442
msgid "There was an error loading the routes config. Please check that the file exists and is free of parse errors."
msgstr ""
#: Console/Command/ConsoleShell.php:444
msgid "Routes configuration reloaded, %d routes connected"
msgstr ""
#: Console/Command/I18nShell.php:66
msgid "<info>I18n Shell</info>"
msgstr ""
#: Console/Command/I18nShell.php:68
msgid "[E]xtract POT file from sources"
msgstr ""
#: Console/Command/I18nShell.php:69
msgid "[I]nitialize i18n database table"
msgstr ""
#: Console/Command/I18nShell.php:70
msgid "[H]elp"
msgstr ""
#: Console/Command/I18nShell.php:73
msgid "What would you like to do?"
msgstr ""
#: Console/Command/I18nShell.php:87
msgid "You have made an invalid selection. Please choose a command to execute by entering E, I, H, or Q."
msgstr ""
#: Console/Command/I18nShell.php:110
msgid "I18n Shell initializes i18n database table for your application and generates .pot files(s) with translations."
msgstr ""
#: Console/Command/I18nShell.php:112
msgid "Initialize the i18n table."
msgstr ""
#: Console/Command/I18nShell.php:114
msgid "Extract the po translations from your application"
msgstr ""
#: Console/Command/SchemaShell.php:112
msgid "Schema file (%s) could not be found."
msgstr ""
#: Console/Command/SchemaShell.php:123
msgid "Generating Schema..."
msgstr ""
#: Console/Command/SchemaShell.php:138
msgid "Schema file exists.\n [O]verwrite\n [S]napshot\n [Q]uit\nWould you like to do?"
msgstr ""
#: Console/Command/SchemaShell.php:192;195
msgid "Schema file: %s generated"
msgstr ""
#: Console/Command/SchemaShell.php:212
msgid "Schema could not be loaded"
msgstr ""
#: Console/Command/SchemaShell.php:236
msgid "SQL dump file created in %s"
msgstr ""
#: Console/Command/SchemaShell.php:239
msgid "SQL dump could not be created"
msgstr ""
#: Console/Command/SchemaShell.php:282
msgid "Performing a dry run."
msgstr ""
#: Console/Command/SchemaShell.php:294
msgid "The chosen schema could not be loaded. Attempted to load:"
msgstr ""
#: Console/Command/SchemaShell.php:295
msgid "File: %s"
msgstr ""
#: Console/Command/SchemaShell.php:296
msgid "Name: %s"
msgstr ""
#: Console/Command/SchemaShell.php:329;389
msgid "Schema is up to date."
msgstr ""
#: Console/Command/SchemaShell.php:333
msgid "The following table(s) will be dropped."
msgstr ""
#: Console/Command/SchemaShell.php:336
msgid "Are you sure you want to drop the table(s)?"
msgstr ""
#: Console/Command/SchemaShell.php:337
msgid "Dropping table(s)."
msgstr ""
#: Console/Command/SchemaShell.php:341
msgid "The following table(s) will be created."
msgstr ""
#: Console/Command/SchemaShell.php:344
msgid "Are you sure you want to create the table(s)?"
msgstr ""
#: Console/Command/SchemaShell.php:345
msgid "Creating table(s)."
msgstr ""
#: Console/Command/SchemaShell.php:348
msgid "End create."
msgstr ""
#: Console/Command/SchemaShell.php:362
msgid "Comparing Database to Schema..."
msgstr ""
#: Console/Command/SchemaShell.php:393
msgid "The following statements will run."
msgstr ""
#: Console/Command/SchemaShell.php:395
msgid "Are you sure you want to alter the tables?"
msgstr ""
#: Console/Command/SchemaShell.php:397
msgid "Updating Database..."
msgstr ""
#: Console/Command/SchemaShell.php:401
msgid "End update."
msgstr ""
#: Console/Command/SchemaShell.php:414
msgid "Sql could not be run"
msgstr ""
#: Console/Command/SchemaShell.php:422
msgid "%s is up to date."
msgstr ""
#: Console/Command/SchemaShell.php:425
msgid "Dry run for %s :"
msgstr ""
#: Console/Command/SchemaShell.php:443
msgid "%s updated."
msgstr ""
#: Console/Command/SchemaShell.php:458
msgid "The plugin to use."
msgstr ""
#: Console/Command/SchemaShell.php:462
msgid "Set the db config to use."
msgstr ""
#: Console/Command/SchemaShell.php:466
msgid "Path to read and write schema.php"
msgstr ""
#: Console/Command/SchemaShell.php:470
msgid "File name to read and write."
msgstr ""
#: Console/Command/SchemaShell.php:474
msgid "Classname to use. If its Plugin.class, both name and plugin options will be set."
msgstr ""
#: Console/Command/SchemaShell.php:478
msgid "Snapshot number to use/make."
msgstr ""
#: Console/Command/SchemaShell.php:482
msgid "Specify models as comma separated list."
msgstr ""
#: Console/Command/SchemaShell.php:485
msgid "Perform a dry run on create and update commands. Queries will be output instead of run."
msgstr ""
#: Console/Command/SchemaShell.php:490
msgid "Force \"generate\" to create a new schema"
msgstr ""
#: Console/Command/SchemaShell.php:494
msgid "Write the dumped SQL to a file."
msgstr ""
#: Console/Command/SchemaShell.php:497
msgid "Tables to exclude as comma separated list."
msgstr ""
#: Console/Command/SchemaShell.php:502
msgid "The Schema Shell generates a schema object from the database and updates the database from the schema."
msgstr ""
#: Console/Command/SchemaShell.php:504
msgid "Read and output the contents of a schema file"
msgstr ""
#: Console/Command/SchemaShell.php:510
msgid "Reads from --connection and writes to --path. Generate snapshots with -s"
msgstr ""
#: Console/Command/SchemaShell.php:514
msgid "Generate a snapshot."
msgstr ""
#: Console/Command/SchemaShell.php:518
msgid "Dump database SQL based on a schema file to stdout."
msgstr ""
#: Console/Command/SchemaShell.php:524
msgid "Drop and create tables based on the schema file."
msgstr ""
#: Console/Command/SchemaShell.php:529;542
msgid "Name of schema to use."
msgstr ""
#: Console/Command/SchemaShell.php:532;545
msgid "Only create the specified table."
msgstr ""
#: Console/Command/SchemaShell.php:537
msgid "Alter the tables based on the schema file."
msgstr ""
#: Console/Command/ServerShell.php:112
msgid "DocumentRoot: %s"
msgstr ""
#: Console/Command/ServerShell.php:123
msgid "<warning>This command is available on %s or above</warning>"
msgstr ""
#: Console/Command/ServerShell.php:135
msgid "built-in server is running in http://%s%s/"
msgstr ""
#: Console/Command/ServerShell.php:149
msgid "ServerHost"
msgstr ""
#: Console/Command/ServerShell.php:153
msgid "ListenPort"
msgstr ""
#: Console/Command/ServerShell.php:157
msgid "DocumentRoot"
msgstr ""
#: Console/Command/ServerShell.php:161
msgid "PHP Built-in Server for CakePHP"
msgstr ""
#: Console/Command/ServerShell.php:162
msgid "<warning>[WARN] Don't use this at the production environment</warning>"
msgstr ""
#: Console/Command/TestShell.php:48
#: Console/Command/TestsuiteShell.php:42
msgid "The CakePHP Testsuite allows you to run test cases from the command line"
msgstr ""
#: Console/Command/TestShell.php:50
msgid "The category for the test, or test file, to test."
msgstr ""
#: Console/Command/TestShell.php:53
msgid "The path to the file, or test file, to test."
msgstr ""
#: Console/Command/TestShell.php:56
msgid "<file> Log test execution in JUnit XML format to file."
msgstr ""
#: Console/Command/TestShell.php:59
msgid "<file> Log test execution in JSON format to file."
msgstr ""
#: Console/Command/TestShell.php:62
msgid "<file> Log test execution in TAP format to file."
msgstr ""
#: Console/Command/TestShell.php:65
msgid "Log test execution to DBUS."
msgstr ""
#: Console/Command/TestShell.php:68
msgid "<dir> Generate code coverage report in HTML format."
msgstr ""
#: Console/Command/TestShell.php:71
msgid "<file> Write code coverage data in Clover XML format."
msgstr ""
#: Console/Command/TestShell.php:74
msgid "<file> Write agile documentation in HTML format to file."
msgstr ""
#: Console/Command/TestShell.php:77
msgid "<file> Write agile documentation in Text format to file."
msgstr ""
#: Console/Command/TestShell.php:80
msgid "<pattern> Filter which tests to run."
msgstr ""
#: Console/Command/TestShell.php:83
msgid "<name> Only runs tests from the specified group(s)."
msgstr ""
#: Console/Command/TestShell.php:86
msgid "<name> Exclude tests from the specified group(s)."
msgstr ""
#: Console/Command/TestShell.php:89
msgid "List available test groups."