contact-form-7-to-database-extension.pot
23.6 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
# Copyright (C) 2015 Contact Form DB
# This file is distributed under the same license as the Contact Form DB package.
msgid ""
msgstr ""
"Project-Id-Version: Contact Form DB 2.9\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/contact-form-7-to-"
"database-extension\n"
"POT-Creation-Date: 2015-05-31 02:24:31+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
#: CF7DBOptionsManager.php:281 CF7DBPlugin.php:488
#: ExportToGoogleLiveData.php:31
msgid "You do not have sufficient permissions to access this page."
msgstr ""
#: CF7DBOptionsManager.php:306
msgid "System Settings"
msgstr ""
#: CF7DBOptionsManager.php:308
msgid "System"
msgstr ""
#: CF7DBOptionsManager.php:309
msgid "PHP Version"
msgstr ""
#: CF7DBOptionsManager.php:314
msgid ""
"(WARNING: This plugin may not work properly with versions earlier than PHP "
"5.2)"
msgstr ""
#: CF7DBOptionsManager.php:320
msgid "MySQL Version"
msgstr ""
#: CF7DBOptionsManager.php:325
msgid ""
"(WARNING: This plugin may not work properly with versions earlier than MySQL "
"5.0)"
msgstr ""
#: CF7DBOptionsManager.php:334
msgid "Settings"
msgstr ""
#: CF7DBOptionsManager.php:359
msgid "Save Changes"
msgstr ""
#: CF7DBOptionsManager.php:418 CF7DBPlugin.php:98
#: CFDBViewShortCodeBuilder.php:1221 CFDBViewShortCodeBuilder.php:1382
#: CFDBViewShortCodeBuilder.php:1464 CFDBViewShortCodeBuilder.php:1473
#: CFDBViewShortCodeBuilder.php:1519
msgid "true"
msgstr ""
#: CF7DBOptionsManager.php:419 CF7DBPlugin.php:100
#: CFDBViewShortCodeBuilder.php:1222 CFDBViewShortCodeBuilder.php:1463
#: CFDBViewShortCodeBuilder.php:1472 CFDBViewShortCodeBuilder.php:1520
msgid "false"
msgstr ""
#: CF7DBPlugin.php:54
msgid "Capture form submissions from Contact Form 7 Plugin"
msgstr ""
#: CF7DBPlugin.php:55
msgid "Capture form submissions from Fast Secure Contact Form Plugin"
msgstr ""
#: CF7DBPlugin.php:56
msgid "Capture form submissions from JetPack Contact Form"
msgstr ""
#: CF7DBPlugin.php:57
msgid "Capture form submissions from Gravity Forms"
msgstr ""
#: CF7DBPlugin.php:58
msgid "Capture form submissions from WR ContactForm"
msgstr ""
#: CF7DBPlugin.php:59
msgid "Capture form submissions from Quform"
msgstr ""
#: CF7DBPlugin.php:60
msgid "Capture form submissions from Ninja Forms"
msgstr ""
#: CF7DBPlugin.php:61
msgid "Capture form submissions from Caldera Forms"
msgstr ""
#: CF7DBPlugin.php:62
msgid "Capture form submissions from Enfold Theme"
msgstr ""
#: CF7DBPlugin.php:63
msgid "Can See Submission data"
msgstr ""
#: CF7DBPlugin.php:65
msgid "Allow only Administrators to see CFDB administration screens"
msgstr ""
#: CF7DBPlugin.php:66
msgid "Can See Submission when using shortcodes"
msgstr ""
#: CF7DBPlugin.php:68
msgid "Can Edit/Delete Submission data"
msgstr ""
#: CF7DBPlugin.php:70
msgid "Generate [submit_time] tag for Contact Form 7 email"
msgstr ""
#: CF7DBPlugin.php:71
msgid "Allow Any Function in Short Codes"
msgstr ""
#: CF7DBPlugin.php:72 CF7DBPlugin.php:74
msgid "(Creates a security hole)"
msgstr ""
#: CF7DBPlugin.php:73
msgid "Allow RSS URLs"
msgstr ""
#: CF7DBPlugin.php:75
msgid ""
"Timezone to capture Submit Time. Blank will use WordPress Timezone setting. "
"<a target=\"_blank\" href=\"http://www.php.net/manual/en/timezones.php"
"\">Options</a>"
msgstr ""
#: CF7DBPlugin.php:76
msgid "Maximum number of rows to retrieve from the DB for the Admin display"
msgstr ""
#: CF7DBPlugin.php:77
msgid "#Rows (of maximum above) visible in the Admin datatable"
msgstr ""
#: CF7DBPlugin.php:78
msgid "Use fixed width in Admin datatable"
msgstr ""
#: CF7DBPlugin.php:79
msgid "Use Javascript-enabled tables in Admin Database page"
msgstr ""
#: CF7DBPlugin.php:80
msgid "Show line breaks in submitted data table"
msgstr ""
#: CF7DBPlugin.php:81
msgid "Use Custom Date-Time Display Format (below)"
msgstr ""
#: CF7DBPlugin.php:82
msgid "Date-Time Display Format"
msgstr ""
#: CF7DBPlugin.php:83
msgid "Export URLs instead of file names for uploaded files"
msgstr ""
#: CF7DBPlugin.php:84
msgid "Do not save <u>fields</u> in DB named (comma-separated list, no spaces)"
msgstr ""
#: CF7DBPlugin.php:85
msgid "Do not save <u>forms</u> in DB named (comma-separated list, no spaces)"
msgstr ""
#: CF7DBPlugin.php:86
msgid "Save Cookie Data with Form Submissions"
msgstr ""
#: CF7DBPlugin.php:87
msgid ""
"Save only cookies in DB named (comma-separated list, no spaces, and above "
"option must be set to true)"
msgstr ""
#: CF7DBPlugin.php:88
msgid "Show the query used to display results"
msgstr ""
#: CF7DBPlugin.php:89
msgid "Error output file (full path) or email address"
msgstr ""
#: CF7DBPlugin.php:90
msgid "Drop this plugin's Database table on uninstall"
msgstr ""
#: CF7DBPlugin.php:103 CFDBViewShortCodeBuilder.php:1208
msgid "Administrator"
msgstr ""
#: CF7DBPlugin.php:105 CFDBViewShortCodeBuilder.php:1209
msgid "Editor"
msgstr ""
#: CF7DBPlugin.php:107 CFDBViewShortCodeBuilder.php:1210
msgid "Author"
msgstr ""
#: CF7DBPlugin.php:109 CFDBViewShortCodeBuilder.php:1211
msgid "Contributor"
msgstr ""
#: CF7DBPlugin.php:111 CFDBViewShortCodeBuilder.php:1212
msgid "Subscriber"
msgstr ""
#: CF7DBPlugin.php:113 CFDBViewShortCodeBuilder.php:1213
msgid "Anyone"
msgstr ""
#: CF7DBPlugin.php:494
msgid "Missing form parameters"
msgstr ""
#: CF7DBPlugin.php:498
msgid "No such file."
msgstr ""
#: CF7DBPlugin.php:555
msgid "Invalid: "
msgstr ""
#: CF7DBPlugin.php:558
msgid "Valid: "
msgstr ""
#: CF7DBPlugin.php:576
msgid "Checking for conflicting entries. This may take a few minutes."
msgstr ""
#: CF7DBPlugin.php:581
msgid "Phase 1 of 3..."
msgstr ""
#: CF7DBPlugin.php:583 CF7DBPlugin.php:589 CF7DBPlugin.php:595
msgid "Database entries fixed: "
msgstr ""
#: CF7DBPlugin.php:587
msgid "Phase 2 of 3..."
msgstr ""
#: CF7DBPlugin.php:593
msgid "Phase 3 of 3..."
msgstr ""
#. #-#-#-#-# plugin.pot (Contact Form DB 2.9) #-#-#-#-#
#. Plugin Name of the plugin/theme
#: CF7DBPlugin.php:865
msgid "Contact Form DB"
msgstr ""
#: CF7DBPlugin.php:914 CFDBViewShortCodeBuilder.php:1168
msgid "Short Code"
msgstr ""
#: CF7DBPlugin.php:922 CFDBViewImportCsv.php:72
msgid "Import"
msgstr ""
#: CF7DBPlugin.php:930
msgid "Options"
msgstr ""
#: CF7DBPlugin.php:991 ExportToHtmlTable.php:222
msgid "Delete"
msgstr ""
#: CF7DBPlugin.php:1248
msgid "Plugin should be updated: "
msgstr ""
#: CF7DBPlugin.php:1249
msgid "Current version: "
msgstr ""
#: CF7DBPlugin.php:1250
msgid "Minimum required version: "
msgstr ""
#: CF7DBPlugin.php:1251
msgid "Download the latest version"
msgstr ""
#: CFDBCheckZendFramework.php:72
msgid "Missing Zend Framework"
msgstr ""
#: CFDBIntegrationFSCF.php:52
msgid "Database"
msgstr ""
#: CFDBIntegrationFSCF.php:54
msgid "Database Options"
msgstr ""
#: CFDBIntegrationFSCF.php:56
msgid "Build Short Code"
msgstr ""
#: CFDBIntegrationFSCF.php:58
msgid "Reference"
msgstr ""
#: CFDBShortcodeExportUrl.php:57 CFDBViewImportCsv.php:115
#: CFDBViewWhatsInDB.php:240
msgid "Export"
msgstr ""
#: CFDBView.php:69
msgid "Rate this Plugin"
msgstr ""
#: CFDBView.php:75 CFDBViewShortCodeBuilder.php:131
#: CFDBViewShortCodeBuilder.php:1181
msgid "Documentation"
msgstr ""
#: CFDBView.php:81
msgid "Support"
msgstr ""
#: CFDBViewImportCsv.php:45
msgid "Import CSV File into Form"
msgstr ""
#: CFDBViewImportCsv.php:50
msgid "File"
msgstr ""
#: CFDBViewImportCsv.php:54
msgid "New Form"
msgstr ""
#: CFDBViewImportCsv.php:58
msgid "Existing Form"
msgstr ""
#: CFDBViewImportCsv.php:85
msgid "Rename Form"
msgstr ""
#: CFDBViewImportCsv.php:95
msgid "Rename"
msgstr ""
#: CFDBViewImportCsv.php:98
msgid "Backup Form to CSV File"
msgstr ""
#: CFDBViewImportCsv.php:100
msgid ""
"Backup a form into a CSV file that can be re-imported without loss of data."
msgstr ""
#: CFDBViewImportCsv.php:101
msgid "Limitation: this will not export file uploads."
msgstr ""
#: CFDBViewImportCsv.php:102
msgid ""
"Limitation: extremely large numbers of records in your form may cause the "
"export operation on your server to run out of memory, thereby not giving you "
"all the rows."
msgstr ""
#: CFDBViewImportCsv.php:117
msgid "Data Cleanup"
msgstr ""
#: CFDBViewImportCsv.php:118
msgid "Clean up data that can cause incorrect behavior"
msgstr ""
#: CFDBViewImportCsv.php:120
msgid "Clean up data"
msgstr ""
#: CFDBViewShortCodeBuilder.php:264 CFDBViewShortCodeBuilder.php:277
msgid "Error: \""
msgstr ""
#: CFDBViewShortCodeBuilder.php:266 CFDBViewShortCodeBuilder.php:279
msgid "\" should not contain double-quotes (\")"
msgstr ""
#: CFDBViewShortCodeBuilder.php:340
msgid "Error: no form is chosen"
msgstr ""
#: CFDBViewShortCodeBuilder.php:387
msgid ""
"Warning: \"search\" field ignored because FIELD is used (use one but not "
"both)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:408
msgid ""
"Error: \"FIELD\": if you provide a value for \"Start Row\" then you must "
"also provide a value for \"Num Rows\""
msgstr ""
#: CFDBViewShortCodeBuilder.php:413
msgid "Error: \"FIELD\": \"Num Rows\" must be a positive integer"
msgstr ""
#: CFDBViewShortCodeBuilder.php:421
msgid "Error: \"FIELD\": \"Start Row\" must be a positive integer"
msgstr ""
#: CFDBViewShortCodeBuilder.php:516
msgid "Error: [cfdb-html] has empty Template. It will not output anything. "
msgstr ""
#: CFDBViewShortCodeBuilder.php:590
msgid "Error: \"edit=true\" will not work properly when setting \"headers\" "
msgstr ""
#: CFDBViewShortCodeBuilder.php:770
msgid ""
"Warning: the function includes your WP login information. Avoid sharing it."
msgstr ""
#: CFDBViewShortCodeBuilder.php:777
msgid ""
"Error: WP User and Password are required for the Google Spreadsheet to pull "
"data from your WordPress site."
msgstr ""
#: CFDBViewShortCodeBuilder.php:780
msgid ""
"Because the generated URL would be too long, you must use this alternative "
"function and add its script to your Google Spreadsheet"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1074
msgid "Export and Short Code Builder"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1077
msgid "form"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1079 CFDBViewWhatsInDB.php:120
msgid "* Select a form *"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1089
msgid "Reset"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1097
msgid "Export File"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1101 CFDBViewShortCodeBuilder.php:1496
#: CFDBViewWhatsInDB.php:215
msgid "Excel CSV (UTF8-BOM)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1104 CFDBViewShortCodeBuilder.php:1499
#: CFDBViewWhatsInDB.php:218
msgid "Excel TSV (UTF16LE-BOM)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1107 CFDBViewShortCodeBuilder.php:1502
#: CFDBViewWhatsInDB.php:221
msgid "Plain CSV (UTF-8)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1110 CFDBViewShortCodeBuilder.php:1505
#: CFDBViewWhatsInDB.php:224
msgid "Excel CSV for Japanese (Shift-JIS)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1113 CFDBViewShortCodeBuilder.php:1508
#: CFDBViewWhatsInDB.php:212
msgid "Excel Internet Query"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1116 CFDBViewWhatsInDB.php:230
msgid "Google Spreadsheet Live Data"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1119
msgid "RSS"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1122 CFDBViewWhatsInDB.php:236
msgid "JSON"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1126
msgid "Item Title"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1132
msgid ""
"Provide a WP login for the Google Spreadsheet to use to connect to your WP "
"site"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1135
msgid ""
"Optional: provide a WP login for the link to work without being already "
"logged in"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1138
msgid "WP User"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1140
msgid "WP Password"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1142
msgid "Hide Credentials"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1146
msgid "Generated Export Link:"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1148
msgid "Enter this function into a cell in your Google Spreadsheet:"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1151
msgid "Generated Google Spreadsheet Function:"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1152 ExportToGoogleLiveData.php:170
msgid ""
"Replace <strong><password></strong> with your <em>WordPress</em> "
"password"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1154
msgid "Requires code installed in your Google Spreadsheet script editor."
msgstr ""
#: CFDBViewShortCodeBuilder.php:1155
msgid "Get code"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1156
msgid "See instructions."
msgstr ""
#: CFDBViewShortCodeBuilder.php:1171
msgid "* Select a short code *"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1187
msgid "Generated Short Code:"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1193
msgid "(Did you know: you can create your own short code)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1200
msgid "Security"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1203
msgid "role"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1216
msgid "permissionmsg"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1228
msgid "Which fields/columns do you want to display?"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1231
msgid "show"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1235 CFDBViewShortCodeBuilder.php:1243
#: CFDBViewShortCodeBuilder.php:1317 CFDBViewShortCodeBuilder.php:1615
msgid "field1,field2,field3"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1239
msgid "hide"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1248
msgid "Which rows/submissions do you want to display?"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1251
msgid "search"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1254 CFDBViewShortCodeBuilder.php:1569
msgid "search text"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1258
msgid "filter"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1277 CFDBViewShortCodeBuilder.php:1592
msgid "value"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1280 CFDBViewShortCodeBuilder.php:1595
msgid "Validate submit_time"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1281 CFDBViewShortCodeBuilder.php:1596
msgid "Formats"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1284 CFDBViewShortCodeBuilder.php:1599
msgid "filter expression"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1291
msgid "limit"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1294 CFDBViewShortCodeBuilder.php:1606
msgid "Num Rows"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1294 CFDBViewShortCodeBuilder.php:1295
#: CFDBViewShortCodeBuilder.php:1309 CFDBViewShortCodeBuilder.php:1606
#: CFDBViewShortCodeBuilder.php:1607
msgid "number"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1295 CFDBViewShortCodeBuilder.php:1607
msgid "Start Row (0)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1299
msgid "unbuffered"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1306
msgid "random"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1313
msgid "orderby"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1316 CFDBViewShortCodeBuilder.php:1614
msgid "field"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1320 CFDBViewShortCodeBuilder.php:1618
msgid "ASC"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1321 CFDBViewShortCodeBuilder.php:1619
msgid "DESC"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1327
msgid "Table Headers"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1331
msgid "Include Header Row"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1336
msgid "headers"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1340
msgid "display as"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1341
msgid "display value"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1344
msgid "field1=Display Name 1,field2=Display Name 2"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1349
msgid "HTML Table Formatting"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1352
msgid "id"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1355
msgid "HTML id"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1359
msgid "class"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1362
msgid "HTML class"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1366
msgid "style"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1369
msgid "CSS style"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1374
msgid "[cfdb-datatable] Options"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1377
msgid "edit"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1383
msgid "cells"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1388
msgid "dt_options"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1391
msgid "datatable options (JSON)"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1396
msgid "[cfdb-json] Options"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1399
msgid "var"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1402
msgid "JS var name"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1406
msgid "format"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1411
msgid "map"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1412
msgid "array"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1413
msgid "arraynoheader"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1419
msgid "[cfdb-value] Options"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1422
msgid "function"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1427
msgid "min"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1428
msgid "max"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1429
msgid "sum"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1430
msgid "mean"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1431
msgid "percent"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1436
msgid "delimiter"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1444
msgid "[cfdb-html] Options"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1447
msgid "filelinks"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1452
msgid "url"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1453
msgid "name"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1454
msgid "link"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1455
msgid "img"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1458
msgid "stripbr"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1467
msgid "wpautop"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1478
msgid "Template"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1482
msgid "Per-entry HTML using ${field name} variables"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1487
msgid "[cfdb-export-link] Options"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1490
msgid "enc"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1514
msgid "urlonly"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1525
msgid "linktext"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1535
msgid "Before"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1539
msgid "Optional HTML/Javascript before the short code output"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1543
msgid "After"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1547
msgid "Optional HTML/Javascript after the short code output"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1552
msgid "Transform"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1555
msgid "trans"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1559
msgid "PHP function or class"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1562
msgid "transform expression"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1566
msgid "tsearch"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1573
msgid "tfilter"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1603
msgid "tlimit"
msgstr ""
#: CFDBViewShortCodeBuilder.php:1611
msgid "torderby"
msgstr ""
#: CFDBViewWhatsInDB.php:43
msgid "No form submissions in the database"
msgstr ""
#: CFDBViewWhatsInDB.php:157
msgid "Google Login for Upload"
msgstr ""
#: CFDBViewWhatsInDB.php:166
msgid "Cannot perform operation because jQuery is not loaded in this page"
msgstr ""
#: CFDBViewWhatsInDB.php:170
msgid ""
"You will now be navigated to the builder page where it will generate a "
"function to place in your Google Spreadsheet"
msgstr ""
#: CFDBViewWhatsInDB.php:227
msgid "Google Spreadsheet"
msgstr ""
#: CFDBViewWhatsInDB.php:233
msgid "HTML"
msgstr ""
#: CFDBViewWhatsInDB.php:243
msgid "Advanced Export"
msgstr ""
#: CFDBViewWhatsInDB.php:254
msgid "Delete All This Form's Records"
msgstr ""
#: CFDBViewWhatsInDB.php:255
msgid "Are you sure you want to delete all the data for this form?"
msgstr ""
#: CFDBViewWhatsInDB.php:262
msgid "Remove _wpcf7 columns"
msgstr ""
#: CFDBViewWhatsInDB.php:273
msgid "Edit Data Mode"
msgstr ""
#: CFDBViewWhatsInDB.php:384
msgid "Did you know: This plugin captures data from both these plugins:"
msgstr ""
#: CFDBViewWhatsInDB.php:394
msgid ""
"Did you know: You can add this data to your posts and pages using these "
"shortcodes:"
msgstr ""
#: CFDBViewWhatsInDB.php:408
msgid "Would you like to help translate this plugin into your language?"
msgstr ""
#: CFDBViewWhatsInDB.php:410
msgid "How to create a translation"
msgstr ""
#: CFDBViewWhatsInDB.php:421
msgid "Query:"
msgstr ""
#: CFDBViewWhatsInDB.php:443
msgid "Cancel"
msgstr ""
#: CFDBViewWhatsInDB.php:445
msgid "Upload"
msgstr ""
#: CFDBViewWhatsInDB.php:453
msgid "Add Column"
msgstr ""
#: CFDBViewWhatsInDB.php:454
msgid "Delete Column"
msgstr ""
#: CFDBViewWhatsInDB.php:470
msgid "next »"
msgstr ""
#: CFDBViewWhatsInDB.php:471
msgid "« prev"
msgstr ""
#: CFDBViewWhatsInDB.php:488
msgid "Returned entries %s to %s of %s entries in the database"
msgstr ""
#: CFDBViewWhatsInDB.php:619 ExportToHtmlTable.php:137
msgid "All"
msgstr ""
#: ExportBase.php:339
msgid "You do not have sufficient permissions to access this data."
msgstr ""
#: ExportToGoogleLiveData.php:74
msgid ""
"Setting up a Google Spreadsheet to pull in data from WordPress requires "
"these manual steps:"
msgstr ""
#: ExportToGoogleLiveData.php:89
msgid "Log into Google Docs and create a new Google Spreadsheet"
msgstr ""
#: ExportToGoogleLiveData.php:103
msgid "Go to <strong>Tools</strong> menu -> <strong>Script Editor..."
msgstr ""
#: ExportToGoogleLiveData.php:117
msgid "Choose <strong>Spreadsheet</strong>"
msgstr ""
#: ExportToGoogleLiveData.php:132
msgid "Delete any text that is already there"
msgstr ""
#: ExportToGoogleLiveData.php:133
msgid "<strong>Copy</strong> the text from "
msgstr ""
#: ExportToGoogleLiveData.php:134
msgid "THIS SCRIPT FILE"
msgstr ""
#: ExportToGoogleLiveData.php:135
msgid "and <strong>paste</strong> it into the Google script editor"
msgstr ""
#: ExportToGoogleLiveData.php:151
msgid "<strong>Save</strong> the script"
msgstr ""
#: ExportToGoogleLiveData.php:167
msgid "Click on a cell A1 in the Spreadsheet (or any cell)"
msgstr ""
#: ExportToGoogleLiveData.php:168
msgid "Enter in the cell the formula:"
msgstr ""
#: ExportToGoogleLiveData.php:176
msgid ""
"Customize the output by creating a Google Spreadsheet Function call with "
"additional options"
msgstr ""
#: ExportToGoogleLiveData.php:189
msgid "How to Set up Google Spreadsheet to pull data from WordPress"
msgstr ""
#: ExportToGoogleSS.php:62
msgid "Login Failed"
msgstr ""
#: ExportToGoogleSS.php:101
msgid "New Google Spreadsheet"
msgstr ""
#: ExportToGoogleSS.php:110
msgid "Error"
msgstr ""
#: contact-form-7-db.php:21
msgid ""
"Error: plugin \"Contact Form to DB Extension\" requires a newer version of "
"PHP to be running."
msgstr ""
#: contact-form-7-db.php:22
msgid "Minimal version of PHP required: "
msgstr ""
#: contact-form-7-db.php:23
msgid "Your server's PHP version: "
msgstr ""
#. Plugin URI of the plugin/theme
msgid ""
"http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Save form submissions to the database from <a href=\"http://wordpress.org/"
"extend/plugins/contact-form-7/\">Contact Form 7</a>, <a href=\"http://"
"wordpress.org/extend/plugins/si-contact-form/\">Fast Secure Contact Form</"
"a>, <a href=\"http://wordpress.org/extend/plugins/jetpack/\">JetPack Contact "
"Form</a> and <a href=\"http://www.gravityforms.com\">Gravity Forms</a>. "
"Includes exports and short codes. | <a href=\"admin.php?"
"page=CF7DBPluginSubmissions\">Data</a> | <a href=\"admin.php?"
"page=CF7DBPluginShortCodeBuilder\">Short Codes</a> | <a href=\"admin.php?"
"page=CF7DBPluginSettings\">Settings</a> | <a href=\"http://cfdbplugin.com/"
"\">Reference</a>"
msgstr ""
#. Author of the plugin/theme
msgid "Michael Simpson"
msgstr ""