-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto-translation-strings.php
897 lines (897 loc) · 47 KB
/
auto-translation-strings.php
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
<?php
__("Page Not Found","Halfcreative");
__("Comments","Halfcreative");
__("Previous","Halfcreative");
__("Next","Halfcreative");
__("Our Blog","Halfcreative");
__("Your lovely Name","Halfcreative");
__("Tell us everything","Halfcreative");
__("Send","Halfcreative");
__("Search..","Halfcreative");
__("Go","Halfcreative");
__("Submit","Halfcreative");
__("Go To","Halfcreative");
__("Continue Reading..","Halfcreative");
__("Link","Halfcreative");
__("Optional image link.","Halfcreative");
__("Slider","Halfcreative");
__("Grid","Halfcreative");
__("List","Halfcreative");
__("Default post/page","Halfcreative");
__("Primary Color","Halfcreative");
__("Primary Font","Halfcreative");
__("Header Logo","Halfcreative");
__("General","Halfcreative");
__("This is the main site logo image. The image should be a .png file.","Halfcreative");
__("Favicon","Halfcreative");
__("This is the favicon for your site. The image can be a .jpg, .ico or .png with dimensions of 16x16px ","Halfcreative");
__("Custom Colors","Halfcreative");
__("Colors","Halfcreative");
__("In this page you can set alternative colors for the main colored elements in this theme. A primary color change option has been provided. To change the colors used on these primary elements simply write a new hex color reference number into the fields below or use the color picker which appears when the input field obtains focus. Once you have selected your desired colors make sure to save them by clicking the <b>Save All Changes</b> button at the bottom of the page. Then just refresh your page to see the changes.<br/><br/><b>Please Note:</b> Some of the colored elements in this theme may be made from images. It is not possible to change these elements via this page, instead such elements will need to be changed manually by opening the images/icons in an image editing program and manually changing their colors to match your theme's custom color scheme. <br/><br/>To return all colors to their default values at any time just hit the <b>Restore Default</b> link beneath each field.","Halfcreative");
__("Custom Fonts","Halfcreative");
__("Fonts","Halfcreative");
__("In this page you can set the typefaces to be used throughout the theme. For each elements listed below you can choose any front from the Google Web Font library. Once you have chosen a font from the list, you will see a preview of this font immediately beneath the list box. The icons on the right hand side of the font preview, indicate what weights are available for that typeface.<br/><br/><strong>R</strong> -- Regular,<br/><strong>B</strong> -- Bold,<br/><strong>I</strong> -- Italics,<br/><strong>BI</strong> -- Bold Italics<br/><br/>When decideing what font to use, ensure that the chosen font contains the font weight required by the element. For example, main headings are bold, so you need to select a new font for these elements which supports a bold font weight. If you select a font which does not have a bold icon, the font will not be applied. <br/><br/>Browse the online <a href='http://www.google.com/webfonts'>Google Font Library</a><br/><br/><b>Custom fonts</b> (Advanced Users):<br/> Other then those available from Google fonts, custom fonts may also be applied to the elements listed below. To do this an additional field is provided below the google fonts list. Here you may enter the details of a font family, size, line-height etc. for a custom font. This information is entered in the form of the shorthand 'font:' CSS declaration, for example:<br/><br/><b>bold italic small-caps 1em/1.5em arial,sans-serif</b><br/><br/>If a font is specified in this field then the font listed in the Google font drop menu above will not be applied to the element in question. If you wish to use the Google font specified in the drop down list and just specify a new font size or line height, you can do so in this field also, however the name of the Google font <b>MUST</b> also be entered into this field. You may need to visit the Google fonts web page to find the exact CSS name for the font you have chosen.","Halfcreative");
__("Footer Logo","Halfcreative");
__("Footer","Halfcreative");
__("This is the footer logo image. The image should be a .png file.","Halfcreative");
__("Twitter","Halfcreative");
__("LinkedIn","Halfcreative");
__("Facebook","Halfcreative");
__("Dribbble","Halfcreative");
__("Behance","Halfcreative");
__("Widget Areas","Halfcreative");
__("Create new widget areas by entering the area name and clicking the add button. The new widget area will appear in the table below. Once a widget area has been created, widgets may be added via the widgets page.","Halfcreative");
__("Content","Halfcreative");
__("Custom 404","Halfcreative");
__("Content of 404 (not found) page","Halfcreative");
__("Width","Halfcreative");
__("Leave empty to use default width.","Halfcreative");
__("Height","Halfcreative");
__("Leave empty to avoid image cropping. When empty, all the (original) images must have the same size for the slider to work correctly.","Halfcreative");
__("Settings.","Halfcreative");
__("Logo","Halfcreative");
__("The image should be a .png file.","Halfcreative");
__("Background","Halfcreative");
__("Background images.","Halfcreative");
__("Headlines","Halfcreative");
__("Add one or more headlines to be shown above the home backgaround.","Halfcreative");
__("We are Design","Halfcreative");
__("We are Code","Halfcreative");
__("We are Video","Halfcreative");
__("We are Friendly","Halfcreative");
__("We are what you need","Halfcreative");
__("Label Text","Halfcreative");
__("If empty, hides the label.","Halfcreative");
__("See what we do","Halfcreative");
__("Label Url","Halfcreative");
__("Project Link","Halfcreative");
__("Label","Halfcreative");
__("Optional project link label.","Halfcreative");
__("Visit website","Halfcreative");
__("Url","Halfcreative");
__("Optional project link url, leave empty to hide.","Halfcreative");
__("Staff","Halfcreative");
__("Subtitle","Halfcreative");
__("Add one or more staff member.","Halfcreative");
__("Contact Options","Halfcreative");
__("Info","Halfcreative");
__("Contact Info.","Halfcreative");
__("Mail Sent Message","Halfcreative");
__("Message shown when form message has been sent without errors","Halfcreative");
__("Form Error Message","Halfcreative");
__("Message shown when form message encountered errors","Halfcreative");
__("Subtitle text.","Halfcreative");
__("Image","Halfcreative");
__("Select a background image.","Halfcreative");
__("This option controls the backgrounds type.<br/><span><strong>Default</strong> uses global setting (defined in theme options).<br/></span><strong>Custom</strong> means use custom settings and <br/><strong>None</strong> disables the custom background component.","Halfcreative");
__("Default","Halfcreative");
__("Custom","Halfcreative");
__("None","Halfcreative");
__("Type","Halfcreative");
__("<strong>Image</strong> means you can select a static image,<br/><strong>Slider</strong> means a background image will be set according to the current slide as shown in the first slider of that page,<br/><strong>Gallery</strong> means a slideshow is displayed of a selected gallery's images.<br/>These may be overwritten on a page by page basis by setting different background options in specific pages.","Halfcreative");
__("Gallery","Halfcreative");
__("Mobile","Halfcreative");
__("Static image for mobile.","Halfcreative");
__("Overlay","Halfcreative");
__("This option allows a tiled pattern overlay to be applied to the background.","Halfcreative");
__("Pattern","Halfcreative");
__("Select a background pattern tile.","Halfcreative");
__("Enabled","Halfcreative");
__("Disabled","Halfcreative");
__("This option controls the default background.","Halfcreative");
__("Blog","Halfcreative");
__("Layout","Halfcreative");
__("Select the required post layout. 'Full' - denotes a full width normal blog layout. 'Compact' - denotes a full width list style layout. 'Mini' - denotes a compressed layout with small post thumbnails.","Halfcreative");
__("Max Posts","Halfcreative");
__("Maximum number of posts to show.","Halfcreative");
__("Show Media","Halfcreative");
__("Specify if the post's image/video/gallery media is displayed.","Halfcreative");
__("Paged Result","Halfcreative");
__("Display a pager when more posts are found than specified in the 'Maximum' field. ","Halfcreative");
__("Include Sticky Posts","Halfcreative");
__("Include sticky posts in the displayed list.","Halfcreative");
__("Category","Halfcreative");
__("Only show posts from a specific category.","Halfcreative");
__("All","Halfcreative");
__("Tag","Halfcreative");
__("Only show posts with a specific tag.","Halfcreative");
__("Post Format","Halfcreative");
__("Only show posts of a specific format.","Halfcreative");
__("Contact Form","Halfcreative");
__("Yes","Halfcreative");
__("No","Halfcreative");
__("Don't Auto Rotate Slides","Halfcreative");
__("Icon Type","Halfcreative");
__("Select the desired icon type. See the help documentation for a link to view the available icons","Halfcreative");
__("Use Gallery","Halfcreative");
__("Select which gallery to use as content. For a gallery to appear in this list it must first be created. See the help documentation section on 'Creating a Gallery Custom Post Type'","Halfcreative");
__("Slider Type","Halfcreative");
__("Time in seconds before the slider rotates to next slide","Halfcreative");
__("Slider Options","Halfcreative");
__("Delay","Halfcreative");
__("Google Map","Halfcreative");
__("Show Google Map","Halfcreative");
__("Specify whether or not to show the Google map","Halfcreative");
__("Latitude","Halfcreative");
__("Latitudinal location for the map center. See the help documentation for a link to a utility used to convert addresses into lat/long numbers","Halfcreative");
__("Longitude","Halfcreative");
__("Longitudinal location for the map center. See the help documentation for a link to a utility used to convert addresses into lat/long numbers","Halfcreative");
__("Zoom Level","Halfcreative");
__("Enter the zoom level of the map upon page load. The user is then free to adjust this zoom level using the map UI","Halfcreative");
__("Map Marker Title","Halfcreative");
__("Enter a title for the map marker flyout","Halfcreative");
__("Map Marker Description","Halfcreative");
__("Enter a description for the map marker flyout","Halfcreative");
__("FILL","Halfcreative");
__("FIT","Halfcreative");
__("Top Left","Halfcreative");
__("Top Center","Halfcreative");
__("Top Right","Halfcreative");
__("Center Left","Halfcreative");
__("Center Center","Halfcreative");
__("Center Right","Halfcreative");
__("Bottom Left","Halfcreative");
__("Bottom Center","Halfcreative");
__("Bottom Right","Halfcreative");
__("Scale Mode","Halfcreative");
__("This setting determins how the images are scaled / cropped when displayed in the browser window.\"<strong>Fit</strong>\" fits the whole image into the browser ignoring surrounding space.\"<strong>Fill</strong>\" fills the whole browser area by cropping the image if necessary","Halfcreative");
__("Image Alignment","Halfcreative");
__("Specify the alignment to be used in the event of the image being cropped. Use this to ensure that important parts of the image can be always seen.","Halfcreative");
__("Image Options","Halfcreative");
__("Transition","Halfcreative");
__("Transition type","Halfcreative");
__("Random","Halfcreative");
__("Cube Horizontal","Halfcreative");
__("Cube Vertical","Halfcreative");
__("Fade","Halfcreative");
__("Slice Horizontal","Halfcreative");
__("Slice Vertical","Halfcreative");
__("Slide Horizontal","Halfcreative");
__("Slide Vertical","Halfcreative");
__("Scale","Halfcreative");
__("Block scale","Halfcreative");
__("Kaleidoscope","Halfcreative");
__("Fan","Halfcreative");
__("Blind Horizontal","Halfcreative");
__("Blind Vertical","Halfcreative");
__("Portfolio","Halfcreative");
__("Columns","Halfcreative");
__("Specify the layout arrangement of columns for the project items. ","Halfcreative");
__("Single column (no grid)","Halfcreative");
__("2 Columns","Halfcreative");
__("3 Columns","Halfcreative");
__("4 Columns","Halfcreative");
__("6 Columns","Halfcreative");
__("Allow Filtering","Halfcreative");
__("Specify if the project filter keywords are shown in this page. ","Halfcreative");
__("Max Project","Halfcreative");
__("Maximum number of project to show, leave empty for unlimited.","Halfcreative");
__("Selection","Halfcreative");
__("Using this control, you can manually pick individual projects to be included in the portfolio. If you also want projects to be shown in the same order as listed here, make sure no 'tag' is selected in the next field.","Halfcreative");
__("Only Include Projects With The Following Tags","Halfcreative");
__("Only include projects in this page based on specific keywords/tags. ","Halfcreative");
__("Table Properties","Halfcreative");
__("Title","Halfcreative");
__("Table title. ","Halfcreative");
__("Package One","Halfcreative");
__("Price Box","Halfcreative");
__("Price box content, can be html.","Halfcreative");
__("<h2><span>\$199</span> Plus monthly free</h2>","Halfcreative");
__("Features","Halfcreative");
__("Add one or more features.","Halfcreative");
__("Feature 1","Halfcreative");
__("Feature 2","Halfcreative");
__("Feature 3","Halfcreative");
__("Button Label","Halfcreative");
__("Sign Up","Halfcreative");
__("Button Link","Halfcreative");
__("Pricing Tables","Halfcreative");
__("Tables","Halfcreative");
__("Add one or more pricing tables.","Halfcreative");
__("Show Labels","Halfcreative");
__("If set to \"YES\", the first table will be used to show property labels.","Halfcreative");
__("Starter","Halfcreative");
__("Which table should be highlighted as \"Starter\" pack, \"1\" = highlight first table.","Halfcreative");
__("Popular","Halfcreative");
__("Which table should be highlighted as \"Popular\" pack, \"1\" = highlight first table.","Halfcreative");
__("Project","Halfcreative");
__("Specify a project subtitle. This will be shown on the portfolio single column page as well as the single project pages. ","Halfcreative");
__("Icon","Halfcreative");
__("Select an icon which represents the contents or theme of this project. This icon will be shown on all portfolio and project pages. ","Halfcreative");
__("Film","Halfcreative");
__("Video","Halfcreative");
__("Music","Halfcreative");
__("File","Halfcreative");
__("Review","Halfcreative");
__("Thumbnails","Halfcreative");
__("Book","Halfcreative");
__("Photography","Halfcreative");
__("Typography","Halfcreative");
__("Private","Halfcreative");
__("Event","Halfcreative");
__("Commentary","Halfcreative");
__("Announcement","Halfcreative");
__("Business","Halfcreative");
__("World","Halfcreative");
__("Location","Halfcreative");
__("Illustration","Halfcreative");
__("Person","Halfcreative");
__("Select project layout.","Halfcreative");
__("Featured Project","Halfcreative");
__("Select the project you wish to be featured. (Shown full width at top of page)","Halfcreative");
__("Quote Options","Halfcreative");
__("Text content of the quote box. ( Basic HTML is supported )","Halfcreative");
__("Cite","Halfcreative");
__("Quote cite","Halfcreative");
__("No sidebar","Halfcreative");
__("Sidebar","Halfcreative");
__("Select which sidebar to use","Halfcreative");
__("Youtube","Halfcreative");
__("Vimeo","Halfcreative");
__("Mp4","Halfcreative");
__("Ogg","Halfcreative");
__("Webm","Halfcreative");
__("Video Type","Halfcreative");
__("Select which type of video you would like to insert.","Halfcreative");
__("Video Url","Halfcreative");
__("Insert here the youtube/vimeo video url.","Halfcreative");
__("Available Formats","Halfcreative");
__("Some browsers require a video to be uploaded in a specific format. Select the formats uploaded from this list so that they can be served to visitors using those browsers.","Halfcreative");
__("Placeholder Image","Halfcreative");
__("This is the image which will be used as the video cover and will disappear once the video begins playing. Enter here the link to this image or click the upload button to upload an image using the WordPress media loader","Halfcreative");
__("<a href=\"%s\">Create a new Video</a>","Halfcreative");
__("Select which video to use","Halfcreative");
__("Use video","Halfcreative");
__("Video Options","Halfcreative");
__("Play fullscreen","Halfcreative");
__("Specify if video should play in a fullscreen lightbox window.","Halfcreative");
__("Click text box for color picker. %sRestore default%s","Halfcreative");
__("Drop files here","Halfcreative");
__("or","Halfcreative");
__("Select Files","Halfcreative");
__("Allowed Files","Halfcreative");
__("%sEdit with the HTML Editor%s","Halfcreative");
__("Import Demo Content","Halfcreative");
__("Importing content, please wait - Do not close the page until the process ends.","Halfcreative");
__("Demo content successfully imported.","Halfcreative");
__("Error occurred while importing the data","Halfcreative");
__("Add new","Halfcreative");
__("Size","Halfcreative");
__("Change Image","Halfcreative");
__("Theme Options","Halfcreative");
__("No Tags","Halfcreative");
__("Tags","Halfcreative");
__("You don't have sufficient permissions","Halfcreative");
__("No categories","Halfcreative");
__("You must be <a href=\"%s\">logged in</a> to post a comment.","Halfcreative");
__("Logged in as <a href=\"%1\$s\">%2\$s</a>. <a href=\"%3\$s\" title=\"Log out of this account\">Log out?</a>","Halfcreative");
__("Your comment is awaiting moderation.","Halfcreative");
__("<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>","Halfcreative");
__("%1\$s at %2\$s","Halfcreative");
__("(Edit)","Halfcreative");
__("more","Halfcreative");
__("Main menu","Halfcreative");
__("Pixelentity (slide, touchenabled)","Halfcreative");
__("Branding","Halfcreative");
__("Will import all demo data, including menus, sidebars, widgets and configuration","Halfcreative");
__("Custom CSS","Halfcreative");
__("Here you can enter custom CSS selectors to add to or overwrite the theme's default CSS styles. See the help documentation for some code snippets which can be pasted here","Halfcreative");
__("Custom JS","Halfcreative");
__("Here you can enter custom javascript code and it will be added to the theme's existing javascript code","Halfcreative");
__("Custom Admin Panel Logo","Halfcreative");
__("Enter the url of the logo you would like to be displayed in this theme's custom options panel. The image should be aprox. 170x50px .png file. This field is hidden to prevent further rebranding. See the help docs for more info.","Halfcreative");
__("Custom Admin Panel Url","Halfcreative");
__("This is the link which will be added to the theme options panel's custom logo. This field is also hidden","Halfcreative");
__("Lazy Loading","Halfcreative");
__("Advanced","Halfcreative");
__("If set to \"YES\", enables Lazy Loading. All image assets are loaded upon page load, with Lazy Loading enabled, images are only loaded once they are needed. Page loads faster and rendering requires less cpu , which is especially useful in mobile and tablet devices.","Halfcreative");
__("Enable Javascript Compression","Halfcreative");
__("If set to \"YES\", a single compressed javascript file will be loaded instead of multiple ones: site will load faster but any customization you made to theme javascript sources will be ignored","Halfcreative");
__("Enable CSS Compression","Halfcreative");
__("If set to \"YES\", a single compressed css file will be loaded instead of multiple ones: site will load faster but any customization you made to style.css or other theme stylesheet will be ignored","Halfcreative");
__("Show Thumbnails","Halfcreative");
__("If set to \"YES\", shows thumbnails (featured images) in admin post list view.","Halfcreative");
__("Enable Quick Browse Mode","Halfcreative");
__("If set to \"YES\", a new tab will appear in the default WordPress media uploader. This tab, named \"Quick Browse\" will display a filterable thumbnail grid of all uploaded media content. Media may be selected from this grid and added to galleries, posts and pages. When disabled, some functions related Galleries managment won't be available.","Halfcreative");
__("Make Quick Browse the Default Tab","Halfcreative");
__("If set to \"YES\" the default WordPress Media Loader's dialog will display this \"Quick Browse\" mode as its default tab.","Halfcreative");
__("Email Address","Halfcreative");
__("Enter the email address where the contact form emails will be sent. If this field is left blank, the Admin email address will be used. The Admin email address is that entered in General Settings > Email Address.","Halfcreative");
__("Subject Line","Halfcreative");
__("Enter a custom subject line which will appear on all email sent from the contact form. This is useful when setting up email filters.","Halfcreative");
__("Check for Theme Updates","Halfcreative");
__("Auto Update","Halfcreative");
__("Specify if theme should automatically check for updates.","Halfcreative");
__("Envato Username","Halfcreative");
__("Insert your Envato Username (account used to purchase this theme).","Halfcreative");
__("API Key","Halfcreative");
__("Insert your API Key %swhich can be obtained here%s. (Generate one if none available)","Halfcreative");
__("Enable NextGen Plugin Integration","Halfcreative");
__("NextGen","Halfcreative");
__("If you have installed the NextGEN Gallery plugin, this option will enable it to be auto configured. See help docs for more info.","Halfcreative");
__("Gallery columns","Halfcreative");
__("Select the number of columns to be shown in the NextGen galleries","Halfcreative");
__("SAVE AND CLOSE","Halfcreative");
__("Here you can add a custom font declaration, useful when you want to change size or use a common (not google) font.<br/>Example: <b>15px arial,sans-serif</b>","Halfcreative");
__("Media Tags","Halfcreative");
__("Media Tag","Halfcreative");
__("Search Media Tags","Halfcreative");
__("Popular Media Tags","Halfcreative");
__("All Media Tags","Halfcreative");
__("Parent Media Tag","Halfcreative");
__("Parent Media Tag:","Halfcreative");
__("Edit Media Tag","Halfcreative");
__("Update Media Tag","Halfcreative");
__("Add New Media Tag","Halfcreative");
__("New Media Tag Name","Halfcreative");
__("Galleries","Halfcreative");
__("Add New Gallery","Halfcreative");
__("Search Galleries","Halfcreative");
__("Popular Galleries","Halfcreative");
__("All Galleries","Halfcreative");
__("Parent Gallery","Halfcreative");
__("Parent Gallery:","Halfcreative");
__("Edit Gallery","Halfcreative");
__("Update Gallery","Halfcreative");
__("New Gallery Name","Halfcreative");
__("Direct Upload","Halfcreative");
__("Media Tag (any)","Halfcreative");
__("<strong>Media Tag</strong> includes all the already uploaded images that match the selected media tags. See the help documentation for an explanation of Media Tags","Halfcreative");
__("Images","Halfcreative");
__("<strong>Direct upload</strong> lets you add images by dragging and dropping them directly from your computer.<br/>","Halfcreative");
__("Sorting","Halfcreative");
__("Newest First","Halfcreative");
__("Manual","Halfcreative");
__("The list on the left shows all existing media tags. These tags are automatically added to uploaded content to allow for easy reuse and organisation of all media content. Select the tags from which you would like to include their related media, in this gallery. Once you have made your selection, click the \"Refresh\" button in the \"Gallery Content\" section below. See the help documentation for a detailed explanation of Media Tags","Halfcreative");
__("Upload Gallery Images","Halfcreative");
__("Add one or more media tags","Halfcreative");
__("Gallery Options","Halfcreative");
__("Show Images As","Halfcreative");
__("Specify how the gallery's content images will be displayed","Halfcreative");
__("Thumbnails grid","Halfcreative");
__("Fullscreen lightbox","Halfcreative");
__("Single images","Halfcreative");
__("Maximum number of thumbnails to show in the main page. Regardless this setting, all gallery images would still be shown inside the lightbox window.","Halfcreative");
__("Lightbox Gallery Transition","Halfcreative");
__("Choose image transition when viewed inside the lightbox: <strong>Slide</strong> Slides left/right. <strong>Shutter</strong> Black and white zoom effect.","Halfcreative");
__("Slide","Halfcreative");
__("Shutter","Halfcreative");
__("Black & White","Halfcreative");
__("Enable Black & White effect.","Halfcreative");
__("yes","Halfcreative");
__("no","Halfcreative");
__("This setting determins how the images are scaled / cropped when displayed in the browser window.\"<strong>Fit</strong>\" fits the whole image into the browser ignoring surrounding space.\"<strong>Fill</strong>\" fills the whole browser area by cropping the image if necessary. The Max version will also upscale the image.","Halfcreative");
__("Fit","Halfcreative");
__("Fit (Max)","Halfcreative");
__("Fill","Halfcreative");
__("Fill (Max)","Halfcreative");
__("Not Tagged","Halfcreative");
__("No galleries defined, please create one","Halfcreative");
__("Quick Browse","Halfcreative");
__("Optional image title.","Halfcreative");
__("Description","Halfcreative");
__("Optional image description.","Halfcreative");
__("Accept changes and close the dialog","Halfcreative");
__("Remember to publish -> update the Gallery post for changes to be saved.","Halfcreative");
__("Page %s","Halfcreative");
__("I've fallen and can't get up","Halfcreative");
__("Parsing import file","Halfcreative");
__("Importing categories","Halfcreative");
__("Importing terms","Halfcreative");
__("Importing posts","Halfcreative");
__("Fixing orphans","Halfcreative");
__("Fixing urls","Halfcreative");
__("Remapping images","Halfcreative");
__("Final cleanup","Halfcreative");
__("Pricing Table","Halfcreative");
__("Add New Pricing Table","Halfcreative");
__("Search Pricing Tables","Halfcreative");
__("Popular Pricing Tables","Halfcreative");
__("All Pricing Tables","Halfcreative");
__("Parent Pricing Table","Halfcreative");
__("Parent Pricing Table:","Halfcreative");
__("Edit Pricing Table","Halfcreative");
__("Update Pricing Table","Halfcreative");
__("New Pricing Table Name","Halfcreative");
__("No pricing tables defined","Halfcreative");
__("No project defined, please create one","Halfcreative");
__("Projects","Halfcreative");
__("Add New Project","Halfcreative");
__("Search Projects","Halfcreative");
__("Popular Projects","Halfcreative");
__("All Projects","Halfcreative");
__("Parent Project","Halfcreative");
__("Parent Project:","Halfcreative");
__("Edit Project","Halfcreative");
__("Update Project","Halfcreative");
__("New Project Name","Halfcreative");
__("Project Tags","Halfcreative");
__("Insert Shortcode","Halfcreative");
__("Shortcode","Halfcreative");
__("Services","Halfcreative");
__("Service","Halfcreative");
__("Add New Service","Halfcreative");
__("Search Services","Halfcreative");
__("Popular Services","Halfcreative");
__("All Services","Halfcreative");
__("Parent Service","Halfcreative");
__("Parent Service:","Halfcreative");
__("Edit Service","Halfcreative");
__("Update Service","Halfcreative");
__("New Service Name","Halfcreative");
__("Service Info","Halfcreative");
__("Icon 1","Halfcreative");
__("Icon 2","Halfcreative");
__("Icon 3","Halfcreative");
__("Add one or more service features.","Halfcreative");
__("No service defined.","Halfcreative");
__("Dynamic sidebar","Halfcreative");
__("Slides","Halfcreative");
__("Add New Slide","Halfcreative");
__("Search Slides","Halfcreative");
__("Popular Slides","Halfcreative");
__("All Slides","Halfcreative");
__("Parent Slide","Halfcreative");
__("Parent Slide:","Halfcreative");
__("Edit Slide","Halfcreative");
__("Update Slide","Halfcreative");
__("New Slide Name","Halfcreative");
__("Layers Builder","Halfcreative");
__("Add New Layer","Halfcreative");
__("Layer","Halfcreative");
__("Transition Type","Halfcreative");
__("Fly from left","Halfcreative");
__("Fly from right","Halfcreative");
__("Fly from top","Halfcreative");
__("Fly from bottom","Halfcreative");
__("Background color","Halfcreative");
__("Background opacity.","Halfcreative");
__("No background","Halfcreative");
__("10%","Halfcreative");
__("20%","Halfcreative");
__("30%","Halfcreative");
__("40%","Halfcreative");
__("50%","Halfcreative");
__("60%","Halfcreative");
__("70%","Halfcreative");
__("80%","Halfcreative");
__("90%","Halfcreative");
__("100%","Halfcreative");
__("Save current layer","Halfcreative");
__("Format","Halfcreative");
__("Normal","Halfcreative");
__("Layers","Halfcreative");
__("No Slide","Halfcreative");
__("No slides defined.","Halfcreative");
__("Staff Members","Halfcreative");
__("Staff Member","Halfcreative");
__("Add New Staff Member","Halfcreative");
__("Search Staff Members","Halfcreative");
__("Popular Staff Members","Halfcreative");
__("All Staff Members","Halfcreative");
__("Parent Staff Member","Halfcreative");
__("Parent Staff Member:","Halfcreative");
__("Edit Staff Member","Halfcreative");
__("Update Staff Member","Halfcreative");
__("New Staff Member Name","Halfcreative");
__("Personal Info","Halfcreative");
__("Position","Halfcreative");
__("Founder/Partner","Halfcreative");
__("Twitter Link","Halfcreative");
__("LinkedIn Link","Halfcreative");
__("Facebook Link","Halfcreative");
__("No staff member defined.","Halfcreative");
__("Leave A Comment","Halfcreative");
__("Cancel Reply","Halfcreative");
__("Your email address will not be published. Required fields are marked","Halfcreative");
__("The comments are now closed.","Halfcreative");
__("Prev","Halfcreative");
__("Testimonials","Halfcreative");
__("Testimonial","Halfcreative");
__("Add New Testimonial","Halfcreative");
__("Search Testimonials","Halfcreative");
__("Popular Testimonials","Halfcreative");
__("All Testimonials","Halfcreative");
__("Parent Testimonial","Halfcreative");
__("Parent Testimonial:","Halfcreative");
__("Edit Testimonial","Halfcreative");
__("Update Testimonial","Halfcreative");
__("New Testimonial Name","Halfcreative");
__("Web Client","Halfcreative");
__("No testimonial defined.","Halfcreative");
__("Videos","Halfcreative");
__("Add New Video","Halfcreative");
__("Search Videos","Halfcreative");
__("Popular Videos","Halfcreative");
__("All Videos","Halfcreative");
__("Parent Video","Halfcreative");
__("Parent Video:","Halfcreative");
__("Edit Video","Halfcreative");
__("Update Video","Halfcreative");
__("New Video Name","Halfcreative");
__("Max Width","Halfcreative");
__("Max width of the video when played inside the lightbox, use 0 for fullscreen","Halfcreative");
__("No videos defined","Halfcreative");
__("Any","Halfcreative");
__("LAYOUT","Halfcreative");
__("Accordion","Halfcreative");
__("Number of items","Halfcreative");
__("Select the number of items in the accordion.","Halfcreative");
__("Alert Box","Halfcreative");
__("Add an Alert Box","Halfcreative");
__("Alert Box Type","Halfcreative");
__("Select the type of Alert Box required. The alert type determines the color of the box and text","Halfcreative");
__("Primary","Halfcreative");
__("Success","Halfcreative");
__("Warning","Halfcreative");
__("Danger","Halfcreative");
__("Inverse","Halfcreative");
__("Alert Box Layout","Halfcreative");
__("Select the layout based on what type of content the box will hold, inline content or block content","Halfcreative");
__("Block","Halfcreative");
__("Inline","Halfcreative");
__("Enter the Alert Box content here ( Basic HTML supported ).","Halfcreative");
__("UI","Halfcreative");
__("Badge","Halfcreative");
__("Add a badge","Halfcreative");
__("Badge Type","Halfcreative");
__("Select the type of badge required. The badge type determines the bodge color","Halfcreative");
__("Important","Halfcreative");
__("Enter the destination url of the badge. Leave this field blank if the badge is not required to be a clickable link","Halfcreative");
__("Enter the badge's text content here.","Halfcreative");
__("CONTENT","Halfcreative");
__("Default / All Posts","Halfcreative");
__("Blog Options","Halfcreative");
__("Show all posts with default options or use custom settings of a blog page template.","Halfcreative");
__("Media Size","Halfcreative");
__("The size of the Media Area in pixels. Leave empty to use default values","Halfcreative");
__("Button","Halfcreative");
__("Add a button","Halfcreative");
__("Button Type","Halfcreative");
__("Select the type of button required. The button type determines the boton's color","Halfcreative");
__("Button Size","Halfcreative");
__("Select the size of button","Halfcreative");
__("Small","Halfcreative");
__("Medium","Halfcreative");
__("Large","Halfcreative");
__("Enter the destination url of the button","Halfcreative");
__("Optional Label","Halfcreative");
__("Enter the button label here. If no text is entered the button will have no label and so will require an icon or something else to be inserted. This can be done using the icon shortcode once this button shortcode has been added to the editor","Halfcreative");
__("Code Block (Syntax Highlighting)","Halfcreative");
__("Add a Code Box","Halfcreative");
__("Language","Halfcreative");
__("Language type of code block.","Halfcreative");
__("HTML","Halfcreative");
__("CSS","Halfcreative");
__("Javascript","Halfcreative");
__("PHP","Halfcreative");
__("XML","Halfcreative");
__("SQL","Halfcreative");
__("Options","Halfcreative");
__("Use vertical scrollbar / Show line numbers. If a vertical scrollbar is chosen, the code block's height is fixed as 350px","Halfcreative");
__("Scrollbar","Halfcreative");
__("Line Numbers","Halfcreative");
__("Enter the content here.","Halfcreative");
__("Add 2 columns","Halfcreative");
__("Select the number and proportion of the columns required. The bar will update to show the layout of the chosen arrangement","Halfcreative");
__("2 Column layouts","Halfcreative");
__("1/2 1/2","Halfcreative");
__("1/3 2/3","Halfcreative");
__("2/3 1/3","Halfcreative");
__("1/4 3/4","Halfcreative");
__("3/4 1/4","Halfcreative");
__("5/6 1/6","Halfcreative");
__("1/6 5/6","Halfcreative");
__("3 Column layouts","Halfcreative");
__("1/3 1/3 1/3","Halfcreative");
__("1/4 1/4 2/4","Halfcreative");
__("2/4 1/4 1/4","Halfcreative");
__("4 Column layouts","Halfcreative");
__("1/4 1/4 1/4 1/4","Halfcreative");
__("6 Column layouts","Halfcreative");
__("1/6 1/6 1/6 1/6 1/6 1/6","Halfcreative");
__("Content Box","Halfcreative");
__("Add Content Box","Halfcreative");
__("Background Color","Halfcreative");
__("Select background color for the content box.","Halfcreative");
__("Content Padding","Halfcreative");
__("Content padding: Top, Right, Bottom, Left.","Halfcreative");
__("Box Content","Halfcreative");
__("Enter the box content here. Basic HTML tags are supported.","Halfcreative");
__("Divider","Halfcreative");
__("Add a divider","Halfcreative");
__("Divider Type","Halfcreative");
__("Select the type of divider required.","Halfcreative");
__("Solid","Halfcreative");
__("Dotted","Halfcreative");
__("Faq","Halfcreative");
__("Question","Halfcreative");
__("Title of the faq.","Halfcreative");
__("Open on Page Load","Halfcreative");
__("If the FAQ item should be open by default","Halfcreative");
__("Answer","Halfcreative");
__("Content of the faq.","Halfcreative");
__("Feature","Halfcreative");
__("Add a Feature Box","Halfcreative");
__("Select an icon for this feature. See the help docs for a list of the available icons. ","Halfcreative");
__("Cloud","Halfcreative");
__("Minus","Halfcreative");
__("Plus","Halfcreative");
__("Quote","Halfcreative");
__("Eye","Halfcreative");
__("Heart","Halfcreative");
__("Lightbulb","Halfcreative");
__("Rss","Halfcreative");
__("Award","Halfcreative");
__("Stats","Halfcreative");
__("Star","Halfcreative");
__("Shield","Halfcreative");
__("Lock","Halfcreative");
__("Ribbon","Halfcreative");
__("Share","Halfcreative");
__("User","Halfcreative");
__("Comment","Halfcreative");
__("Map","Halfcreative");
__("Graph","Halfcreative");
__("Settings","Halfcreative");
__("Calendar","Halfcreative");
__("Mail","Halfcreative");
__("Clock","Halfcreative");
__("Lightening","Halfcreative");
__("Camera","Halfcreative");
__("Zoom","Halfcreative");
__("Close","Halfcreative");
__("Tic","Halfcreative");
__("CircleTic","Halfcreative");
__("CircleClose","Halfcreative");
__("Document","Halfcreative");
__("Article","Halfcreative");
__("Down","Halfcreative");
__("Up","Halfcreative");
__("UpRight","Halfcreative");
__("DownLeft","Halfcreative");
__("Enter the feature box text content here. Simple HTML tags are supported.","Halfcreative");
__("MEDIA","Halfcreative");
__("The size of the gallery in pixels. Only used in Fullscreen/Single Images modes, written in the form WidthxHeight. Leave empty to use default values","Halfcreative");
__("Hero Unit","Halfcreative");
__("Add an Hero Unit","Halfcreative");
__("Hero Unit Type","Halfcreative");
__("Select the type of hero unit required. the type determines the color","Halfcreative");
__("Enter the title of the Hero Unit.","Halfcreative");
__("Enter the Hero Unit content here.","Halfcreative");
__("Select the cion type to add. See the help documentation for a link to the list of available icons","Halfcreative");
__("Color","Halfcreative");
__("Select color of the icon","Halfcreative");
__("White","Halfcreative");
__("Black","Halfcreative");
__("Add a label","Halfcreative");
__("Label Type","Halfcreative");
__("Select the type of label required. The type determines the label color","Halfcreative");
__("Enter the destination url of the label. Leave this field blank if the label is not a clickable link","Halfcreative");
__("Enter the label content here.","Halfcreative");
__("Popover","Halfcreative");
__("Add a popover","Halfcreative");
__("Select the position for the popover","Halfcreative");
__("Top","Halfcreative");
__("Bottom","Halfcreative");
__("Left","Halfcreative");
__("Right","Halfcreative");
__("Enter the destination url of the popover trigger object","Halfcreative");
__("Select the type of button to use as the trigger object","Halfcreative");
__("No button, use normal text","Halfcreative");
__("Enter the popover trigger button's text label here.","Halfcreative");
__("Enter the popover title here.","Halfcreative");
__("Enter the popover content here.","Halfcreative");
__("Portfolio Options","Halfcreative");
__("Price Table","Halfcreative");
__("Add an Price Box","Halfcreative");
__("Select background color.","Halfcreative");
__("Price table title.","Halfcreative");
__("Price","Halfcreative");
__("Price table price.","Halfcreative");
__("Enter the pricing tables features, one per line.","Halfcreative");
__("Select the type of button required. The type determines the button color","Halfcreative");
__("Button Url","Halfcreative");
__("Enter the button label here. Leave this field blank to hide the button","Halfcreative");
__("Max Projects","Halfcreative");
__("Maximum number of projects to display.","Halfcreative");
__("Project Tag","Halfcreative");
__("Only display projects from a specific project tag.","Halfcreative");
__("Add a social share button","Halfcreative");
__("Social Network","Halfcreative");
__("Select the social network on which to share content.","Halfcreative");
__("Google +1","Halfcreative");
__("Pinterest","Halfcreative");
__("The size of the slider in pixels, written in the form WidthxHeight. Leave empty to use default values.","Halfcreative");
__("Add a staff block","Halfcreative");
__("Select position of main image.","Halfcreative");
__("Upload the large image. 400x320px aprox. ","Halfcreative");
__("Thumbnail","Halfcreative");
__("Upload the small Image. 110x130px aprox. Leave this field blank if no small images is required.","Halfcreative");
__("Description content. Simple HTML tags and buttons are supported.","Halfcreative");
__("Tabs","Halfcreative");
__("Number of Tabs","Halfcreative");
__("Select the number of tabs to add","Halfcreative");
__("Add a testimonial block","Halfcreative");
__("Testimonial Content","Halfcreative");
__("Block content HTML. The 'blockquote' tag contains the quoted content. The 'cite' tag contains the citation for the quoted content.","Halfcreative");
__("Tooltip","Halfcreative");
__("Add a tooltip","Halfcreative");
__("Select the tooltip position.","Halfcreative");
__("Enter the destination url of the tooltip trigger","Halfcreative");
__("Select the type of button to use. The type determines the button color","Halfcreative");
__("Enter the tooltip trigger label content here.","Halfcreative");
__("Enter the tooltip content here.","Halfcreative");
__("Widgets Sidebar","Halfcreative");
__("Widget","Halfcreative");
__("Widget Area","Halfcreative");
__("Select which widget area to insert. Widget areas need to be created in the 'Theme Options' panel before they will appear in this list.","Halfcreative");
__("Select the type of button required. The button type determines the icon displayed on the button","Halfcreative");
__("Download","Halfcreative");
__("Thumbs","Halfcreative");
__("Vcard","Halfcreative");
__("Love","Halfcreative");
__("Tweet","Halfcreative");
__("Like","Halfcreative");
__("Note","Halfcreative");
__("Enter the button label here. If no text is entered the button will consist of an icon only","Halfcreative");
__("Clear","Halfcreative");
__("1/5 4/5","Halfcreative");
__("4/5 1/5","Halfcreative");
__("2/5 2/5 1/5","Halfcreative");
__("1/5 2/5 2/5","Halfcreative");
__("5 Column layouts","Halfcreative");
__("1/5 1/5 1/5 1/5 1/5","Halfcreative");
__("Add download box","Halfcreative");
__("ALERTS","Halfcreative");
__("Add info box","Halfcreative");
__("Alert Text","Halfcreative");
__("Enter the text content of the alert box","Halfcreative");
__("Lightbox","Halfcreative");
__("Media Type","Halfcreative");
__("Select the type of media to be displayed in the lightbox","Halfcreative");
__("Local video","Halfcreative");
__("Vid.ly","Halfcreative");
__("This is the large image which will be opened inside the lightbox","Halfcreative");
__("Video window","Halfcreative");
__("The size at which the video will be displayed. For best results these values should match the original file's resolution and/or aspect ratio.","Halfcreative");
__("Title (Optional)","Halfcreative");
__("Title to be displayed in the lightbox","Halfcreative");
__("Description (Optional)","Halfcreative");
__("Text description to be displayed in the lightbox","Halfcreative");
__("DIVIDERS","Halfcreative");
__("Line","Halfcreative");
__("Add a line","Halfcreative");
__("Line Type","Halfcreative");
__("Select the line type of the divider","Halfcreative");
__("Back to top link","Halfcreative");
__("Select whether the line will contain a button which allows the user to scroll back to the top of the page","Halfcreative");
__("top ↑","Halfcreative");
__("Add link box","Halfcreative");
__("Enter the destination url of the alert box when clicked","Halfcreative");
__("DEFAULT","Halfcreative");
__("Properties","Halfcreative");
__("Item properties","Halfcreative");
__("Number of Properties","Halfcreative");
__("Select the number of property-value pairs the table will contain","Halfcreative");
__("Select a service to show.","Halfcreative");
__("Select staff member to show.","Halfcreative");
__("Enter the testimonial or quotation text in this field","Halfcreative");
__("Quotee","Halfcreative");
__("Enter the name of the person being quoted","Halfcreative");
__("Add warning box","Halfcreative");
__("WPML Language Block","Halfcreative");
__("Only show content when language match the above selection.","Halfcreative");
__("Block content.","Halfcreative");
__("Pixelentity - Contacts","Halfcreative");
__("Statistical informations and links","Halfcreative");
__("Widget title","Halfcreative");
__("Address Icon","Halfcreative");
__("Select icon type. See the help documentation for a link to the list of available icons","Halfcreative");
__("Address","Halfcreative");
__("Address box content.","Halfcreative");
__("Email Icon","Halfcreative");
__("Email","Halfcreative");
__("Email box content.","Halfcreative");
__("Phone Icon","Halfcreative");
__("Phone","Halfcreative");
__("Phone box content.","Halfcreative");
__("Vcard Icon","Halfcreative");
__("Vcard box content.","Halfcreative");
__("Opening Hours Icon","Halfcreative");
__("Opening Hours","Halfcreative");
__("Opening hours box content.","Halfcreative");
__("Pixelentity - Flickr","Halfcreative");
__("Displays Flickr Image Thumbnails","Halfcreative");
__("Widget title.","Halfcreative");
__("Username","Halfcreative");
__("Flickr username ID Number from which to load images.","Halfcreative");
__("Number Of Images","Halfcreative");
__("Select the number of images to be displayed.(3 per row)","Halfcreative");
__("Pixelentity - Gallery","Halfcreative");
__("Show a gallery","Halfcreative");
__("Gallery widget size","Halfcreative");
__("Pixelentity - Html","Halfcreative");
__("HTML Block","Halfcreative");
__("Pixelentity - Menu","Halfcreative");
__("Show a menu","Halfcreative");
__("Select a menu","Halfcreative");
__("No menus have been created yet","Halfcreative");
__("<a href=\"%s\">Create a menu</a>","Halfcreative");
__("Menu","Halfcreative");
__("Pixelentity - Newsletter","Halfcreative");
__("Newsletter subscribe form","Halfcreative");
__("Subscribe Address","Halfcreative");
__("The email address to which subscribers details are sent.","Halfcreative");
__("Intro Text","Halfcreative");
__("Text content located before the subscribe field","Halfcreative");
__("Outro Text","Halfcreative");
__("Text content located after the subscribe field","Halfcreative");
__("Pixelentity - Projects","Halfcreative");
__("Show projects","Halfcreative");
__("Featured Work","Halfcreative");
__("Add one or more projects.","Halfcreative");
__("Pixelentity - Recent posts","Halfcreative");
__("The most recent posts on your site","Halfcreative");
__("Blog Link","Halfcreative");
__("Blog link text. If empty, no link will be shown.","Halfcreative");
__("Blog Link Url","Halfcreative");
__("Blog url. If empty, theme will try to autodetect.","Halfcreative");
__("Number Of Posts","Halfcreative");
__("Select the number of recent posts to show in this widget.","Halfcreative");
__("Excerpt Length","Halfcreative");
__("Excerpt lenght in characters. This number is then rounded so as not to cut a word.","Halfcreative");
__("Pixelentity - Slider","Halfcreative");
__("Show a slider","Halfcreative");
__("Slider Size","Halfcreative");
__("The size of the slider in pixels. Written in the form widthxheight","Halfcreative");
__("Pixelentity - Social links","Halfcreative");
__("Link to social profiles","Halfcreative");
__("Links","Halfcreative");
__("Paste your social media profile links one at a time and hit the Add New button. The link will be added to a table below and the appropriate icon will be automatically selected based on the link's domain name","Halfcreative");
__("Pixelentity - Stats","Halfcreative");
__("Logo/Image","Halfcreative");
__("Logo/Image to be used as the widget title","Halfcreative");
__("Statistics","Halfcreative");
__("Numeric Stats","Halfcreative");
__("Additional links","Halfcreative");
__("Pixelentity - Tabs","Halfcreative");
__("Tabbed content","Halfcreative");
__("Tab 1 Title","Halfcreative");
__("Enter the tab title here","Halfcreative");
__("Tab 1 Content","Halfcreative");
__("Enter the tab body content here","Halfcreative");
__("Tab 2 Title","Halfcreative");
__("Tab 2 Content","Halfcreative");
__("Tab 3 Title","Halfcreative");
__("Tab 3 Content","Halfcreative");
__("Pixelentity - Twitter","Halfcreative");
__("Displays the latest tweets","Halfcreative");
__("Twitter username from which to load tweets","Halfcreative");
__("Number Of Tweets","Halfcreative");
__("Select the number of tweets to be displayed","Halfcreative");
__("Pixelentity - Video","Halfcreative");
__("Show a video","Halfcreative");
__("WPML - Conditional","Halfcreative");
__("Show/Hide widgets according to language","Halfcreative");
__("Only show subsequent widgets when language match the above selection.","Halfcreative");