default.pot
28 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
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
msgid ""
msgstr ""
"Project-Id-Version: Ultimate Tinymce Lite\n"
"POT-Creation-Date: 2013-03-11 02:39-0500\n"
"PO-Revision-Date: 2013-03-11 02:39-0500\n"
"Last-Translator: Josh Lobe <joshlobe@joshlobe.com>\n"
"Language-Team: Josh Lobe <joshlobe@joshlobe.com>\n"
"Language: English\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.4\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: .\n"
#: admin_functions.php:13
#, php-format
msgid ""
"<span style=\"font-weight: bold; color:#00BF0C !important;\">Thank you for "
"choosing Ultimate Tinymce.</span><br />Interested in checking out the "
"features of the <a target=\"_blank\" href=\"http://ultimatetinymcepro.com"
"\">PRO Version</a>?<span style=\"margin-left:5px;\">Or... <a target=\"_blank"
"\" href=\"http://plugins.joshlobe.com/wp-content/plugins/wp-affiliate-"
"platform/affiliates/\">Become an Affiliate</a> and earn revenue from "
"referrals.</span><br /><br /><a href=\"admin.php?page=ultimate-tinymce%1$s"
"\">Hide this Message</a>"
msgstr ""
#: admin_functions.php:151
msgid "Number of posts to show:"
msgstr ""
#: admin_functions.php:199
msgid "Font Select Button"
msgstr ""
#: admin_functions.php:200
msgid "Font Size Button"
msgstr ""
#: admin_functions.php:201
msgid "Cut Button"
msgstr ""
#: admin_functions.php:202
msgid "Copy Button"
msgstr ""
#: admin_functions.php:203
msgid "Paste Button"
msgstr ""
#: admin_functions.php:204
msgid "Background Color Picker Button"
msgstr ""
#: admin_functions.php:205
msgid "Foreground Color Picker Button"
msgstr ""
#: admin_functions.php:206
msgid "Horizontal Rule Button"
msgstr ""
#: admin_functions.php:207
msgid "Visual Aid Button"
msgstr ""
#: admin_functions.php:208
msgid "Anchor Button"
msgstr ""
#: admin_functions.php:209
msgid "Subscript Button"
msgstr ""
#: admin_functions.php:210
msgid "Superscript Button"
msgstr ""
#: admin_functions.php:211
msgid "Search Button"
msgstr ""
#: admin_functions.php:212
msgid "Replace Button"
msgstr ""
#: admin_functions.php:213
msgid "Insert Date/Time Button"
msgstr ""
#: admin_functions.php:214
msgid "Insert Nonbreaking Button"
msgstr ""
#: admin_functions.php:215
msgid "Insert Mailto Button"
msgstr ""
#: admin_functions.php:216
msgid "Insert Layers Buttons"
msgstr ""
#: admin_functions.php:217
msgid "Insert Span Button"
msgstr ""
#: admin_functions.php:218
msgid "Insert Equation Button"
msgstr ""
#: admin_functions.php:219
msgid "Insert Encode/Decode Buttons"
msgstr ""
#: admin_functions.php:220
msgid "Insert Text Direction Buttons"
msgstr ""
#: admin_functions.php:221
msgid "EZ Image Button"
msgstr ""
#: admin_functions.php:222
msgid "Paragraph Tags Button"
msgstr ""
#: admin_functions.php:223
msgid "Line Break Button"
msgstr ""
#: admin_functions.php:224
msgid "TinyMCE Moxiecode Image Manager"
msgstr ""
#: admin_functions.php:235
msgid "Style Select Button"
msgstr ""
#: admin_functions.php:236
msgid "Table Controls Dropdown Button"
msgstr ""
#: admin_functions.php:237
msgid "Emotions Button"
msgstr ""
#: admin_functions.php:238
msgid "Advanced Image Button"
msgstr ""
#: admin_functions.php:239
msgid "Preview Button"
msgstr ""
#: admin_functions.php:240
msgid "Citations Button"
msgstr ""
#: admin_functions.php:241
msgid "Abbreviations Button"
msgstr ""
#: admin_functions.php:242
msgid "Acronym Button"
msgstr ""
#: admin_functions.php:243
msgid "Delete Button"
msgstr ""
#: admin_functions.php:244
msgid "Insert Button"
msgstr ""
#: admin_functions.php:245
msgid "Attributes Button"
msgstr ""
#: admin_functions.php:246
msgid "Styleprops Box"
msgstr ""
#: admin_functions.php:247
msgid "HTML Code Button"
msgstr ""
#: admin_functions.php:248
msgid "HTML Code Magic Button"
msgstr ""
#: admin_functions.php:249
msgid "HTML5 Tags Button"
msgstr ""
#: admin_functions.php:250
msgid "Insert Media Button"
msgstr ""
#: admin_functions.php:251
msgid "Insert YouTube Video Button"
msgstr ""
#: admin_functions.php:252
msgid "Insert YouTubeIframe Video Button"
msgstr ""
#: admin_functions.php:253
msgid "Image Map Editor Button"
msgstr ""
#: admin_functions.php:254
msgid "Toggle Visual Characters Button"
msgstr ""
#: admin_functions.php:255
msgid "Print Button"
msgstr ""
#: admin_functions.php:256
msgid "Shortcodes Button"
msgstr ""
#: admin_functions.php:257
msgid "Lorem Ipsum Button"
msgstr ""
#: admin_functions.php:258
msgid "W3C Validate Button"
msgstr ""
#: admin_functions.php:259
msgid "Cliker ClipArt"
msgstr ""
#: admin_functions.php:260
msgid "Accessibility Checker"
msgstr ""
#: admin_functions.php:261
msgid "Advanced Link Button"
msgstr ""
#: admin_functions.php:262
msgid "Clear Div Buttons"
msgstr ""
#: admin_functions.php:263
msgid "Enable NextPage (PageBreak) Button"
msgstr ""
#: admin_functions.php:274
msgid "WP Photo Album Plus"
msgstr ""
#: admin_functions.php:285
msgid "Change the color of the Editor."
msgstr ""
#: admin_functions.php:286
msgid "Add ID Column to page/post admin list."
msgstr ""
#: admin_functions.php:287
msgid "Allow shortcode usage in widget text areas."
msgstr ""
#: admin_functions.php:288
msgid "Use PHP Text Widget"
msgstr ""
#: admin_functions.php:289
msgid "Enable Line Break Shortcode"
msgstr ""
#: admin_functions.php:290
msgid "Enable Columns Shortcodes"
msgstr ""
#: admin_functions.php:291
msgid "Disable wpautop"
msgstr ""
#: admin_functions.php:292
msgid "Remove <b>p</b> and <b>br</b> quicktags"
msgstr ""
#: admin_functions.php:293
msgid "Save scrollbar position in editor"
msgstr ""
#: admin_functions.php:294
msgid "Add a Signoff Shortcode"
msgstr ""
#: admin_functions.php:305
msgid "Load editor-style.css file"
msgstr ""
#: admin_functions.php:306
msgid "Enable Ultimate Tinymce Excerpt Area"
msgstr ""
#: admin_functions.php:307
msgid "Disable content editor TEXT tab"
msgstr ""
#: admin_functions.php:308
msgid "Enable dashboard widget"
msgstr ""
#: admin_functions.php:309
msgid "Enable admin bar link"
msgstr ""
#: admin_functions.php:310
msgid "Enable content.css file"
msgstr ""
#: admin_functions.php:311
msgid "Disable all plugin \"beautifications\""
msgstr ""
#: admin_functions.php:312
msgid "Disable \"force\" refresh of tinymce"
msgstr ""
#: admin_functions.php:313
msgid "Disable \"force\" open kitchen sink"
msgstr ""
#: admin_functions.php:314
msgid "Enable QR (Quick Response) code on posts"
msgstr ""
#: admin_functions.php:315
msgid "Enable QR (Quick Response) code on pages"
msgstr ""
#: admin_functions.php:316 admin_functions.php:317 admin_functions.php:318
#: admin_functions.php:319
msgid " "
msgstr ""
#: admin_functions.php:330
msgid "Enable Over-Rides"
msgstr ""
#: admin_functions.php:331
msgid "Tinymce Background Color"
msgstr ""
#: admin_functions.php:332
msgid "Tinymce Font Color"
msgstr ""
#: admin_functions.php:333
msgid "Tinymce Font Size"
msgstr ""
#: admin_functions.php:334
msgid "Tinymce Default Font"
msgstr ""
#: admin_functions.php:335
msgid "Tinymce Line Height"
msgstr ""
#: admin_functions.php:336
msgid "Tinymce Text Direction"
msgstr ""
#: admin_functions.php:337
msgid "Tinymce Padding"
msgstr ""
#: admin_functions.php:338
msgid "Tinymce Margin"
msgstr ""
#: main.php:71
msgid "Settings"
msgstr ""
#: main.php:72
msgid "Support Forum"
msgstr ""
#: main.php:122
msgid ""
"This plugin requires WordPress version 3.3.1 or newer. Please upgrade your "
"WordPress installation or download an"
msgstr ""
#: main.php:122
msgid "older version of the plugin."
msgstr ""
#: main.php:210
msgid "Ultimate TinyMCE"
msgstr ""
#: main.php:243
msgid "Help Documentation"
msgstr ""
#: main.php:243
msgid ""
"<ul><li class=\"help_tab_list_image\">The best resource for expedited help "
"is my <a target=\"_blank\" href=\"http://www.forum.joshlobe.com/\">Support "
"Forum</a>.</li><li class=\"help_tab_list_image\">You can also visit the <a "
"target=\"_blank\" href=\"http://www.plugins.joshlobe.com/\">Plugin Page</a> "
"to read user comments.</ul>"
msgstr ""
#: main.php:244
msgid "Settings Page Tips"
msgstr ""
#: main.php:244
msgid ""
"Here are some important items to remember regarding the new settings page."
"<br /><ul><li class=\"help_tab_list_image\">Each option has a dedicated help "
"icon. Clicking the help icon (blue question mark) for a specific option "
"will open a new window with a unique help file.</li><li class="
"\"help_tab_list_image\">Boxes can be opened/closed and sorted by clicking "
"and dragging the box headers. Boxes can also be enabled/disabled via the "
"\"Screen Options\" tab in the upper-right corner.</li><li class="
"\"help_tab_list_image\">Set your screen layout to two columns (via Screen "
"Options) for best results.</li><li class=\"help_tab_list_image\">The \"Row "
"Selection\" button allows you to choose which row of the visual editor the "
"button will appear.</ul>"
msgstr ""
#: main.php:251
msgid ""
"Ultimate Tinymce Help<br /><br /><a target=\"_blank\" href=\"http://www."
"forum.joshlobe.com/\">Support Forum</a>"
msgstr ""
#: main.php:273 main.php:757
msgid "Buttons Group 1"
msgstr ""
#: main.php:274 main.php:758
msgid "Buttons Group 2"
msgstr ""
#: main.php:275
msgid "Other Plugins' Buttons"
msgstr ""
#: main.php:276
msgid "Miscellaneous Features"
msgstr ""
#: main.php:277 main.php:761
msgid "Admin Options"
msgstr ""
#: main.php:278
msgid "Content Editor (Tinymce) Over-rides"
msgstr ""
#: main.php:303
msgid "Ultimate Tinymce Admin Settings Page"
msgstr ""
#: main.php:308
msgid "Ultimate Tinymce "
msgstr ""
#: main.php:310
msgid "Admin Settings Page"
msgstr ""
#: main.php:335
msgid "Plugin Addons"
msgstr ""
#: main.php:336
msgid "Donations"
msgstr ""
#: main.php:337
msgid "Spread the Word"
msgstr ""
#: main.php:338
msgid "Getting Started"
msgstr ""
#: main.php:339
msgid "Admin Tips"
msgstr ""
#: main.php:340
msgid "Default Settings"
msgstr ""
#: main.php:341
msgid "Uninstall Plugin"
msgstr ""
#: main.php:348
msgid "Plugin Addons:"
msgstr ""
#: main.php:352
msgid ""
"These addons provide additional features for Ultimate TinyMCE. Click the "
"title to view the download page."
msgstr ""
#: main.php:358
msgid ""
"<a target=\"_blank\" title=\"Easily Integrate Google Webfonts into your "
"Website.\" href=\"http://www.plugins.joshlobe.com/ultimate-tinymce-google-"
"webfonts/\"><span style=\"font-family:'Unlock', cursive;\">Google Webfonts</"
"span></a>"
msgstr ""
#: main.php:359 main.php:378 main.php:397 main.php:416 main.php:440
#: main.php:460 main.php:479
msgid "(Toggle)"
msgstr ""
#: main.php:364 main.php:383 main.php:402 main.php:421 main.php:445
#: main.php:465
msgid "<span style=\"color:green;\">Activated</span>"
msgstr ""
#: main.php:367 main.php:386 main.php:405 main.php:424 main.php:448
#: main.php:468
msgid "<span style=\"color:red;\">Not Activated</span>"
msgstr ""
#: main.php:368
msgid ""
"Choose any combination of Google Webfonts, and add them to the font dropdown "
"selector.<br /><br />Fonts are rendered on both the editor screen, and to "
"all front-end viewers."
msgstr ""
#: main.php:377
msgid ""
"<a target=\"_blank\" title=\"Easily add custom styles to your content.\" "
"href=\"http://www.plugins.joshlobe.com/ultimate-tinymce-custom-styles/"
"\"><span style=\"font-family:'Unlock', cursive;\">Custom Styles</span></a>"
msgstr ""
#: main.php:387
msgid ""
"Define unlimited custom styles, and add them to the styleselect dropdown "
"list.<br /><br />Styles are rendered in both the editor screen and the front "
"end of the website."
msgstr ""
#: main.php:396
msgid ""
"<a target=\"_blank\" title=\"Add a list of over 80 predefined styles to your "
"editor.\" href=\"http://www.plugins.joshlobe.com/predefined-custom-styles/"
"\"><span style=\"font-family:'Unlock', cursive;\">Pre-Defined Styles</span></"
"a>"
msgstr ""
#: main.php:406
msgid ""
"A collection of my custom styles. No need to create your own.<br /><br /"
">Install this plugin and have instant access to over 80 custom styles (and "
"growing)."
msgstr ""
#: main.php:415
msgid ""
"<a target=\"_blank\" title=\"Apply six unique color settings to your admin "
"panel.\" href=\"http://www.plugins.joshlobe.com/wp-admin-colors/\"><span "
"style=\"font-family:'Unlock', cursive;\">WP Admin Colors</span></a>"
msgstr ""
#: main.php:425
msgid ""
"Here is a compliment to the color selection for the tinymce editor. This "
"addon will provide a choice of six unique stylesheets to apply to the entire "
"admin panel dashboard."
msgstr ""
#: main.php:439
msgid ""
"<a target=\"_blank\" title=\"Take powerful control over the visual tinymce "
"editor.\" href=\"http://www.plugins.joshlobe.com/ultimate-tinymce-advanced-"
"configuration/\"><span style=\"font-family:'Unlock', cursive;\">Advanced "
"Configuration</span></a>"
msgstr ""
#: main.php:449
msgid ""
"Take advanced control over your visual tinymce editor. Control settings "
"such as button placement, font sizes, date and time formats, and more."
msgstr ""
#: main.php:459
msgid ""
"<a target=\"_blank\" title=\"Take powerful control over the visual tinymce "
"editor.\" href=\"http://www.plugins.joshlobe.com/ultimate-tinymce-classes-"
"and-ids/\"><span style=\"font-family:'Unlock', cursive;\">Classes and IDs</"
"span></a>"
msgstr ""
#: main.php:469
msgid ""
"Ultimate Tinymce Classes and IDs is a plugin for WordPress TinyMCE which "
"enables the usage of CSS classes and CSS ids on any HTML element within "
"TinyMCE."
msgstr ""
#: main.php:469
msgid ""
"Together with an external CSS file, Ultimate Tinymce Classes and IDs bridges "
"the (visual) gap between the content entered through TinyMCE and the actual "
"output."
msgstr ""
#: main.php:478
msgid ""
"<a target=\"_blank\" title=\"Ultimate Tinymce PRO\" href=\"http://"
"ultimatetinymcepro.com\"><span style=\"font-family:'Unlock', cursive;"
"\">Ultimate Tinymce PRO</span></a>"
msgstr ""
#: main.php:481
msgid "New!"
msgstr ""
#: main.php:485
msgid ""
"Are you using the most advanced WP visual editor available? Get it today!"
msgstr ""
#: main.php:508
msgid "Donations:"
msgstr ""
#: main.php:512
msgid "Support the Developer"
msgstr ""
#: main.php:514
msgid ""
"Developing this awesome plugin took a lot of effort and time; months and "
"months of continuous voluntary unpaid work."
msgstr ""
#: main.php:525
msgid ""
"If you like this plugin or if you are using it for commercial websites, "
"please consider a donation to the author to help support future updates and "
"development."
msgstr ""
#: main.php:530
msgid ""
"<span class=\"content_wrapper_title\">Main uses of Donations</span><ul class="
"\"help_tab_list_image\"><li>Web Hosting Fees</li><li>Cable Internet Fees</"
"li><li>Time/Value Reimbursement</li><li>Motivation for Continuous "
"Improvements</li><li>Sunday Father-Daughter Day</li></ul>"
msgstr ""
#: main.php:534
msgid "Donate Securely via Paypal"
msgstr ""
#: main.php:552
msgid "Spread the Word:"
msgstr ""
#: main.php:556
msgid "Blog about this Plugin"
msgstr ""
#: main.php:564
msgid ""
"<ul class=\"help_tab_list_image\"><li>Do you like this plugin, and use it "
"regularly on your site?</li><li>Why not write a brief article recommending "
"it to your readers and other wordpress blogger buddies?</li><li>Include a "
"link to the plugin download page to make it easy for your readers to access."
"</li></ul>"
msgstr ""
#: main.php:570
msgid "Vote and Click Works"
msgstr ""
#: main.php:576
msgid ""
"Please take a few moments to visit the plugin download page to vote and "
"click \"Works\". You must have an account on wordpress to rate and vote. "
"Signing up is quick and easy.<br /><br />Also, each time a new plugin update "
"is available, it resets the \"Works\" count. So, please do this each time "
"you update the plugin.<br /><br /><a target=\"_blank\" href=\"http://"
"wordpress.org/extend/plugins/ultimate-tinymce/\">Ultimate Tinymce Wordpress "
"Page</a>"
msgstr ""
#: main.php:582
msgid "Twitter & Facebook"
msgstr ""
#: main.php:600
msgid "Getting Started:"
msgstr ""
#: main.php:604
msgid "Setting up the Admin Settings Page"
msgstr ""
#: main.php:615
msgid "Tips and Tricks for the Admin Panel"
msgstr ""
#: main.php:618
msgid ""
"<span class=\"content_wrapper_title\">Screen Options:</span><ul class="
"\"help_tab_list_image\"><li>Click the \"Screen Options\" tab in the upper-"
"right corner to enable further customization.</li><li>Decide which Meta-"
"Boxes to show or hide.</li><li>Selections are saved in the database.</li></"
"ul>"
msgstr ""
#: main.php:622
msgid ""
"<span class=\"content_wrapper_title\">Meta Boxes:</span><ul class="
"\"help_tab_list_image\"><li>Each Meta-Box can be clicked to collapse/expand "
"the contents of the box.</li><li>Boxes can be sorted by clicking and "
"dragging the title area to a new location.</li><li>Open/Closed status and "
"sorting arrangement are saved in the database. So each time the page is "
"visited; the last chosen layout remains.</li></ul>"
msgstr ""
#: main.php:626
msgid ""
"<span class=\"content_wrapper_title\">Button Row Selection:</span><ul class="
"\"help_tab_list_image\"><li>Each button from this plugin can be assigned to "
"one of the four rows of the editor.</li><li>For suggested best results, set "
"all buttons used in \"Group One Buttons\" to Row 3 and set all buttons used "
"in \"Group Two Buttons\" to Row 4. <em>This is only recommended, and not "
"mandatory.</em></li><li>If the buttons scroll off the editor screen, come "
"back here and select a different row for those buttons.</li></ul>"
msgstr ""
#: main.php:633
msgid "Load developers suggested settings."
msgstr ""
#: main.php:644
msgid "Uninstall Plugin & Delete Database Entries:"
msgstr ""
#: main.php:677
msgid "Need Support?"
msgstr ""
#: main.php:678
msgid "Dedicated Support Forum"
msgstr ""
#: main.php:679
msgid "Contact Me"
msgstr ""
#: main.php:680
msgid "Button Definitions"
msgstr ""
#: main.php:681
msgid "Other Plugin Features"
msgstr ""
#: main.php:685
msgid "Like to Follow?"
msgstr ""
#: main.php:686
msgid "Facebook"
msgstr ""
#: main.php:687
msgid "Twitter"
msgstr ""
#: main.php:688
msgid "YouTube"
msgstr ""
#: main.php:692
msgid "New Rating System!"
msgstr ""
#: main.php:694
msgid ""
"<a target=\"_blank\" href=\"http://wordpress.org/support/view/plugin-reviews/"
"ultimate-tinymce\"><strong>Ultimate Tinymce Ratings Page</strong></a><br /"
"><br />Wordpress has implemented a new plugin ratings system. Comments are "
"now required to \"justify\" a rating.<br /><br />Please visit the link above "
"and leave a rating and a comment to help others in the future."
msgstr ""
#: main.php:698
msgid "Want to Signup?"
msgstr ""
#: main.php:705
msgid "Subscribe to the Ultimate Tinymce Newsletter!"
msgstr ""
#: main.php:708
msgid "Name:"
msgstr ""
#: main.php:712
msgid "Email:"
msgstr ""
#: main.php:716
msgid "Subscribe"
msgstr ""
#: main.php:716
msgid "Unsubscribe"
msgstr ""
#: main.php:724
msgid ""
"Receive news about new features, links to tutorials and videos, and other "
"\"first-response\" emails regarding this plugin."
msgstr ""
#: main.php:728
msgid "Enjoy PRO Features?"
msgstr ""
#: main.php:729
msgid "Ultimate Tinymce PRO"
msgstr ""
#: main.php:755
msgid "Quick Navigation:"
msgstr ""
#: main.php:759
msgid "Other Buttons"
msgstr ""
#: main.php:760
msgid "Misc. Features"
msgstr ""
#: main.php:762
msgid "Editor Over-rides"
msgstr ""
#: main.php:796
msgid "Cheatin’ uh?"
msgstr ""
#: main.php:813
msgid "Update Buttons Group One Options"
msgstr ""
#: main.php:816
msgid "Buttons Group One Master Controls:"
msgstr ""
#: main.php:826 main.php:859
msgid "Export"
msgstr ""
#: main.php:828
msgid "Export Buttons Group One Settings:"
msgstr ""
#: main.php:830 main.php:863
msgid "Export Settings"
msgstr ""
#: main.php:846
msgid "Update Buttons Group Two Options"
msgstr ""
#: main.php:849
msgid "Buttons Group Two Master Controls:"
msgstr ""
#: main.php:861
msgid "Export Buttons Group Two Settings:"
msgstr ""
#: main.php:886
msgid "Update Tinymce Options"
msgstr ""
#: main.php:896
msgid "Other Plugins Buttons Master Controls:"
msgstr ""
#: main.php:904
msgid "Update Other Plugins Buttons Options"
msgstr ""
#: main.php:922
msgid "Update Miscellaneous Options"
msgstr ""
#: main.php:943
msgid "Update Admin Options"
msgstr ""
#: options_callback_functions.php:5 options_callback_functions.php:8
msgid ""
"<p><strong>Get detailed help for each button from the <a target=\"_blank\" "
"href=\"http://utmce.joshlobe.com/button-definitions/\">Ultimate Tinymce "
"Website</a></strong>.</p><p> <strong><u>Description</"
"u></strong><span style=\"margin-left:200px;\"><strong><u>Enable</u></"
"strong></span><span style=\"margin-left:20px;\"><strong><u>Image</u></"
"strong></span><span style=\"margin-left:50px;\"><strong><u>Row Selection</"
"u></strong></span></p>"
msgstr ""
#: options_callback_functions.php:11
msgid ""
"<p><strong>Get detailed help for each feature from the <a target=\"_blank\" "
"href=\"http://utmce.joshlobe.com/other-plugin-features/\">Ultimate Tinymce "
"Website</a></strong>.</p><p>Over-ride the settings for the content editor "
"(tinymce).</p><p>Consider this a \"last resort\". If nothing else works at "
"making the content editor replicate the front end of the website... these "
"settings will certainly do the trick.</p><br /><br />"
msgstr ""
#: options_callback_functions.php:14
msgid "These options will support other plugins' buttons, if installed."
msgstr ""
#: options_callback_functions.php:17 options_callback_functions.php:20
msgid ""
"<p><strong>Get detailed help for each feature from the <a target=\"_blank\" "
"href=\"http://utmce.joshlobe.com/other-plugin-features/\">Ultimate Tinymce "
"Website</a></strong>.</p>"
msgstr ""
#: options_callback_functions.php:425
msgid "Available Soon in Ultimate Tinymce PRO Version"
msgstr ""
#: options_callback_functions.php:917
msgid "Not Installed"
msgstr ""
#: options_callback_functions.php:938
msgid ""
"Don't miss the <a target=\"_blank\" href=\"http://www.plugins.joshlobe.com/"
"wp-admin-colors/\">WP Admin Colors</a> addon."
msgstr ""
#: options_callback_functions.php:954
msgid "Adds a button to \"break\" posts into multiple pages."
msgstr ""
#: options_callback_functions.php:960
msgid "Adds ID column to post/page admin list."
msgstr ""
#: options_callback_functions.php:966
msgid "Use all shortcodes in widget areas too."
msgstr ""
#: options_callback_functions.php:972
msgid "Adds a widget which can be used to insert PHP code."
msgstr ""
#: options_callback_functions.php:978
msgid "Simply use the <b>[break]</b> shortcode"
msgstr ""
#: options_callback_functions.php:984
msgid "Use to create magazine-style columns."
msgstr ""
#: options_callback_functions.php:990
msgid "Disables the WordPress <strong>wpautop()</strong> function."
msgstr ""
#: options_callback_functions.php:996
msgid "Removes the p and br tags from the text editor."
msgstr ""
#: options_callback_functions.php:1002
msgid "Restore scrollbar position after saving post/page content."
msgstr ""
#: options_callback_functions.php:1006
msgid ""
"Use the editor below to create content which can be inserted into a post/"
"page using the <b>[signoff]</b> shortcode."
msgstr ""
#: options_callback_functions.php:1013
msgid "If availble in your theme, loads the editor-style.css file."
msgstr ""
#: options_callback_functions.php:1018
msgid "Enables Ultimate Tinymce in the excerpt area of Posts."
msgstr ""
#: options_callback_functions.php:1023
msgid "Removes the TEXT tab from the content editor, rendering it unusuable"
msgstr ""
#: options_callback_functions.php:1028
msgid "Adds a dashboard widget with a News Feed from Ultimate Tinymce."
msgstr ""
#: options_callback_functions.php:1033
msgid ""
"Adds a link to the admin bar for quick access to the Tinymce Settings Page."
msgstr ""
#: options_callback_functions.php:1038
msgid "Click help icon for detailed information."
msgstr ""
#: options_callback_functions.php:1044
msgid "Removes all author plugin admin styling"
msgstr ""
#: options_callback_functions.php:1049
msgid "Disables the force caching of tinymce on page reload."
msgstr ""
#: options_callback_functions.php:1054
msgid "Disables the force open state of \"kitchen sink\" button."
msgstr ""
#: options_callback_functions.php:1060
msgid "Displays unique qr code at bottom of each post"
msgstr ""
#: options_callback_functions.php:1066
msgid "Displays unique qr code at bottom of each page"
msgstr ""
#: options_callback_functions.php:1111
msgid "Enable"
msgstr ""
#: options_callback_functions.php:1119 options_callback_functions.php:1122
msgid "Enter Hex Number (ex. #FFFFFF)"
msgstr ""
#: options_callback_functions.php:1130 options_callback_functions.php:1133
msgid "Enter Hex Number (ex. #000000)"
msgstr ""
#: options_callback_functions.php:1141 options_callback_functions.php:1144
msgid "Enter Font Size (ex. 12px, 14pt, 1.2em)"
msgstr ""
#: options_callback_functions.php:1149 options_callback_functions.php:1153
#: options_callback_functions.php:1157 options_callback_functions.php:1161
#: options_callback_functions.php:1165
msgid "Available in Ultimate Tinymce PRO Version"
msgstr ""
#: options_functions.php:865
msgid "ID"
msgstr ""
#: options_functions.php:894
msgid "Arbitrary text, HTML, or PHP Code"
msgstr ""
#: options_functions.php:896
msgid "Ultimate Tinymce PHP Widget"
msgstr ""
#: options_functions.php:931
msgid "Title:"
msgstr ""
#: options_functions.php:936
msgid "Automatically add paragraphs."
msgstr ""
#: options_functions.php:1151
msgid "Ultimate Tinymce Excerpt"
msgstr ""
#: includes/defaults.php:120
msgid "Load Default Settings"
msgstr ""
#: includes/defaults.php:125 includes/defaults.php:147
msgid ""
"You must also check the confirm box before default options will be loaded."
msgstr ""
#: includes/defaults.php:131
msgid ""
"<ul class=\"help_tab_list_image\"><li>Load developers suggested default "
"settings.</li><li>Basically, two additional rows will be added to the editor "
"(rows 3 and 4). Each with approximately 15 to 19 buttons each.</"
"li><li>Options are still freely customizable, and can be tweaked after "
"default settings are loaded.</li><li>Remember you might need to click the "
"\"show/hide kitchen sink\" button in row 1 of your editor to expand row 2 "
"buttons.</li></ul>"
msgstr ""
#: includes/defaults.php:135
msgid "<b>Please confirm before proceeding</b><br /><br />"
msgstr ""
#: includes/defaults.php:136
msgid "Load Defaults"
msgstr ""
#: includes/import_export.php:59 includes/import_export.php:163
msgid "Import"
msgstr ""
#: includes/import_export.php:61
msgid "Import Buttons Group One Settings"
msgstr ""
#: includes/import_export.php:65 includes/import_export.php:169
msgid "Import Settings"
msgstr ""
#: includes/import_export.php:67 includes/import_export.php:171
msgid "(Note: Reload page after import for settings to take affect)"
msgstr ""
#: includes/import_export.php:92 includes/import_export.php:196
msgid "Settings successfully imported.<br />Refresh page to see changes."
msgstr ""
#: includes/import_export.php:94 includes/import_export.php:98
#: includes/import_export.php:100 includes/import_export.php:198
#: includes/import_export.php:202 includes/import_export.php:204
msgid "Settings could not be imported:"
msgstr ""
#: includes/import_export.php:94 includes/import_export.php:198
msgid "Unzipping failed."
msgstr ""
#: includes/import_export.php:100 includes/import_export.php:204
msgid "Upload failed."
msgstr ""
#: includes/import_export.php:165
msgid "Import Buttons Group Two Settings"
msgstr ""
#: includes/uninstall.php:26
msgid "Uninstall Ultimate Tinymce"
msgstr ""
#: includes/uninstall.php:32 includes/uninstall.php:51
msgid ""
"You must also check the confirm box before options will be uninstalled and "
"deleted."
msgstr ""
#: includes/uninstall.php:37
msgid ""
"<ul class=\"help_tab_list_image\"><li>The options for this plugin are not "
"removed upon deactivation to ensure that no data is lost unintentionally.</"
"li><li>If you wish to remove all plugin information from your database be "
"sure to run this uninstall utility first.</li><li>This is a great way to "
"\"reset\" the plugin, in case you experience problems with the editor.</"
"li><li>This option is NOT reversible. Ultimate Tinymce plugin settings will "
"need to be re-configured if deleted.</li></ul>"
msgstr ""
#: includes/uninstall.php:39
msgid "Please confirm before proceeding<br /><br />"
msgstr ""
#: includes/uninstall.php:40
msgid "Uninstall"
msgstr ""