Version Description
- February 23, 2016 = Initial release. Props @jonathanbardo, @fjarrett
Download this release
Release Info
Developer | jonathanbardo |
Plugin | Contact Widgets |
Version | 1.0.0 |
Comparing to | |
See all releases |
Version 1.0.0
- assets/css/admin-ie.css +24 -0
- assets/css/admin-ie.min.css +1 -0
- assets/css/admin.css +95 -0
- assets/css/admin.min.css +1 -0
- assets/css/style.css +30 -0
- assets/css/style.min.css +1 -0
- assets/js/admin.js +176 -0
- assets/js/admin.min.js +1 -0
- contact-widgets.php +99 -0
- includes/autoload.php +39 -0
- includes/class-base-widget.php +437 -0
- includes/class-contact.php +214 -0
- includes/class-plugin.php +39 -0
- includes/class-social.php +253 -0
- includes/social-networks.php +158 -0
- languages/contact-widgets-da_DK.mo +0 -0
- languages/contact-widgets-da_DK.po +228 -0
- languages/contact-widgets-de_DE.mo +0 -0
- languages/contact-widgets-de_DE.po +228 -0
- languages/contact-widgets-el.mo +0 -0
- languages/contact-widgets-el.po +228 -0
- languages/contact-widgets-es_ES.mo +0 -0
- languages/contact-widgets-es_ES.po +228 -0
- languages/contact-widgets-es_MX.mo +0 -0
- languages/contact-widgets-es_MX.po +228 -0
- languages/contact-widgets-fi.mo +0 -0
- languages/contact-widgets-fi.po +228 -0
- languages/contact-widgets-fr_FR.mo +0 -0
- languages/contact-widgets-fr_FR.po +228 -0
- languages/contact-widgets-id_ID.mo +0 -0
- languages/contact-widgets-id_ID.po +228 -0
- languages/contact-widgets-it_IT.mo +0 -0
- languages/contact-widgets-it_IT.po +228 -0
- languages/contact-widgets-ja.mo +0 -0
- languages/contact-widgets-ja.po +228 -0
- languages/contact-widgets-ko_KR.mo +0 -0
- languages/contact-widgets-ko_KR.po +228 -0
- languages/contact-widgets-ms_MY.mo +0 -0
- languages/contact-widgets-ms_MY.po +228 -0
- languages/contact-widgets-nb_NO.mo +0 -0
- languages/contact-widgets-nb_NO.po +228 -0
- languages/contact-widgets-nl_NL.mo +0 -0
- languages/contact-widgets-nl_NL.po +228 -0
- languages/contact-widgets-pl_PL.mo +0 -0
- languages/contact-widgets-pl_PL.po +229 -0
- languages/contact-widgets-pt_PT.mo +0 -0
- languages/contact-widgets-pt_PT.po +228 -0
- languages/contact-widgets-ru_RU.mo +0 -0
- languages/contact-widgets-ru_RU.po +229 -0
- languages/contact-widgets-sv_SE.mo +0 -0
- languages/contact-widgets-sv_SE.po +228 -0
- languages/contact-widgets-th.mo +0 -0
- languages/contact-widgets-th.po +228 -0
- languages/contact-widgets-tl.mo +0 -0
- languages/contact-widgets-tl.po +228 -0
- languages/contact-widgets-tr_TR.mo +0 -0
- languages/contact-widgets-tr_TR.po +228 -0
- languages/contact-widgets-uk.mo +0 -0
- languages/contact-widgets-uk.po +229 -0
- languages/contact-widgets-vi.mo +0 -0
- languages/contact-widgets-vi.po +228 -0
- languages/contact-widgets-zh_CN.mo +0 -0
- languages/contact-widgets-zh_CN.po +228 -0
- languages/contact-widgets-zh_HK.mo +0 -0
- languages/contact-widgets-zh_HK.po +228 -0
- languages/contact-widgets-zh_TW.mo +0 -0
- languages/contact-widgets-zh_TW.po +228 -0
- languages/contact-widgets.pot +223 -0
- readme.txt +28 -0
assets/css/admin-ie.css
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wpcw-widget .form p {
|
2 |
+
margin: 0 0 10px 1px;
|
3 |
+
}
|
4 |
+
.wpcw-widget .form p.sortable-placeholder {
|
5 |
+
margin: 0 0 8px 1px;
|
6 |
+
}
|
7 |
+
.wpcw-widget .form.ui-sortable p span.dashicons {
|
8 |
+
top: 25px;
|
9 |
+
}
|
10 |
+
.wpcw-widget .form.ui-sortable p.textarea span.dashicons {
|
11 |
+
top: 80px;
|
12 |
+
}
|
13 |
+
.wpcw-widget .ui-sortable.form > p .widefat {
|
14 |
+
display: inline;
|
15 |
+
}
|
16 |
+
/**
|
17 |
+
* IE8 fix and woraround
|
18 |
+
*/
|
19 |
+
.ie8 .wpcw-widget .form.ui-sortable p span.dashicons {
|
20 |
+
top: 0;
|
21 |
+
}
|
22 |
+
.ie8 .wpcw-widget-social .icons a.inactive {
|
23 |
+
color: #ccc;
|
24 |
+
}
|
assets/css/admin-ie.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.wpcw-widget .form p{margin:0 0 10px 1px}.wpcw-widget .form p.sortable-placeholder{margin:0 0 8px 1px}.wpcw-widget .form.ui-sortable p span.dashicons{top:25px}.wpcw-widget .form.ui-sortable p.textarea span.dashicons{top:80px}.wpcw-widget .ui-sortable.form>p .widefat{display:inline}.ie8 .wpcw-widget .form.ui-sortable p span.dashicons{top:0}.ie8 .wpcw-widget-social .icons a.inactive{color:#ccc}
|
assets/css/admin.css
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* Form fields
|
3 |
+
*/
|
4 |
+
.wpcw-widget .form {
|
5 |
+
overflow: auto;
|
6 |
+
margin-bottom: 1em;
|
7 |
+
}
|
8 |
+
.wpcw-widget .title {
|
9 |
+
margin-top: 1em;
|
10 |
+
}
|
11 |
+
.wpcw-widget .form p {
|
12 |
+
margin: 0 0 10px 0;
|
13 |
+
}
|
14 |
+
.wpcw-widget .form p.sortable-placeholder {
|
15 |
+
margin: 0 0 8px 0;
|
16 |
+
}
|
17 |
+
.wpcw-widget .form label i {
|
18 |
+
margin: 0 7px 0 3px;
|
19 |
+
}
|
20 |
+
.wpcw-widget .form > p > span {
|
21 |
+
display: table;
|
22 |
+
width: 100%;
|
23 |
+
}
|
24 |
+
.wpcw-widget .form > p textarea {
|
25 |
+
min-height: 80px;
|
26 |
+
resize: none;
|
27 |
+
vertical-align: top; /* Bottom margin fix for webkit */
|
28 |
+
}
|
29 |
+
.wpcw-widget .form.ui-sortable > p .widefat {
|
30 |
+
display: table-cell;
|
31 |
+
width: 100%; /* Customizer compat */
|
32 |
+
}
|
33 |
+
.wpcw-widget .form.ui-sortable .wpcw-widget-sortable-handle {
|
34 |
+
display: table-cell;
|
35 |
+
position: relative;
|
36 |
+
width: 25px;
|
37 |
+
background-color: #f7f7f7;
|
38 |
+
border: 1px solid #ddd;
|
39 |
+
border-left: none;
|
40 |
+
cursor: row-resize;
|
41 |
+
cursor: grab;
|
42 |
+
cursor: -moz-grab;
|
43 |
+
cursor: -webkit-grab;
|
44 |
+
|
45 |
+
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
46 |
+
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
47 |
+
box-shadow: 0 1px 1px rgba(0,0,0,0.04);
|
48 |
+
}
|
49 |
+
.wpcw-widget .form.ui-sortable .wpcw-widget-sortable-handle:active,
|
50 |
+
.wpcw-widget .form.ui-sortable .ui-sortable-helper * {
|
51 |
+
cursor: row-resize;
|
52 |
+
cursor: grabbing;
|
53 |
+
cursor: -moz-grabbing;
|
54 |
+
cursor: -webkit-grabbing;
|
55 |
+
}
|
56 |
+
.wpcw-widget .form.ui-sortable span.dashicons {
|
57 |
+
position: absolute;
|
58 |
+
margin: auto;
|
59 |
+
top: 0;
|
60 |
+
right: 0;
|
61 |
+
bottom: 0;
|
62 |
+
left: 0;
|
63 |
+
overflow: auto;
|
64 |
+
font-size: 18px;
|
65 |
+
color: #a0a5aa;
|
66 |
+
}
|
67 |
+
.wpcw-widget .form.ui-sortable span.dashicons:before {
|
68 |
+
position: relative;
|
69 |
+
top: 1px;
|
70 |
+
}
|
71 |
+
|
72 |
+
/**
|
73 |
+
* Default fields
|
74 |
+
*/
|
75 |
+
.wpcw-widget .default-fields {
|
76 |
+
display: none;
|
77 |
+
}
|
78 |
+
|
79 |
+
/**
|
80 |
+
* Icons
|
81 |
+
*/
|
82 |
+
.wpcw-widget-social .icons {
|
83 |
+
margin: 10px 0;
|
84 |
+
}
|
85 |
+
.wpcw-widget-social .icons a {
|
86 |
+
margin: 5px;
|
87 |
+
font-size: 20px;
|
88 |
+
display: inline-block;
|
89 |
+
}
|
90 |
+
.wpcw-widget-social .icons a:focus {
|
91 |
+
box-shadow: none;
|
92 |
+
}
|
93 |
+
.wpcw-widget-social .icons a.inactive:not(:hover) {
|
94 |
+
color: #ccc;
|
95 |
+
}
|
assets/css/admin.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.wpcw-widget .form{overflow:auto;margin-bottom:1em}.wpcw-widget .title{margin-top:1em}.wpcw-widget .form p{margin:0 0 10px}.wpcw-widget .form p.sortable-placeholder{margin:0 0 8px}.wpcw-widget .form label i{margin:0 7px 0 3px}.wpcw-widget .form>p>span{display:table;width:100%}.wpcw-widget .form>p textarea{min-height:80px;resize:none;vertical-align:top}.wpcw-widget .form.ui-sortable>p .widefat{display:table-cell;width:100%}.wpcw-widget .form.ui-sortable .wpcw-widget-sortable-handle{display:table-cell;position:relative;width:25px;background-color:#f7f7f7;border:1px solid #ddd;border-left:none;cursor:row-resize;cursor:grab;cursor:-moz-grab;cursor:-webkit-grab;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);-moz-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.wpcw-widget .form.ui-sortable .ui-sortable-helper *,.wpcw-widget .form.ui-sortable .wpcw-widget-sortable-handle:active{cursor:row-resize;cursor:grabbing;cursor:-moz-grabbing;cursor:-webkit-grabbing}.wpcw-widget .form.ui-sortable span.dashicons{position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;overflow:auto;font-size:18px;color:#a0a5aa}.wpcw-widget .form.ui-sortable span.dashicons:before{position:relative;top:1px}.wpcw-widget .default-fields{display:none}.wpcw-widget-social .icons{margin:10px 0}.wpcw-widget-social .icons a{margin:5px;font-size:20px;display:inline-block}.wpcw-widget-social .icons a:focus{box-shadow:none}.wpcw-widget-social .icons a.inactive:not(:hover){color:#ccc}
|
assets/css/style.css
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wpcw-widget-contact ul,
|
2 |
+
.wpcw-widget-social ul {
|
3 |
+
margin: 0;
|
4 |
+
padding: 0;
|
5 |
+
list-style: none;
|
6 |
+
}
|
7 |
+
.wpcw-widget-contact ul li,
|
8 |
+
.wpcw-widget-social ul li.has-label {
|
9 |
+
padding: 10px 0;
|
10 |
+
}
|
11 |
+
.wpcw-widget-contact ul li:before,
|
12 |
+
.wpcw-widget-contact ul li:after,
|
13 |
+
.wpcw-widget-social ul li:before,
|
14 |
+
.wpcw-widget-social ul li:after {
|
15 |
+
display: none;
|
16 |
+
}
|
17 |
+
.wpcw-widget-contact ul li div {
|
18 |
+
display: inline;
|
19 |
+
}
|
20 |
+
.wpcw-widget-social ul li:not(.has-label) {
|
21 |
+
display: inline-block;
|
22 |
+
margin: 0 0.75em 0.75em 0;
|
23 |
+
border: none;
|
24 |
+
}
|
25 |
+
.wpcw-widget-social ul li.has-label a {
|
26 |
+
display: block;
|
27 |
+
}
|
28 |
+
.wpcw-widget-social ul li.has-label span {
|
29 |
+
margin-right: 0.25em;
|
30 |
+
}
|
assets/css/style.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.wpcw-widget-contact ul,.wpcw-widget-social ul{margin:0;padding:0;list-style:none}.wpcw-widget-contact ul li,.wpcw-widget-social ul li.has-label{padding:10px 0}.wpcw-widget-contact ul li:after,.wpcw-widget-contact ul li:before,.wpcw-widget-social ul li:after,.wpcw-widget-social ul li:before{display:none}.wpcw-widget-contact ul li div{display:inline}.wpcw-widget-social ul li:not(.has-label){display:inline-block;margin:0 .75em .75em 0;border:none}.wpcw-widget-social ul li.has-label a{display:block}.wpcw-widget-social ul li.has-label span{margin-right:.25em}
|
assets/js/admin.js
ADDED
@@ -0,0 +1,176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
( function ( $ ) {
|
2 |
+
|
3 |
+
$.fn.selectString = function ( string ) {
|
4 |
+
|
5 |
+
var el = $( this )[ 0 ],
|
6 |
+
start = el.value.indexOf( string ),
|
7 |
+
end = start + string.length;
|
8 |
+
|
9 |
+
if ( ! el || start < 0 ) {
|
10 |
+
|
11 |
+
return;
|
12 |
+
|
13 |
+
} else if ( el.setSelectionRange ) {
|
14 |
+
|
15 |
+
// Webkit
|
16 |
+
el.focus();
|
17 |
+
el.setSelectionRange( start, end );
|
18 |
+
|
19 |
+
} else if ( el.createTextRange ) {
|
20 |
+
|
21 |
+
var range = el.createTextRange();
|
22 |
+
|
23 |
+
// IE
|
24 |
+
range.collapse( true );
|
25 |
+
range.moveEnd( 'character', end );
|
26 |
+
range.moveStart( 'character', start );
|
27 |
+
range.select();
|
28 |
+
|
29 |
+
} else if ( el.selectionStart ) {
|
30 |
+
|
31 |
+
el.selectionStart = start;
|
32 |
+
el.selectionEnd = end;
|
33 |
+
|
34 |
+
}
|
35 |
+
|
36 |
+
};
|
37 |
+
|
38 |
+
function start_sortable() {
|
39 |
+
|
40 |
+
var $contact_form = $( '.wpcw-widget .form' );
|
41 |
+
|
42 |
+
$contact_form.sortable( {
|
43 |
+
items : '> *:not(.not-sortable)',
|
44 |
+
handle: '.wpcw-widget-sortable-handle',
|
45 |
+
containment: 'parent',
|
46 |
+
placeholder: 'sortable-placeholder',
|
47 |
+
axis: 'y',
|
48 |
+
tolerance: 'pointer',
|
49 |
+
forcePlaceholderSize: true,
|
50 |
+
cursorAt: { top: 40 },
|
51 |
+
stop: function ( e, ui ) {
|
52 |
+
// Trigger change for customizer
|
53 |
+
$contact_form.find( '.customizer_update' ).val( ui.item.index() ).trigger( 'change' );
|
54 |
+
}
|
55 |
+
} );
|
56 |
+
|
57 |
+
}
|
58 |
+
|
59 |
+
var socialField = {
|
60 |
+
|
61 |
+
$btn: null,
|
62 |
+
$widget: null,
|
63 |
+
$template: null,
|
64 |
+
|
65 |
+
init: function ( e ) {
|
66 |
+
|
67 |
+
e.preventDefault();
|
68 |
+
|
69 |
+
var self = socialField;
|
70 |
+
|
71 |
+
self.$btn = $( this );
|
72 |
+
self.$widget = self.$btn.parents( '.wpcw-widget' );
|
73 |
+
|
74 |
+
// Make sure we don't trigger the animation again on double-click
|
75 |
+
if ( self.$widget.find( '.' + self.$btn.data('key') ).is( ':animated' ) ) {
|
76 |
+
|
77 |
+
return false;
|
78 |
+
|
79 |
+
}
|
80 |
+
|
81 |
+
if ( self.$btn.hasClass( 'inactive' ) ) {
|
82 |
+
|
83 |
+
self.$template = self.$widget.find( '.default-fields' );
|
84 |
+
self.$template = $( $.trim( self.$template.clone().html() ) );
|
85 |
+
|
86 |
+
self.add();
|
87 |
+
|
88 |
+
return;
|
89 |
+
|
90 |
+
}
|
91 |
+
|
92 |
+
self.remove();
|
93 |
+
|
94 |
+
},
|
95 |
+
|
96 |
+
add: function () {
|
97 |
+
|
98 |
+
this.$btn.removeClass( 'inactive' );
|
99 |
+
|
100 |
+
var data = this.$btn.data();
|
101 |
+
|
102 |
+
this.$template
|
103 |
+
.addClass( data.key )
|
104 |
+
.find( 'label' )
|
105 |
+
.prop( 'for', data.id );
|
106 |
+
|
107 |
+
this.$template
|
108 |
+
.find( 'input' )
|
109 |
+
.prop( 'id', data.id )
|
110 |
+
.prop( 'name', data.name )
|
111 |
+
.prop( 'value', data.value );
|
112 |
+
|
113 |
+
this.$template
|
114 |
+
.find( 'label span.fa' )
|
115 |
+
.prop( 'class', this.$btn.find( 'i' ).attr( 'class' ) );
|
116 |
+
|
117 |
+
this.$template
|
118 |
+
.find( 'label span.text' )
|
119 |
+
.text( data.label );
|
120 |
+
|
121 |
+
this.$template
|
122 |
+
.hide()
|
123 |
+
.prependTo( this.$widget.find( '.form' ) )
|
124 |
+
.stop( true, true )
|
125 |
+
.animate( {
|
126 |
+
height: 'toggle',
|
127 |
+
opacity: 'toggle'
|
128 |
+
}, 250 );
|
129 |
+
|
130 |
+
this.$template.find( 'input' ).selectString( data.select );
|
131 |
+
|
132 |
+
this.update_customizer();
|
133 |
+
|
134 |
+
},
|
135 |
+
|
136 |
+
remove: function () {
|
137 |
+
|
138 |
+
this.$btn.addClass( 'inactive' );
|
139 |
+
|
140 |
+
this.$widget
|
141 |
+
.find( '.form .' + this.$btn.data( 'key' ) )
|
142 |
+
.stop( true, true )
|
143 |
+
.animate( {
|
144 |
+
height: 'toggle',
|
145 |
+
opacity: 'toggle'
|
146 |
+
}, 250, function () {
|
147 |
+
$( this ).remove();
|
148 |
+
} );
|
149 |
+
|
150 |
+
this.update_customizer();
|
151 |
+
|
152 |
+
},
|
153 |
+
|
154 |
+
update_customizer: function () {
|
155 |
+
|
156 |
+
var count = this.$widget.find( 'div > div' ).length;
|
157 |
+
|
158 |
+
this.$widget.find( '.customizer_update' ).val( count ).trigger( 'change' );
|
159 |
+
|
160 |
+
}
|
161 |
+
|
162 |
+
};
|
163 |
+
|
164 |
+
$( document ).ready( function ( $ ) {
|
165 |
+
|
166 |
+
// Sortable
|
167 |
+
$( document.body ).on( 'click.widgets-toggle', start_sortable );
|
168 |
+
|
169 |
+
$( document ).on( 'widget-updated', start_sortable );
|
170 |
+
|
171 |
+
// Social
|
172 |
+
$( document ).on( 'click', '.wpcw-widget-social .icons a', socialField.init );
|
173 |
+
|
174 |
+
} );
|
175 |
+
|
176 |
+
} )( jQuery );
|
assets/js/admin.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(a){function b(){var b=a(".wpcw-widget .form");b.sortable({items:"> *:not(.not-sortable)",handle:".wpcw-widget-sortable-handle",containment:"parent",placeholder:"sortable-placeholder",axis:"y",tolerance:"pointer",forcePlaceholderSize:!0,cursorAt:{top:40},stop:function(a,c){b.find(".customizer_update").val(c.item.index()).trigger("change")}})}a.fn.selectString=function(b){var c=a(this)[0],d=c.value.indexOf(b),e=d+b.length;if(c&&!(0>d))if(c.setSelectionRange)c.focus(),c.setSelectionRange(d,e);else if(c.createTextRange){var f=c.createTextRange();f.collapse(!0),f.moveEnd("character",e),f.moveStart("character",d),f.select()}else c.selectionStart&&(c.selectionStart=d,c.selectionEnd=e)};var c={$btn:null,$widget:null,$template:null,init:function(b){b.preventDefault();var d=c;return d.$btn=a(this),d.$widget=d.$btn.parents(".wpcw-widget"),d.$widget.find("."+d.$btn.data("key")).is(":animated")?!1:d.$btn.hasClass("inactive")?(d.$template=d.$widget.find(".default-fields"),d.$template=a(a.trim(d.$template.clone().html())),void d.add()):void d.remove()},add:function(){this.$btn.removeClass("inactive");var a=this.$btn.data();this.$template.addClass(a.key).find("label").prop("for",a.id),this.$template.find("input").prop("id",a.id).prop("name",a.name).prop("value",a.value),this.$template.find("label span.fa").prop("class",this.$btn.find("i").attr("class")),this.$template.find("label span.text").text(a.label),this.$template.hide().prependTo(this.$widget.find(".form")).stop(!0,!0).animate({height:"toggle",opacity:"toggle"},250),this.$template.find("input").selectString(a.select),this.update_customizer()},remove:function(){this.$btn.addClass("inactive"),this.$widget.find(".form ."+this.$btn.data("key")).stop(!0,!0).animate({height:"toggle",opacity:"toggle"},250,function(){a(this).remove()}),this.update_customizer()},update_customizer:function(){var a=this.$widget.find("div > div").length;this.$widget.find(".customizer_update").val(a).trigger("change")}};a(document).ready(function(a){a(document.body).on("click.widgets-toggle",b),a(document).on("widget-updated",b),a(document).on("click",".wpcw-widget-social .icons a",c.init)})}(jQuery);
|
contact-widgets.php
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Plugin Name: Contact Widgets
|
4 |
+
* Description: Display contact information on your website beautifully with these simple widgets.
|
5 |
+
* Version: 1.0.0
|
6 |
+
* Author: Jonathan Bardo & Frankie Jarrett
|
7 |
+
* Text Domain: contact-widgets
|
8 |
+
* Domain Path: /languages
|
9 |
+
*/
|
10 |
+
|
11 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
12 |
+
|
13 |
+
exit;
|
14 |
+
|
15 |
+
}
|
16 |
+
|
17 |
+
if ( ! class_exists( 'Contact_Widgets' ) ) {
|
18 |
+
|
19 |
+
final class Contact_Widgets {
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Minimum PHP version
|
23 |
+
*
|
24 |
+
* @var string
|
25 |
+
*/
|
26 |
+
private $php_min_version = '5.4';
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Plugin assets URL
|
30 |
+
*
|
31 |
+
* @var string
|
32 |
+
*/
|
33 |
+
public static $assets_url;
|
34 |
+
|
35 |
+
/**
|
36 |
+
* Class constructor
|
37 |
+
*
|
38 |
+
* @param string $cur_php_version
|
39 |
+
*/
|
40 |
+
public function __construct( $cur_php_version = PHP_VERSION ) {
|
41 |
+
|
42 |
+
static::$assets_url = plugin_dir_url( __FILE__ ) . 'assets/';
|
43 |
+
|
44 |
+
$composer_autoloader = dirname( __FILE__ ) . '/vendor/autoload.php';
|
45 |
+
|
46 |
+
if ( defined( 'WP_CLI' ) && WP_CLI && file_exists( $composer_autoloader ) ) {
|
47 |
+
|
48 |
+
// This is for enabling codeception
|
49 |
+
require_once $composer_autoloader;
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
add_action( 'plugins_loaded', array( $this, 'i18n' ) );
|
54 |
+
|
55 |
+
if ( version_compare( $cur_php_version, $this->php_min_version, '<' ) ) {
|
56 |
+
|
57 |
+
add_action( 'shutdown', array( $this, 'notice' ) );
|
58 |
+
|
59 |
+
return;
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
require_once dirname( __FILE__ ) . '/includes/autoload.php';
|
64 |
+
|
65 |
+
}
|
66 |
+
|
67 |
+
/**
|
68 |
+
* Load languages
|
69 |
+
*
|
70 |
+
* @action plugins_loaded
|
71 |
+
*/
|
72 |
+
public function i18n() {
|
73 |
+
|
74 |
+
load_plugin_textdomain( 'contact-widgets', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
|
75 |
+
|
76 |
+
}
|
77 |
+
|
78 |
+
/**
|
79 |
+
* Display min PHP version notice
|
80 |
+
*
|
81 |
+
* @action shutdown
|
82 |
+
*/
|
83 |
+
public function notice() {
|
84 |
+
|
85 |
+
printf(
|
86 |
+
'<div class="error"><p>%s</p></div>',
|
87 |
+
sprintf(
|
88 |
+
__( 'Contact widgets requires PHP version %s or higher. Please deactivate the plugin and contact your system administrator.', 'contact-widgets' ),
|
89 |
+
esc_html( $this->php_min_version )
|
90 |
+
)
|
91 |
+
);
|
92 |
+
|
93 |
+
}
|
94 |
+
|
95 |
+
}
|
96 |
+
|
97 |
+
new Contact_Widgets;
|
98 |
+
|
99 |
+
}
|
includes/autoload.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WPCW;
|
4 |
+
|
5 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
6 |
+
|
7 |
+
exit;
|
8 |
+
|
9 |
+
}
|
10 |
+
|
11 |
+
spl_autoload_register( function( $resource ) {
|
12 |
+
|
13 |
+
if ( 0 !== strpos( $resource, __NAMESPACE__ ) ) {
|
14 |
+
|
15 |
+
return;
|
16 |
+
|
17 |
+
}
|
18 |
+
|
19 |
+
$resource = strtolower(
|
20 |
+
str_replace(
|
21 |
+
[ __NAMESPACE__ . '\\', '_' ],
|
22 |
+
[ '', '-' ],
|
23 |
+
$resource
|
24 |
+
)
|
25 |
+
);
|
26 |
+
|
27 |
+
$parts = explode( '\\', $resource );
|
28 |
+
$name = array_pop( $parts );
|
29 |
+
$files = str_replace( '//', '/', glob( sprintf( '%s/%s/*-%s.php', __DIR__, implode( '/', $parts ), $name ) ) );
|
30 |
+
|
31 |
+
if ( isset( $files[0] ) && is_readable( $files[0] ) ) {
|
32 |
+
|
33 |
+
require_once $files[0];
|
34 |
+
|
35 |
+
}
|
36 |
+
|
37 |
+
} );
|
38 |
+
|
39 |
+
add_action( 'plugins_loaded', [ __NAMESPACE__ . '\Plugin', 'init' ] );
|
includes/class-base-widget.php
ADDED
@@ -0,0 +1,437 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WPCW;
|
4 |
+
|
5 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
6 |
+
|
7 |
+
exit;
|
8 |
+
|
9 |
+
}
|
10 |
+
|
11 |
+
abstract class Base_Widget extends \WP_Widget {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Default properties for fields
|
15 |
+
*
|
16 |
+
* @var array
|
17 |
+
*/
|
18 |
+
protected $field_defaults = [
|
19 |
+
'key' => '',
|
20 |
+
'icon' => '',
|
21 |
+
'class' => 'widefat',
|
22 |
+
'id' => '',
|
23 |
+
'name' => '',
|
24 |
+
'label' => '',
|
25 |
+
'label_after' => false,
|
26 |
+
'description' => '',
|
27 |
+
'type' => 'text',
|
28 |
+
'sanitizer' => 'sanitize_text_field',
|
29 |
+
'escaper' => 'esc_html',
|
30 |
+
'form_callback' => 'render_form_input',
|
31 |
+
'default' => '',
|
32 |
+
'value' => '',
|
33 |
+
'placeholder' => '',
|
34 |
+
'sortable' => true,
|
35 |
+
'atts' => '',
|
36 |
+
'show_front_end' => true,
|
37 |
+
];
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Add common ressources needed for the form
|
41 |
+
*
|
42 |
+
* @param array $instance
|
43 |
+
*
|
44 |
+
* @return string|void
|
45 |
+
*/
|
46 |
+
public function form( $instance ) {
|
47 |
+
|
48 |
+
add_action( 'admin_footer', [ $this, 'enqueue_scripts' ] );
|
49 |
+
add_action( 'customize_controls_print_footer_scripts', [ $this, 'print_customizer_scripts' ] );
|
50 |
+
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Sanitize widget form values as they are saved
|
55 |
+
*
|
56 |
+
* @param array $new_instance Values just sent to be saved.
|
57 |
+
* @param array $old_instance Previously saved values from database.
|
58 |
+
*
|
59 |
+
* @return array Updated safe values to be saved.
|
60 |
+
*/
|
61 |
+
public function update( $new_instance, $old_instance ) {
|
62 |
+
|
63 |
+
$fields = $this->get_fields( $old_instance );
|
64 |
+
|
65 |
+
// Force value for checkbox since they are not posted
|
66 |
+
foreach ( $fields as $key => $field ) {
|
67 |
+
|
68 |
+
if ( 'checkbox' === $field['type'] && ! isset( $new_instance[ $key ]['value'] ) ) {
|
69 |
+
|
70 |
+
$new_instance[ $key ] = [ 'value' => 'no' ];
|
71 |
+
|
72 |
+
}
|
73 |
+
|
74 |
+
}
|
75 |
+
|
76 |
+
// Starting at 1 since title order is 0
|
77 |
+
$order = 1;
|
78 |
+
|
79 |
+
foreach ( $new_instance as $key => &$instance ) {
|
80 |
+
|
81 |
+
$sanitizer_callback = $fields[ $key ]['sanitizer'];
|
82 |
+
|
83 |
+
// Title can't be an array
|
84 |
+
if ( 'title' === $key ) {
|
85 |
+
|
86 |
+
$instance = $sanitizer_callback( $instance['value'] );
|
87 |
+
|
88 |
+
continue;
|
89 |
+
|
90 |
+
}
|
91 |
+
|
92 |
+
$instance['value'] = $sanitizer_callback( $instance['value'] );
|
93 |
+
$instance['order'] = $order++;
|
94 |
+
|
95 |
+
}
|
96 |
+
|
97 |
+
return $new_instance;
|
98 |
+
|
99 |
+
}
|
100 |
+
|
101 |
+
/**
|
102 |
+
* Initialize fields for use on front-end of forms
|
103 |
+
*
|
104 |
+
* @param array $instance
|
105 |
+
* @param array $fields (optional)
|
106 |
+
* @param bool $ordered (optional)
|
107 |
+
*
|
108 |
+
* @return array
|
109 |
+
*/
|
110 |
+
protected function get_fields( array $instance, array $fields = [], $ordered = true ) {
|
111 |
+
|
112 |
+
$order = 0;
|
113 |
+
|
114 |
+
foreach ( $fields as $key => &$field ) {
|
115 |
+
|
116 |
+
$common_properties = [
|
117 |
+
'key' => $key,
|
118 |
+
'icon' => $key,
|
119 |
+
'order' => ! empty( $instance[ $key ]['order'] ) ? absint( $instance[ $key ]['order'] ) : $order,
|
120 |
+
'id' => $this->get_field_id( $key ),
|
121 |
+
'name' => $this->get_field_name( $key ) . '[value]',
|
122 |
+
'value' => ! empty( $instance[ $key ]['value'] ) ? $instance[ $key ]['value'] : '',
|
123 |
+
];
|
124 |
+
|
125 |
+
$common_properties = wp_parse_args( $common_properties, $this->field_defaults );
|
126 |
+
$field = wp_parse_args( $field, $common_properties );
|
127 |
+
|
128 |
+
$default_closure = function( $value ) { return $value; };
|
129 |
+
|
130 |
+
foreach ( [ 'escaper', 'sanitizer' ] as $key ) {
|
131 |
+
|
132 |
+
$field[ $key ] = ! is_callable( $field[ $key ] ) ? $default_closure : $field[ $key ];
|
133 |
+
|
134 |
+
}
|
135 |
+
|
136 |
+
$order++;
|
137 |
+
|
138 |
+
}
|
139 |
+
|
140 |
+
if ( $ordered ) {
|
141 |
+
|
142 |
+
$fields = $this->order_field( $fields );
|
143 |
+
|
144 |
+
}
|
145 |
+
|
146 |
+
return $fields;
|
147 |
+
|
148 |
+
}
|
149 |
+
|
150 |
+
/**
|
151 |
+
* Order array by field order
|
152 |
+
*
|
153 |
+
* @param array $fields
|
154 |
+
*
|
155 |
+
* @return array
|
156 |
+
*/
|
157 |
+
protected function order_field( array $fields ) {
|
158 |
+
|
159 |
+
uksort( $fields, function( $a, $b ) use ( $fields ) {
|
160 |
+
|
161 |
+
// We want title first and order of non sortable fields doesn't matter
|
162 |
+
if ( ! $fields[ $a ]['sortable'] && 'title' !== $a ) {
|
163 |
+
|
164 |
+
return 1;
|
165 |
+
|
166 |
+
}
|
167 |
+
|
168 |
+
return ( $fields[ $a ]['order'] < $fields[ $b ]['order'] ) ? -1 : 1;
|
169 |
+
|
170 |
+
} );
|
171 |
+
|
172 |
+
return $fields;
|
173 |
+
|
174 |
+
}
|
175 |
+
|
176 |
+
/**
|
177 |
+
* Check if all the fields we show on the front-end are empty
|
178 |
+
*
|
179 |
+
* @param array $fields
|
180 |
+
*
|
181 |
+
* @return bool
|
182 |
+
*/
|
183 |
+
protected function is_widget_empty( array $fields ) {
|
184 |
+
|
185 |
+
foreach ( $fields as $key => $field ) {
|
186 |
+
|
187 |
+
/**
|
188 |
+
* Filter to ignore the title when checking if a widget is empty
|
189 |
+
*
|
190 |
+
* @since 1.0.0
|
191 |
+
*
|
192 |
+
* @var bool
|
193 |
+
*/
|
194 |
+
$ignore_title = (bool) apply_filters( 'wpcw_is_widget_empty_ignore_title', false );
|
195 |
+
|
196 |
+
if ( 'title' === $key && $ignore_title ) {
|
197 |
+
|
198 |
+
continue;
|
199 |
+
|
200 |
+
}
|
201 |
+
|
202 |
+
if ( ! empty( $field['value'] ) && $field['show_front_end'] ) {
|
203 |
+
|
204 |
+
return false;
|
205 |
+
|
206 |
+
}
|
207 |
+
|
208 |
+
}
|
209 |
+
|
210 |
+
return true;
|
211 |
+
|
212 |
+
}
|
213 |
+
|
214 |
+
/**
|
215 |
+
* Print current label
|
216 |
+
*
|
217 |
+
* @param array $field
|
218 |
+
*/
|
219 |
+
protected function print_label( array $field ) {
|
220 |
+
|
221 |
+
printf(
|
222 |
+
' <label for="%s" title="%s">%s</label>',
|
223 |
+
esc_attr( $field['id'] ),
|
224 |
+
esc_attr( $field['description'] ),
|
225 |
+
esc_html( $field['label'] )
|
226 |
+
);
|
227 |
+
|
228 |
+
}
|
229 |
+
|
230 |
+
/**
|
231 |
+
* Print label and wrapper
|
232 |
+
* @param array $field
|
233 |
+
*/
|
234 |
+
protected function before_form_field( array $field ) {
|
235 |
+
|
236 |
+
$classes = [ $field['type'], $field['key'] ];
|
237 |
+
|
238 |
+
if ( ! $field['sortable'] ) {
|
239 |
+
|
240 |
+
$classes[] = 'not-sortable';
|
241 |
+
|
242 |
+
}
|
243 |
+
|
244 |
+
if ( $field['label_after'] ) {
|
245 |
+
|
246 |
+
$classes[] = 'label-after';
|
247 |
+
|
248 |
+
}
|
249 |
+
|
250 |
+
printf(
|
251 |
+
'<p class="%s">',
|
252 |
+
implode( ' ', $classes )
|
253 |
+
);
|
254 |
+
|
255 |
+
if ( ! $field['label_after'] ) {
|
256 |
+
|
257 |
+
$this->print_label( $field );
|
258 |
+
|
259 |
+
}
|
260 |
+
|
261 |
+
if ( $field['sortable'] ) {
|
262 |
+
|
263 |
+
echo '<span>';
|
264 |
+
|
265 |
+
}
|
266 |
+
|
267 |
+
}
|
268 |
+
|
269 |
+
/**
|
270 |
+
* Render input field for admin form
|
271 |
+
*
|
272 |
+
* @param array $field
|
273 |
+
*/
|
274 |
+
protected function render_form_input( array $field ) {
|
275 |
+
|
276 |
+
$this->before_form_field( $field );
|
277 |
+
|
278 |
+
printf(
|
279 |
+
'<input class="%s" id="%s" name="%s" type="%s" value="%s" placeholder="%s" autocomplete="off" %s>',
|
280 |
+
esc_attr( $field['class'] ),
|
281 |
+
esc_attr( $field['id'] ),
|
282 |
+
esc_attr( $field['name'] ),
|
283 |
+
esc_attr( $field['type'] ),
|
284 |
+
esc_attr( $field['value'] ),
|
285 |
+
esc_attr( $field['placeholder'] ),
|
286 |
+
esc_attr( $field['atts'] )
|
287 |
+
);
|
288 |
+
|
289 |
+
if ( $field['label_after'] ) {
|
290 |
+
|
291 |
+
$this->print_label( $field );
|
292 |
+
|
293 |
+
}
|
294 |
+
|
295 |
+
$this->after_form_field( $field );
|
296 |
+
|
297 |
+
}
|
298 |
+
|
299 |
+
/**
|
300 |
+
* Render textarea field for admin widget form
|
301 |
+
*
|
302 |
+
* @param array $field
|
303 |
+
*/
|
304 |
+
protected function render_form_textarea( array $field ) {
|
305 |
+
|
306 |
+
$this->before_form_field( $field );
|
307 |
+
|
308 |
+
printf(
|
309 |
+
'<textarea class="%s" id="%s" name="%s" placeholder="%s">%s</textarea>',
|
310 |
+
esc_attr( $field['class'] ),
|
311 |
+
esc_attr( $field['id'] ),
|
312 |
+
esc_attr( $field['name'] ),
|
313 |
+
esc_attr( $field['placeholder'] ),
|
314 |
+
esc_textarea( $field['value'] )
|
315 |
+
);
|
316 |
+
|
317 |
+
$this->after_form_field( $field );
|
318 |
+
|
319 |
+
}
|
320 |
+
|
321 |
+
/**
|
322 |
+
* Close wrapper of form field
|
323 |
+
*
|
324 |
+
* @param array $field
|
325 |
+
*/
|
326 |
+
protected function after_form_field( array $field ) {
|
327 |
+
|
328 |
+
if ( $field['sortable'] ) {
|
329 |
+
|
330 |
+
echo '<span class="wpcw-widget-sortable-handle"><span class="dashicons dashicons-menu"></span></span></span>';
|
331 |
+
|
332 |
+
}
|
333 |
+
|
334 |
+
echo '</p>';
|
335 |
+
|
336 |
+
}
|
337 |
+
|
338 |
+
/**
|
339 |
+
* Print beginning of front-end display
|
340 |
+
*
|
341 |
+
* @param array $args
|
342 |
+
* @param array $fields
|
343 |
+
*/
|
344 |
+
protected function before_widget( array $args, array &$fields ) {
|
345 |
+
|
346 |
+
$title = array_shift( $fields );
|
347 |
+
|
348 |
+
echo $args['before_widget'];
|
349 |
+
|
350 |
+
if ( ! empty( $title['value'] ) ) {
|
351 |
+
|
352 |
+
/**
|
353 |
+
* Filter the widget title
|
354 |
+
*
|
355 |
+
* @since 1.0.0
|
356 |
+
*
|
357 |
+
* @var string
|
358 |
+
*/
|
359 |
+
$title = (string) apply_filters( 'widget_title', $title['value'] );
|
360 |
+
|
361 |
+
echo $args['before_title'] . $title . $args['after_title'];
|
362 |
+
|
363 |
+
}
|
364 |
+
|
365 |
+
echo '<ul>';
|
366 |
+
|
367 |
+
}
|
368 |
+
|
369 |
+
/**
|
370 |
+
* Print end of front-end display
|
371 |
+
*
|
372 |
+
* @param array $args
|
373 |
+
* @param array $fields
|
374 |
+
*/
|
375 |
+
protected function after_widget( array $args, array &$fields ) {
|
376 |
+
|
377 |
+
echo '</ul>';
|
378 |
+
|
379 |
+
echo $args['after_widget'];
|
380 |
+
|
381 |
+
}
|
382 |
+
|
383 |
+
/**
|
384 |
+
* Helper to output only 'checked' and not checked='checked'
|
385 |
+
* IE 9 & 10 don't support the latter
|
386 |
+
*
|
387 |
+
* @param mixed $helper One of the values to compare
|
388 |
+
* @param mixed $current (true) The other value to compare if not just true
|
389 |
+
* @param bool $echo Whether to echo or just return the string
|
390 |
+
* @return string html attribute or empty string
|
391 |
+
*/
|
392 |
+
public function checked( $helper, $current, $echo = false ) {
|
393 |
+
|
394 |
+
$result = (string) $helper === (string) $current ? 'checked' : '';
|
395 |
+
|
396 |
+
if ( $echo ) {
|
397 |
+
|
398 |
+
echo $result;
|
399 |
+
|
400 |
+
}
|
401 |
+
|
402 |
+
return $result;
|
403 |
+
|
404 |
+
}
|
405 |
+
|
406 |
+
/**
|
407 |
+
* Print footer script and styles
|
408 |
+
*/
|
409 |
+
public function enqueue_scripts() {
|
410 |
+
|
411 |
+
$suffix = SCRIPT_DEBUG ? '' : '.min';
|
412 |
+
|
413 |
+
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css', [], '4.5.0' );
|
414 |
+
wp_enqueue_style( 'wpcw-admin', \Contact_Widgets::$assets_url . "css/admin{$suffix}.css", [ 'font-awesome' ], Plugin::$version );
|
415 |
+
wp_enqueue_script( 'wpcw-admin', \Contact_Widgets::$assets_url . "js/admin{$suffix}.js", [ 'jquery' ], Plugin::$version, true );
|
416 |
+
|
417 |
+
if ( $GLOBALS['is_IE'] ) {
|
418 |
+
|
419 |
+
wp_enqueue_style( 'wpcw-admin-ie', \Contact_Widgets::$assets_url . "css/admin-ie{$suffix}.css", [ 'wpcw-admin' ], Plugin::$version );
|
420 |
+
|
421 |
+
}
|
422 |
+
|
423 |
+
}
|
424 |
+
|
425 |
+
/**
|
426 |
+
* Print customizer script
|
427 |
+
*/
|
428 |
+
public function print_customizer_scripts() {
|
429 |
+
|
430 |
+
$this->enqueue_scripts();
|
431 |
+
|
432 |
+
wp_print_styles( [ 'font-awesome', 'wpcw-admin', 'wpcw-admin-ie' ] );
|
433 |
+
wp_print_scripts( 'wpcw-admin' );
|
434 |
+
|
435 |
+
}
|
436 |
+
|
437 |
+
}
|
includes/class-contact.php
ADDED
@@ -0,0 +1,214 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WPCW;
|
4 |
+
|
5 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
6 |
+
|
7 |
+
exit;
|
8 |
+
|
9 |
+
}
|
10 |
+
|
11 |
+
final class Contact extends Base_Widget {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Widget constructor
|
15 |
+
*/
|
16 |
+
public function __construct() {
|
17 |
+
|
18 |
+
$widget_options = [
|
19 |
+
'classname' => 'wpcw-widget-contact',
|
20 |
+
'description' => __( 'Custom contact links', 'contact-widgets' ),
|
21 |
+
];
|
22 |
+
|
23 |
+
parent::__construct(
|
24 |
+
'wpcw_contact',
|
25 |
+
__( 'Contact', 'contact-widgets' ),
|
26 |
+
$widget_options
|
27 |
+
);
|
28 |
+
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Widget form fields
|
33 |
+
*
|
34 |
+
* @param array $instance The widget options
|
35 |
+
*
|
36 |
+
* @return string|void
|
37 |
+
*/
|
38 |
+
public function form( $instance ) {
|
39 |
+
|
40 |
+
parent::form( $instance );
|
41 |
+
|
42 |
+
$fields = $this->get_fields( $instance );
|
43 |
+
|
44 |
+
echo '<div class="wpcw-widget wpcw-widget-contact">';
|
45 |
+
|
46 |
+
echo '<div class="title">';
|
47 |
+
|
48 |
+
// Title field
|
49 |
+
$this->render_form_input( array_shift( $fields ) );
|
50 |
+
|
51 |
+
echo '</div>';
|
52 |
+
|
53 |
+
echo '<div class="form">';
|
54 |
+
|
55 |
+
foreach ( $fields as $key => $field ) {
|
56 |
+
|
57 |
+
$method = $field['form_callback'];
|
58 |
+
|
59 |
+
if ( is_callable( [ $this, $method ] ) ) {
|
60 |
+
|
61 |
+
$this->$method( $field );
|
62 |
+
|
63 |
+
}
|
64 |
+
|
65 |
+
}
|
66 |
+
|
67 |
+
// Workaround customizer refresh @props @westonruter
|
68 |
+
echo '<input class="customizer_update" type="hidden" value="">';
|
69 |
+
|
70 |
+
echo '</div>'; // End form
|
71 |
+
|
72 |
+
echo '</div>'; // End wpcw-widget-contact
|
73 |
+
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Front-end display
|
78 |
+
*
|
79 |
+
* @param array $args
|
80 |
+
* @param array $instance
|
81 |
+
*/
|
82 |
+
public function widget( $args, $instance ) {
|
83 |
+
|
84 |
+
$fields = $this->get_fields( $instance );
|
85 |
+
|
86 |
+
if ( $this->is_widget_empty( $fields ) ) {
|
87 |
+
|
88 |
+
return;
|
89 |
+
|
90 |
+
}
|
91 |
+
|
92 |
+
$suffix = SCRIPT_DEBUG ? '' : '.min';
|
93 |
+
|
94 |
+
wp_enqueue_style( 'wpcw', \Contact_Widgets::$assets_url . "css/style{$suffix}.css", [], Plugin::$version );
|
95 |
+
|
96 |
+
$this->before_widget( $args, $fields );
|
97 |
+
|
98 |
+
$display_labels = ( 'yes' === $instance['labels']['value'] );
|
99 |
+
|
100 |
+
foreach ( $fields as $field ) {
|
101 |
+
|
102 |
+
if ( empty( $field['value'] ) || ! $field['show_front_end'] ) {
|
103 |
+
|
104 |
+
continue;
|
105 |
+
|
106 |
+
}
|
107 |
+
|
108 |
+
$escape_callback = $field['escaper'];
|
109 |
+
$label = str_replace( ':', '', $field['label'] );
|
110 |
+
|
111 |
+
printf(
|
112 |
+
'<li class="%s">%s<div>%s</div></li>',
|
113 |
+
$display_labels ? 'has-label' : 'no-label',
|
114 |
+
$display_labels ? sprintf( '<strong>%s</strong><br>', esc_html( $label ) ) : '',
|
115 |
+
$escape_callback( $field['value'] )
|
116 |
+
);
|
117 |
+
|
118 |
+
}
|
119 |
+
|
120 |
+
if ( 'yes' === $instance['map']['value'] && ! empty( $fields['address']['value'] ) ) {
|
121 |
+
|
122 |
+
printf(
|
123 |
+
'<li class="has-map"><iframe src="//www.google.com/maps?q=%s&output=embed" scrolling="no" frameborder="0"></iframe></li>',
|
124 |
+
urlencode( trim( strip_tags( $fields['address']['value'] ) ) )
|
125 |
+
);
|
126 |
+
|
127 |
+
}
|
128 |
+
|
129 |
+
$this->after_widget( $args, $fields );
|
130 |
+
|
131 |
+
}
|
132 |
+
|
133 |
+
/**
|
134 |
+
* Initialize fields for use on front-end of forms
|
135 |
+
*
|
136 |
+
* @param array $instance
|
137 |
+
* @param array $fields
|
138 |
+
* @param bool $ordered
|
139 |
+
*
|
140 |
+
* @return array
|
141 |
+
*/
|
142 |
+
protected function get_fields( array $instance, array $fields = [], $ordered = true ) {
|
143 |
+
|
144 |
+
$fields = [
|
145 |
+
'title' => [
|
146 |
+
'label' => __( 'Title:', 'contact-widgets' ),
|
147 |
+
'description' => __( 'The title of widget. Leave empty for no title.', 'contact-widgets' ),
|
148 |
+
'value' => ! empty( $instance['title'] ) ? $instance['title'] : '',
|
149 |
+
'sortable' => false,
|
150 |
+
],
|
151 |
+
'email' => [
|
152 |
+
'label' => __( 'Email:', 'contact-widgets' ),
|
153 |
+
'type' => 'email',
|
154 |
+
'sanitizer' => 'sanitize_email',
|
155 |
+
'escaper' => function( $value ) {
|
156 |
+
// Work around until https://core.trac.wordpress.org/ticket/32787
|
157 |
+
return sprintf( '<a href="mailto:%1$s">%1$s</a>', antispambot( $value ) );
|
158 |
+
},
|
159 |
+
'description' => __( 'An email address where website vistors can contact you.', 'contact-widgets' ),
|
160 |
+
],
|
161 |
+
'phone' => [
|
162 |
+
'label' => __( 'Phone:', 'contact-widgets' ),
|
163 |
+
'type' => 'text',
|
164 |
+
'description' => __( 'A phone number that website vistors can call if they have questions.', 'contact-widgets' ),
|
165 |
+
],
|
166 |
+
'fax' => [
|
167 |
+
'label' => __( 'Fax:', 'contact-widgets' ),
|
168 |
+
'type' => 'text',
|
169 |
+
'description' => __( 'A fax number that website vistors can use to send important documents.', 'contact-widgets' ),
|
170 |
+
],
|
171 |
+
'address' => [
|
172 |
+
'label' => __( 'Address:', 'contact-widgets' ),
|
173 |
+
'type' => 'textarea',
|
174 |
+
'sanitizer' => function( $value ) { return current_user_can( 'unfiltered_html' ) ? $value : wp_kses_post( stripslashes( $value ) ); },
|
175 |
+
'escaper' => function( $value ) { return nl2br( apply_filters( 'widget_text', $value ) ); },
|
176 |
+
'form_callback' => 'render_form_textarea',
|
177 |
+
'description' => __( 'A physical address where website vistors can go to visit you in person.', 'contact-widgets' ),
|
178 |
+
],
|
179 |
+
'labels' => [
|
180 |
+
'label' => __( 'Display labels?', 'contact-widgets' ),
|
181 |
+
'class' => '',
|
182 |
+
'label_after' => true,
|
183 |
+
'type' => 'checkbox',
|
184 |
+
'sortable' => false,
|
185 |
+
'value' => 'yes',
|
186 |
+
'atts' => $this->checked( 'yes', isset( $instance['labels']['value'] ) ? $instance['labels']['value'] : 'yes' ),
|
187 |
+
'show_front_end' => false,
|
188 |
+
],
|
189 |
+
'map' => [
|
190 |
+
'label' => __( 'Display map of address?', 'contact-widgets' ),
|
191 |
+
'class' => '',
|
192 |
+
'label_after' => true,
|
193 |
+
'type' => 'checkbox',
|
194 |
+
'sortable' => false,
|
195 |
+
'value' => 'yes',
|
196 |
+
'atts' => $this->checked( 'yes', isset( $instance['map']['value'] ) ? $instance['map']['value'] : 'yes' ),
|
197 |
+
'show_front_end' => false,
|
198 |
+
],
|
199 |
+
];
|
200 |
+
|
201 |
+
$fields = parent::get_fields( $instance, $fields );
|
202 |
+
|
203 |
+
/**
|
204 |
+
* Filter the contact fields
|
205 |
+
*
|
206 |
+
* @since 1.0.0
|
207 |
+
*
|
208 |
+
* @var array
|
209 |
+
*/
|
210 |
+
return (array) apply_filters( 'wpcw_widget_contact_fields', $fields, $instance );
|
211 |
+
|
212 |
+
}
|
213 |
+
|
214 |
+
}
|
includes/class-plugin.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WPCW;
|
4 |
+
|
5 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
6 |
+
|
7 |
+
exit;
|
8 |
+
|
9 |
+
}
|
10 |
+
|
11 |
+
class Plugin {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Plugin version
|
15 |
+
*
|
16 |
+
* @var string
|
17 |
+
*/
|
18 |
+
public static $version = '1.0.0';
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Class constructor
|
22 |
+
*/
|
23 |
+
public static function init() {
|
24 |
+
|
25 |
+
add_action( 'widgets_init', [ get_called_class(), 'register_widgets' ] );
|
26 |
+
|
27 |
+
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Register our custom widget using the api
|
31 |
+
*/
|
32 |
+
public static function register_widgets() {
|
33 |
+
|
34 |
+
register_widget( __NAMESPACE__ . '\Contact' );
|
35 |
+
register_widget( __NAMESPACE__ . '\Social' );
|
36 |
+
|
37 |
+
}
|
38 |
+
|
39 |
+
}
|
includes/class-social.php
ADDED
@@ -0,0 +1,253 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace WPCW;
|
4 |
+
|
5 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
6 |
+
|
7 |
+
exit;
|
8 |
+
|
9 |
+
}
|
10 |
+
|
11 |
+
final class Social extends Base_Widget {
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Widget constructor
|
15 |
+
*/
|
16 |
+
public function __construct() {
|
17 |
+
|
18 |
+
$widget_options = [
|
19 |
+
'classname' => 'wpcw-widget-social',
|
20 |
+
'description' => __( 'Custom social links', 'contact-widgets' ),
|
21 |
+
];
|
22 |
+
|
23 |
+
parent::__construct(
|
24 |
+
'wpcw_social',
|
25 |
+
__( 'Social', 'contact-widgets' ),
|
26 |
+
$widget_options
|
27 |
+
);
|
28 |
+
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Widget form fields
|
33 |
+
*
|
34 |
+
* @param array $instance
|
35 |
+
*
|
36 |
+
* @return string|void
|
37 |
+
*/
|
38 |
+
public function form( $instance ) {
|
39 |
+
|
40 |
+
parent::form( $instance );
|
41 |
+
|
42 |
+
$fields = $this->get_fields( $instance );
|
43 |
+
$title_field = array_shift( $fields );
|
44 |
+
|
45 |
+
echo '<div class="wpcw-widget wpcw-widget-social">';
|
46 |
+
|
47 |
+
echo '<div class="title">';
|
48 |
+
|
49 |
+
// Title field
|
50 |
+
$this->render_form_input( $title_field );
|
51 |
+
|
52 |
+
echo '</div>';
|
53 |
+
|
54 |
+
echo '<div class="icons">';
|
55 |
+
|
56 |
+
foreach ( $fields as $key => $field ) {
|
57 |
+
|
58 |
+
if ( ! isset( $field['social'] ) ) {
|
59 |
+
|
60 |
+
continue;
|
61 |
+
|
62 |
+
}
|
63 |
+
|
64 |
+
printf(
|
65 |
+
'<a href="#"
|
66 |
+
class="%s"
|
67 |
+
title="%s"
|
68 |
+
data-key="%s"
|
69 |
+
data-value="%s"
|
70 |
+
data-select="%s"
|
71 |
+
data-name="%s"
|
72 |
+
data-id="%s"
|
73 |
+
data-label="%s">
|
74 |
+
<i class="fa fa-%s"></i>
|
75 |
+
</a>',
|
76 |
+
empty( $field['value'] ) ? 'inactive' : '',
|
77 |
+
esc_attr( $field['label'] ),
|
78 |
+
esc_attr( $key ),
|
79 |
+
esc_attr( $field['default'] ),
|
80 |
+
esc_attr( $field['select'] ),
|
81 |
+
esc_attr( $field['name'] ),
|
82 |
+
esc_attr( $field['id'] ),
|
83 |
+
esc_attr( $field['label'] ),
|
84 |
+
esc_attr( $field['icon'] )
|
85 |
+
);
|
86 |
+
|
87 |
+
}
|
88 |
+
|
89 |
+
echo '</div>';
|
90 |
+
|
91 |
+
echo '<div class="form">';
|
92 |
+
|
93 |
+
$fields = $this->order_field( $fields );
|
94 |
+
|
95 |
+
foreach ( $fields as $key => $field ) {
|
96 |
+
|
97 |
+
$method = $field['form_callback'];
|
98 |
+
|
99 |
+
if ( is_callable( [ $this, $method ] ) && ! empty( $field['value'] ) ) {
|
100 |
+
|
101 |
+
$this->$method( $field );
|
102 |
+
|
103 |
+
}
|
104 |
+
|
105 |
+
}
|
106 |
+
|
107 |
+
// Workaround customizer refresh @props @westonruter
|
108 |
+
echo '<input class="customizer_update" type="hidden" value="">';
|
109 |
+
|
110 |
+
echo '</div>'; // End form
|
111 |
+
|
112 |
+
echo '<div class="default-fields">';
|
113 |
+
|
114 |
+
// Template form for JS use
|
115 |
+
$this->render_form_input( $this->field_defaults );
|
116 |
+
|
117 |
+
echo '</div>'; // End default-fields
|
118 |
+
|
119 |
+
echo '</div>'; // End wpcw-widget-social
|
120 |
+
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* Front-end display
|
125 |
+
*
|
126 |
+
* @param array $args
|
127 |
+
* @param array $instance
|
128 |
+
*/
|
129 |
+
public function widget( $args, $instance ) {
|
130 |
+
|
131 |
+
$fields = $this->get_fields( $instance, [], true );
|
132 |
+
|
133 |
+
if ( $this->is_widget_empty( $fields ) ) {
|
134 |
+
|
135 |
+
return;
|
136 |
+
|
137 |
+
}
|
138 |
+
|
139 |
+
$suffix = SCRIPT_DEBUG ? '' : '.min';
|
140 |
+
|
141 |
+
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css', [], '4.5.0' );
|
142 |
+
wp_enqueue_style( 'wpcw', \Contact_Widgets::$assets_url . "css/style{$suffix}.css", [], Plugin::$version );
|
143 |
+
|
144 |
+
$this->before_widget( $args, $fields );
|
145 |
+
|
146 |
+
$display_labels = ( 'yes' === $instance['labels']['value'] );
|
147 |
+
|
148 |
+
foreach ( $fields as $field ) {
|
149 |
+
|
150 |
+
if ( empty( $field['value'] ) || ! $field['show_front_end'] ) {
|
151 |
+
|
152 |
+
continue;
|
153 |
+
|
154 |
+
}
|
155 |
+
|
156 |
+
$escape_callback = $field['escaper'];
|
157 |
+
|
158 |
+
printf(
|
159 |
+
'<li class="%s"><a href="%s" target="%s" title="%s"><span class="fa fa-2x fa-%s"></span>%s</a></li>',
|
160 |
+
$display_labels ? 'has-label' : 'no-label',
|
161 |
+
$escape_callback( $field['value'] ),
|
162 |
+
esc_attr( $field['target'] ),
|
163 |
+
sprintf( esc_attr_x( 'Visit %s on %s', '1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. Facebook)', 'contact-widgets' ), get_bloginfo( 'name' ), $field['label'] ),
|
164 |
+
esc_attr( $field['icon'] ),
|
165 |
+
$display_labels ? esc_html( $field['label'] ) : ''
|
166 |
+
);
|
167 |
+
|
168 |
+
}
|
169 |
+
|
170 |
+
$this->after_widget( $args, $fields );
|
171 |
+
|
172 |
+
}
|
173 |
+
|
174 |
+
/**
|
175 |
+
* Initialize fields for use on front-end of forms
|
176 |
+
*
|
177 |
+
* @param array $instance
|
178 |
+
* @param array $fields (optional)
|
179 |
+
* @param bool $ordered (optional)
|
180 |
+
*
|
181 |
+
* @return array
|
182 |
+
*/
|
183 |
+
protected function get_fields( array $instance, array $fields = [], $ordered = false ) {
|
184 |
+
|
185 |
+
include 'social-networks.php';
|
186 |
+
|
187 |
+
foreach ( $fields as $key => &$field ) {
|
188 |
+
|
189 |
+
$default = [
|
190 |
+
'sanitizer' => 'esc_url_raw',
|
191 |
+
'escaper' => 'esc_url',
|
192 |
+
'select' => '',
|
193 |
+
'social' => true,
|
194 |
+
'target' => '_blank',
|
195 |
+
];
|
196 |
+
|
197 |
+
$field = wp_parse_args( $field, $default );
|
198 |
+
|
199 |
+
}
|
200 |
+
|
201 |
+
$title = [
|
202 |
+
'title' => [
|
203 |
+
'label' => __( 'Title:', 'contact-widgets' ),
|
204 |
+
'description' => __( 'The title of widget. Leave empty for no title.', 'contact-widgets' ),
|
205 |
+
'value' => ! empty( $instance['title'] ) ? $instance['title'] : '',
|
206 |
+
'sortable' => false,
|
207 |
+
],
|
208 |
+
];
|
209 |
+
|
210 |
+
// Prepend title field to the array
|
211 |
+
$fields = $title + $fields;
|
212 |
+
|
213 |
+
$fields['labels'] = [
|
214 |
+
'label' => __( 'Display labels?', 'contact-widgets' ),
|
215 |
+
'class' => '',
|
216 |
+
'label_after' => true,
|
217 |
+
'type' => 'checkbox',
|
218 |
+
'sortable' => false,
|
219 |
+
'value' => 'yes',
|
220 |
+
'atts' => $this->checked( 'yes', isset( $instance['labels']['value'] ) ? $instance['labels']['value'] : 'no' ),
|
221 |
+
'show_front_end' => false,
|
222 |
+
];
|
223 |
+
|
224 |
+
$fields = parent::get_fields( $instance, $fields, $ordered );
|
225 |
+
|
226 |
+
/**
|
227 |
+
* Filter the social fields
|
228 |
+
*
|
229 |
+
* @since 1.0.0
|
230 |
+
*
|
231 |
+
* @var array
|
232 |
+
*/
|
233 |
+
return (array) apply_filters( 'wpcw_widget_social_fields', $fields, $instance );
|
234 |
+
|
235 |
+
}
|
236 |
+
|
237 |
+
/**
|
238 |
+
* Print label and wrapper
|
239 |
+
*
|
240 |
+
* @param array $field
|
241 |
+
*/
|
242 |
+
protected function print_label( array $field ) {
|
243 |
+
|
244 |
+
printf(
|
245 |
+
'<label for="%s"><span class="fa fa-%s"></span> <span class="text">%s</span></label>',
|
246 |
+
esc_attr( $field['id'] ),
|
247 |
+
esc_attr( $field['icon'] ),
|
248 |
+
esc_html( $field['label'] )
|
249 |
+
);
|
250 |
+
|
251 |
+
}
|
252 |
+
|
253 |
+
}
|
includes/social-networks.php
ADDED
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
4 |
+
|
5 |
+
exit;
|
6 |
+
|
7 |
+
}
|
8 |
+
|
9 |
+
$username = esc_attr_x( 'username', 'Must be lowercase and use url-safe characters', 'contact-widgets' );
|
10 |
+
$channel = esc_attr_x( 'channel', 'Must be lowercase and use url-safe characters', 'contact-widgets' );
|
11 |
+
$company = esc_attr_x( 'company', 'Must be lowercase and use url-safe characters', 'contact-widgets' );
|
12 |
+
$board = esc_attr_x( 'board', 'Must be lowercase and use url-safe characters', 'contact-widgets' );
|
13 |
+
|
14 |
+
$fields = [
|
15 |
+
'facebook' => [
|
16 |
+
'icon' => 'facebook-official',
|
17 |
+
'label' => __( 'Facebook', 'contact-widgets' ),
|
18 |
+
'default' => "https://www.facebook.com/{$username}",
|
19 |
+
'select' => $username,
|
20 |
+
],
|
21 |
+
'twitter' => [
|
22 |
+
'label' => __( 'Twitter', 'contact-widgets' ),
|
23 |
+
'default' => "https://twitter.com/{$username}",
|
24 |
+
'select' => $username,
|
25 |
+
],
|
26 |
+
'googleplus' => [
|
27 |
+
'icon' => 'google-plus',
|
28 |
+
'label' => __( 'Google+', 'contact-widgets' ),
|
29 |
+
'default' => "https://google.com/+{$username}",
|
30 |
+
'select' => $username,
|
31 |
+
],
|
32 |
+
'linkedin' => [
|
33 |
+
'icon' => 'linkedin-square',
|
34 |
+
'label' => __( 'LinkedIn', 'contact-widgets' ),
|
35 |
+
'default' => "https://www.linkedin.com/in/{$username}",
|
36 |
+
'select' => $username,
|
37 |
+
],
|
38 |
+
'pinterest' => [
|
39 |
+
'label' => __( 'Pinterest', 'contact-widgets' ),
|
40 |
+
'default' => "https://www.pinterest.com/{$username}",
|
41 |
+
'select' => $username,
|
42 |
+
],
|
43 |
+
'youtube' => [
|
44 |
+
'label' => __( 'YouTube', 'contact-widgets' ),
|
45 |
+
'default' => "https://www.youtube.com/user/{$username}",
|
46 |
+
'select' => $username,
|
47 |
+
],
|
48 |
+
'vimeo' => [
|
49 |
+
'label' => __( 'Vimeo', 'contact-widgets' ),
|
50 |
+
'default' => "https://vimeo.com/{$username}",
|
51 |
+
'select' => $username,
|
52 |
+
],
|
53 |
+
'flickr' => [
|
54 |
+
'label' => __( 'Flickr', 'contact-widgets' ),
|
55 |
+
'default' => "https://www.flickr.com/photos/{$username}",
|
56 |
+
'select' => $username,
|
57 |
+
],
|
58 |
+
'foursquare' => [
|
59 |
+
'label' => __( 'Foursquare', 'contact-widgets' ),
|
60 |
+
'default' => "https://foursquare.com/{$username}",
|
61 |
+
'select' => $username,
|
62 |
+
],
|
63 |
+
'github' => [
|
64 |
+
'label' => __( 'GitHub', 'contact-widgets' ),
|
65 |
+
'default' => "https://github.com/{$username}",
|
66 |
+
'select' => $username,
|
67 |
+
],
|
68 |
+
'slack' => [
|
69 |
+
'label' => __( 'Slack', 'contact-widgets' ),
|
70 |
+
'default' => "https://{$channel}.slack.com/",
|
71 |
+
'select' => $channel,
|
72 |
+
],
|
73 |
+
'skype' => [
|
74 |
+
'label' => __( 'Skype', 'contact-widgets' ),
|
75 |
+
'default' => "skype:{$username}?chat",
|
76 |
+
'sanitizer' => 'sanitize_text_field',
|
77 |
+
'select' => $username,
|
78 |
+
],
|
79 |
+
'soundcloud' => [
|
80 |
+
'label' => __( 'SoundCloud', 'contact-widgets' ),
|
81 |
+
'default' => "https://soundcloud.com/{$username}",
|
82 |
+
'select' => $username,
|
83 |
+
],
|
84 |
+
'tripadvisor' => [
|
85 |
+
'label' => __( 'TripAdvisor', 'contact-widgets' ),
|
86 |
+
'default' => 'https://www.tripadvisor.com/',
|
87 |
+
],
|
88 |
+
'wordpress' => [
|
89 |
+
'label' => __( 'WordPress', 'contact-widgets' ),
|
90 |
+
'default' => "https://profiles.wordpress.org/{$username}",
|
91 |
+
'select' => $username,
|
92 |
+
],
|
93 |
+
'yelp' => [
|
94 |
+
'label' => __( 'Yelp', 'contact-widgets' ),
|
95 |
+
'default' => "http://www.yelp.com/biz/{$company}",
|
96 |
+
'select' => $company,
|
97 |
+
],
|
98 |
+
'amazon' => [
|
99 |
+
'label' => __( 'Amazon', 'contact-widgets' ),
|
100 |
+
'default' => 'https://www.amazon.com/',
|
101 |
+
],
|
102 |
+
'instagram' => [
|
103 |
+
'label' => __( 'Instagram', 'contact-widgets' ),
|
104 |
+
'default' => "https://www.instagram.com/{$username}",
|
105 |
+
'select' => $username,
|
106 |
+
],
|
107 |
+
'vine' => [
|
108 |
+
'label' => __( 'Vine', 'contact-widgets' ),
|
109 |
+
'default' => "https://vine.co/{$username}",
|
110 |
+
'select' => $username,
|
111 |
+
],
|
112 |
+
'reddit' => [
|
113 |
+
'label' => __( 'reddit', 'contact-widgets' ),
|
114 |
+
'default' => "https://www.reddit.com/user/{$username}",
|
115 |
+
'select' => $username,
|
116 |
+
],
|
117 |
+
'xing' => [
|
118 |
+
'label' => __( 'XING', 'contact-widgets' ),
|
119 |
+
'default' => 'https://www.xing.com/',
|
120 |
+
],
|
121 |
+
'tumblr' => [
|
122 |
+
'label' => __( 'Tumblr', 'contact-widgets' ),
|
123 |
+
'default' => "https://{$username}.tumblr.com/",
|
124 |
+
'select' => $username,
|
125 |
+
],
|
126 |
+
'whatsapp' => [
|
127 |
+
'label' => __( 'WhatsApp', 'contact-widgets' ),
|
128 |
+
'default' => 'https://www.whatsapp.com/',
|
129 |
+
],
|
130 |
+
'wechat' => [
|
131 |
+
'label' => __( 'WeChat', 'contact-widgets' ),
|
132 |
+
'default' => 'http://www.wechat.com/',
|
133 |
+
],
|
134 |
+
'medium' => [
|
135 |
+
'label' => __( 'Medium', 'contact-widgets' ),
|
136 |
+
'default' => "https://medium.com/@{$username}",
|
137 |
+
'select' => $username,
|
138 |
+
],
|
139 |
+
'dribbble' => [
|
140 |
+
'label' => __( 'Dribbble', 'contact-widgets' ),
|
141 |
+
'default' => "https://dribbble.com/{$username}",
|
142 |
+
'select' => $username,
|
143 |
+
],
|
144 |
+
'twitch' => [
|
145 |
+
'label' => __( 'Twitch', 'contact-widgets' ),
|
146 |
+
'default' => "https://www.twitch.tv/{$username}",
|
147 |
+
'select' => $username,
|
148 |
+
],
|
149 |
+
'vk' => [
|
150 |
+
'label' => __( 'VK', 'contact-widgets' ),
|
151 |
+
'default' => 'https://vk.com/',
|
152 |
+
],
|
153 |
+
'trello' => [
|
154 |
+
'label' => __( 'Trello', 'contact-widgets' ),
|
155 |
+
'default' => "https://trello.com/b/{$board}",
|
156 |
+
'select' => $board,
|
157 |
+
],
|
158 |
+
];
|
languages/contact-widgets-da_DK.mo
ADDED
Binary file
|
languages/contact-widgets-da_DK.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:00-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: da_DK\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-de_DE.mo
ADDED
Binary file
|
languages/contact-widgets-de_DE.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:01-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: de_DE\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-el.mo
ADDED
Binary file
|
languages/contact-widgets-el.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:01-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: el\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-es_ES.mo
ADDED
Binary file
|
languages/contact-widgets-es_ES.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:00-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: es_ES\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-es_MX.mo
ADDED
Binary file
|
languages/contact-widgets-es_MX.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:02-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: es_MX\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-fi.mo
ADDED
Binary file
|
languages/contact-widgets-fi.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:02-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: fi\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-fr_FR.mo
ADDED
Binary file
|
languages/contact-widgets-fr_FR.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:02-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
+
"Language: fr_FR\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-id_ID.mo
ADDED
Binary file
|
languages/contact-widgets-id_ID.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:03-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: id_ID\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-it_IT.mo
ADDED
Binary file
|
languages/contact-widgets-it_IT.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:03-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: it_IT\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-ja.mo
ADDED
Binary file
|
languages/contact-widgets-ja.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:03-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: ja\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-ko_KR.mo
ADDED
Binary file
|
languages/contact-widgets-ko_KR.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:03-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: ko_KR\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-ms_MY.mo
ADDED
Binary file
|
languages/contact-widgets-ms_MY.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:04-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: ms_MY\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-nb_NO.mo
ADDED
Binary file
|
languages/contact-widgets-nb_NO.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:04-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: nb_NO\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-nl_NL.mo
ADDED
Binary file
|
languages/contact-widgets-nl_NL.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:05-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: nl_NL\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-pl_PL.mo
ADDED
Binary file
|
languages/contact-widgets-pl_PL.po
ADDED
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:05-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
18 |
+
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
+
"Language: pl_PL\n"
|
20 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
21 |
+
"X-Poedit-SearchPath-1: includes\n"
|
22 |
+
|
23 |
+
#: contact-widgets.php:88
|
24 |
+
#, php-format
|
25 |
+
msgid ""
|
26 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
27 |
+
"plugin and contact your system administrator."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: includes/class-contact.php:20
|
31 |
+
msgid "Custom contact links"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: includes/class-contact.php:25
|
35 |
+
msgid "Contact"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
39 |
+
msgid "Title:"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
43 |
+
msgid "The title of widget. Leave empty for no title."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/class-contact.php:152
|
47 |
+
msgid "Email:"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/class-contact.php:159
|
51 |
+
msgid "An email address where website vistors can contact you."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/class-contact.php:162
|
55 |
+
msgid "Phone:"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/class-contact.php:164
|
59 |
+
msgid "A phone number that website vistors can call if they have questions."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/class-contact.php:167
|
63 |
+
msgid "Fax:"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/class-contact.php:169
|
67 |
+
msgid "A fax number that website vistors can use to send important documents."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/class-contact.php:172
|
71 |
+
msgid "Address:"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/class-contact.php:177
|
75 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
79 |
+
msgid "Display labels?"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/class-contact.php:190
|
83 |
+
msgid "Display map of address?"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/class-social.php:20
|
87 |
+
msgid "Custom social links"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/class-social.php:25
|
91 |
+
msgid "Social"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/class-social.php:163
|
95 |
+
#, php-format
|
96 |
+
msgid "Visit %s on %s"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: includes/social-networks.php:9
|
100 |
+
msgid "username"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: includes/social-networks.php:10
|
104 |
+
msgid "channel"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: includes/social-networks.php:11
|
108 |
+
msgid "company"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/social-networks.php:12
|
112 |
+
msgid "board"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: includes/social-networks.php:17
|
116 |
+
msgid "Facebook"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/social-networks.php:22
|
120 |
+
msgid "Twitter"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: includes/social-networks.php:28
|
124 |
+
msgid "Google+"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/social-networks.php:34
|
128 |
+
msgid "LinkedIn"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/social-networks.php:39
|
132 |
+
msgid "Pinterest"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/social-networks.php:44
|
136 |
+
msgid "YouTube"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/social-networks.php:49
|
140 |
+
msgid "Vimeo"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: includes/social-networks.php:54
|
144 |
+
msgid "Flickr"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/social-networks.php:59
|
148 |
+
msgid "Foursquare"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/social-networks.php:64
|
152 |
+
msgid "GitHub"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/social-networks.php:69
|
156 |
+
msgid "Slack"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/social-networks.php:74
|
160 |
+
msgid "Skype"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/social-networks.php:80
|
164 |
+
msgid "SoundCloud"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/social-networks.php:85
|
168 |
+
msgid "TripAdvisor"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/social-networks.php:89
|
172 |
+
msgid "WordPress"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/social-networks.php:94
|
176 |
+
msgid "Yelp"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/social-networks.php:99
|
180 |
+
msgid "Amazon"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/social-networks.php:103
|
184 |
+
msgid "Instagram"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: includes/social-networks.php:108
|
188 |
+
msgid "Vine"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/social-networks.php:113
|
192 |
+
msgid "reddit"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/social-networks.php:118
|
196 |
+
msgid "XING"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/social-networks.php:122
|
200 |
+
msgid "Tumblr"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: includes/social-networks.php:127
|
204 |
+
msgid "WhatsApp"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/social-networks.php:131
|
208 |
+
msgid "WeChat"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: includes/social-networks.php:135
|
212 |
+
msgid "Medium"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: includes/social-networks.php:140
|
216 |
+
msgid "Dribbble"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/social-networks.php:145
|
220 |
+
msgid "Twitch"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/social-networks.php:150
|
224 |
+
msgid "VK"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/social-networks.php:154
|
228 |
+
msgid "Trello"
|
229 |
+
msgstr ""
|
languages/contact-widgets-pt_PT.mo
ADDED
Binary file
|
languages/contact-widgets-pt_PT.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:05-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: pt_PT\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-ru_RU.mo
ADDED
Binary file
|
languages/contact-widgets-ru_RU.po
ADDED
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:05-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
+
"Language: ru_RU\n"
|
20 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
21 |
+
"X-Poedit-SearchPath-1: includes\n"
|
22 |
+
|
23 |
+
#: contact-widgets.php:88
|
24 |
+
#, php-format
|
25 |
+
msgid ""
|
26 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
27 |
+
"plugin and contact your system administrator."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: includes/class-contact.php:20
|
31 |
+
msgid "Custom contact links"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: includes/class-contact.php:25
|
35 |
+
msgid "Contact"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
39 |
+
msgid "Title:"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
43 |
+
msgid "The title of widget. Leave empty for no title."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/class-contact.php:152
|
47 |
+
msgid "Email:"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/class-contact.php:159
|
51 |
+
msgid "An email address where website vistors can contact you."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/class-contact.php:162
|
55 |
+
msgid "Phone:"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/class-contact.php:164
|
59 |
+
msgid "A phone number that website vistors can call if they have questions."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/class-contact.php:167
|
63 |
+
msgid "Fax:"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/class-contact.php:169
|
67 |
+
msgid "A fax number that website vistors can use to send important documents."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/class-contact.php:172
|
71 |
+
msgid "Address:"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/class-contact.php:177
|
75 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
79 |
+
msgid "Display labels?"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/class-contact.php:190
|
83 |
+
msgid "Display map of address?"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/class-social.php:20
|
87 |
+
msgid "Custom social links"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/class-social.php:25
|
91 |
+
msgid "Social"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/class-social.php:163
|
95 |
+
#, php-format
|
96 |
+
msgid "Visit %s on %s"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: includes/social-networks.php:9
|
100 |
+
msgid "username"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: includes/social-networks.php:10
|
104 |
+
msgid "channel"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: includes/social-networks.php:11
|
108 |
+
msgid "company"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/social-networks.php:12
|
112 |
+
msgid "board"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: includes/social-networks.php:17
|
116 |
+
msgid "Facebook"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/social-networks.php:22
|
120 |
+
msgid "Twitter"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: includes/social-networks.php:28
|
124 |
+
msgid "Google+"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/social-networks.php:34
|
128 |
+
msgid "LinkedIn"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/social-networks.php:39
|
132 |
+
msgid "Pinterest"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/social-networks.php:44
|
136 |
+
msgid "YouTube"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/social-networks.php:49
|
140 |
+
msgid "Vimeo"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: includes/social-networks.php:54
|
144 |
+
msgid "Flickr"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/social-networks.php:59
|
148 |
+
msgid "Foursquare"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/social-networks.php:64
|
152 |
+
msgid "GitHub"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/social-networks.php:69
|
156 |
+
msgid "Slack"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/social-networks.php:74
|
160 |
+
msgid "Skype"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/social-networks.php:80
|
164 |
+
msgid "SoundCloud"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/social-networks.php:85
|
168 |
+
msgid "TripAdvisor"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/social-networks.php:89
|
172 |
+
msgid "WordPress"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/social-networks.php:94
|
176 |
+
msgid "Yelp"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/social-networks.php:99
|
180 |
+
msgid "Amazon"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/social-networks.php:103
|
184 |
+
msgid "Instagram"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: includes/social-networks.php:108
|
188 |
+
msgid "Vine"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/social-networks.php:113
|
192 |
+
msgid "reddit"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/social-networks.php:118
|
196 |
+
msgid "XING"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/social-networks.php:122
|
200 |
+
msgid "Tumblr"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: includes/social-networks.php:127
|
204 |
+
msgid "WhatsApp"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/social-networks.php:131
|
208 |
+
msgid "WeChat"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: includes/social-networks.php:135
|
212 |
+
msgid "Medium"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: includes/social-networks.php:140
|
216 |
+
msgid "Dribbble"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/social-networks.php:145
|
220 |
+
msgid "Twitch"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/social-networks.php:150
|
224 |
+
msgid "VK"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/social-networks.php:154
|
228 |
+
msgid "Trello"
|
229 |
+
msgstr ""
|
languages/contact-widgets-sv_SE.mo
ADDED
Binary file
|
languages/contact-widgets-sv_SE.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:06-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: sv_SE\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-th.mo
ADDED
Binary file
|
languages/contact-widgets-th.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:06-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: th\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-tl.mo
ADDED
Binary file
|
languages/contact-widgets-tl.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:06-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
+
"Language: tl\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-tr_TR.mo
ADDED
Binary file
|
languages/contact-widgets-tr_TR.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:06-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"Language: tr_TR\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-uk.mo
ADDED
Binary file
|
languages/contact-widgets-uk.po
ADDED
@@ -0,0 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:06-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
+
"Language: uk\n"
|
20 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
21 |
+
"X-Poedit-SearchPath-1: includes\n"
|
22 |
+
|
23 |
+
#: contact-widgets.php:88
|
24 |
+
#, php-format
|
25 |
+
msgid ""
|
26 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
27 |
+
"plugin and contact your system administrator."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: includes/class-contact.php:20
|
31 |
+
msgid "Custom contact links"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: includes/class-contact.php:25
|
35 |
+
msgid "Contact"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
39 |
+
msgid "Title:"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
43 |
+
msgid "The title of widget. Leave empty for no title."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/class-contact.php:152
|
47 |
+
msgid "Email:"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/class-contact.php:159
|
51 |
+
msgid "An email address where website vistors can contact you."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/class-contact.php:162
|
55 |
+
msgid "Phone:"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/class-contact.php:164
|
59 |
+
msgid "A phone number that website vistors can call if they have questions."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/class-contact.php:167
|
63 |
+
msgid "Fax:"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/class-contact.php:169
|
67 |
+
msgid "A fax number that website vistors can use to send important documents."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/class-contact.php:172
|
71 |
+
msgid "Address:"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/class-contact.php:177
|
75 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
79 |
+
msgid "Display labels?"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/class-contact.php:190
|
83 |
+
msgid "Display map of address?"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/class-social.php:20
|
87 |
+
msgid "Custom social links"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/class-social.php:25
|
91 |
+
msgid "Social"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/class-social.php:163
|
95 |
+
#, php-format
|
96 |
+
msgid "Visit %s on %s"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: includes/social-networks.php:9
|
100 |
+
msgid "username"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: includes/social-networks.php:10
|
104 |
+
msgid "channel"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: includes/social-networks.php:11
|
108 |
+
msgid "company"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/social-networks.php:12
|
112 |
+
msgid "board"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: includes/social-networks.php:17
|
116 |
+
msgid "Facebook"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/social-networks.php:22
|
120 |
+
msgid "Twitter"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: includes/social-networks.php:28
|
124 |
+
msgid "Google+"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/social-networks.php:34
|
128 |
+
msgid "LinkedIn"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/social-networks.php:39
|
132 |
+
msgid "Pinterest"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/social-networks.php:44
|
136 |
+
msgid "YouTube"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/social-networks.php:49
|
140 |
+
msgid "Vimeo"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: includes/social-networks.php:54
|
144 |
+
msgid "Flickr"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/social-networks.php:59
|
148 |
+
msgid "Foursquare"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/social-networks.php:64
|
152 |
+
msgid "GitHub"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/social-networks.php:69
|
156 |
+
msgid "Slack"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/social-networks.php:74
|
160 |
+
msgid "Skype"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/social-networks.php:80
|
164 |
+
msgid "SoundCloud"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/social-networks.php:85
|
168 |
+
msgid "TripAdvisor"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/social-networks.php:89
|
172 |
+
msgid "WordPress"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/social-networks.php:94
|
176 |
+
msgid "Yelp"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/social-networks.php:99
|
180 |
+
msgid "Amazon"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/social-networks.php:103
|
184 |
+
msgid "Instagram"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: includes/social-networks.php:108
|
188 |
+
msgid "Vine"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/social-networks.php:113
|
192 |
+
msgid "reddit"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/social-networks.php:118
|
196 |
+
msgid "XING"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/social-networks.php:122
|
200 |
+
msgid "Tumblr"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: includes/social-networks.php:127
|
204 |
+
msgid "WhatsApp"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/social-networks.php:131
|
208 |
+
msgid "WeChat"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: includes/social-networks.php:135
|
212 |
+
msgid "Medium"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: includes/social-networks.php:140
|
216 |
+
msgid "Dribbble"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/social-networks.php:145
|
220 |
+
msgid "Twitch"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/social-networks.php:150
|
224 |
+
msgid "VK"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/social-networks.php:154
|
228 |
+
msgid "Trello"
|
229 |
+
msgstr ""
|
languages/contact-widgets-vi.mo
ADDED
Binary file
|
languages/contact-widgets-vi.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:07-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: vi\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-zh_CN.mo
ADDED
Binary file
|
languages/contact-widgets-zh_CN.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:07-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: zh_CN\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-zh_HK.mo
ADDED
Binary file
|
languages/contact-widgets-zh_HK.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:07-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: zh_HK\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets-zh_TW.mo
ADDED
Binary file
|
languages/contact-widgets-zh_TW.po
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Widgets\n"
|
4 |
+
"POT-Creation-Date: 2016-02-23 18:07-0600\n"
|
5 |
+
"PO-Revision-Date: \n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.7\n"
|
11 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
|
14 |
+
"_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
|
15 |
+
"esc_html_x;_c;_nc\n"
|
16 |
+
"Last-Translator: \n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
"Language: zh_TW\n"
|
19 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
20 |
+
"X-Poedit-SearchPath-1: includes\n"
|
21 |
+
|
22 |
+
#: contact-widgets.php:88
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
26 |
+
"plugin and contact your system administrator."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: includes/class-contact.php:20
|
30 |
+
msgid "Custom contact links"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/class-contact.php:25
|
34 |
+
msgid "Contact"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
38 |
+
msgid "Title:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
42 |
+
msgid "The title of widget. Leave empty for no title."
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/class-contact.php:152
|
46 |
+
msgid "Email:"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/class-contact.php:159
|
50 |
+
msgid "An email address where website vistors can contact you."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/class-contact.php:162
|
54 |
+
msgid "Phone:"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/class-contact.php:164
|
58 |
+
msgid "A phone number that website vistors can call if they have questions."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/class-contact.php:167
|
62 |
+
msgid "Fax:"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: includes/class-contact.php:169
|
66 |
+
msgid "A fax number that website vistors can use to send important documents."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/class-contact.php:172
|
70 |
+
msgid "Address:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/class-contact.php:177
|
74 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
78 |
+
msgid "Display labels?"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/class-contact.php:190
|
82 |
+
msgid "Display map of address?"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/class-social.php:20
|
86 |
+
msgid "Custom social links"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/class-social.php:25
|
90 |
+
msgid "Social"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/class-social.php:163
|
94 |
+
#, php-format
|
95 |
+
msgid "Visit %s on %s"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/social-networks.php:9
|
99 |
+
msgid "username"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/social-networks.php:10
|
103 |
+
msgid "channel"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/social-networks.php:11
|
107 |
+
msgid "company"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/social-networks.php:12
|
111 |
+
msgid "board"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/social-networks.php:17
|
115 |
+
msgid "Facebook"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/social-networks.php:22
|
119 |
+
msgid "Twitter"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/social-networks.php:28
|
123 |
+
msgid "Google+"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/social-networks.php:34
|
127 |
+
msgid "LinkedIn"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/social-networks.php:39
|
131 |
+
msgid "Pinterest"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/social-networks.php:44
|
135 |
+
msgid "YouTube"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/social-networks.php:49
|
139 |
+
msgid "Vimeo"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/social-networks.php:54
|
143 |
+
msgid "Flickr"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/social-networks.php:59
|
147 |
+
msgid "Foursquare"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/social-networks.php:64
|
151 |
+
msgid "GitHub"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/social-networks.php:69
|
155 |
+
msgid "Slack"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/social-networks.php:74
|
159 |
+
msgid "Skype"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/social-networks.php:80
|
163 |
+
msgid "SoundCloud"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/social-networks.php:85
|
167 |
+
msgid "TripAdvisor"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/social-networks.php:89
|
171 |
+
msgid "WordPress"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/social-networks.php:94
|
175 |
+
msgid "Yelp"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/social-networks.php:99
|
179 |
+
msgid "Amazon"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/social-networks.php:103
|
183 |
+
msgid "Instagram"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/social-networks.php:108
|
187 |
+
msgid "Vine"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/social-networks.php:113
|
191 |
+
msgid "reddit"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/social-networks.php:118
|
195 |
+
msgid "XING"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/social-networks.php:122
|
199 |
+
msgid "Tumblr"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/social-networks.php:127
|
203 |
+
msgid "WhatsApp"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/social-networks.php:131
|
207 |
+
msgid "WeChat"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/social-networks.php:135
|
211 |
+
msgid "Medium"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/social-networks.php:140
|
215 |
+
msgid "Dribbble"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/social-networks.php:145
|
219 |
+
msgid "Twitch"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/social-networks.php:150
|
223 |
+
msgid "VK"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/social-networks.php:154
|
227 |
+
msgid "Trello"
|
228 |
+
msgstr ""
|
languages/contact-widgets.pot
ADDED
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: Contact Widgets\n"
|
5 |
+
"POT-Creation-Date: 2016-02-23 10:49-0500\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.7\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc\n"
|
16 |
+
"X-Poedit-SearchPath-0: contact-widgets.php\n"
|
17 |
+
"X-Poedit-SearchPath-1: includes\n"
|
18 |
+
|
19 |
+
#: contact-widgets.php:88
|
20 |
+
#, php-format
|
21 |
+
msgid "Contact widgets requires PHP version %s or higher. Please deactivate the plugin and contact your system administrator."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: includes/class-contact.php:20
|
25 |
+
msgid "Custom contact links"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: includes/class-contact.php:25
|
29 |
+
msgid "Contact"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: includes/class-contact.php:146 includes/class-social.php:203
|
33 |
+
msgid "Title:"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: includes/class-contact.php:147 includes/class-social.php:204
|
37 |
+
msgid "The title of widget. Leave empty for no title."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: includes/class-contact.php:152
|
41 |
+
msgid "Email:"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: includes/class-contact.php:159
|
45 |
+
msgid "An email address where website vistors can contact you."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: includes/class-contact.php:162
|
49 |
+
msgid "Phone:"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: includes/class-contact.php:164
|
53 |
+
msgid "A phone number that website vistors can call if they have questions."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: includes/class-contact.php:167
|
57 |
+
msgid "Fax:"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: includes/class-contact.php:169
|
61 |
+
msgid "A fax number that website vistors can use to send important documents."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: includes/class-contact.php:172
|
65 |
+
msgid "Address:"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: includes/class-contact.php:177
|
69 |
+
msgid "A physical address where website vistors can go to visit you in person."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: includes/class-contact.php:180 includes/class-social.php:214
|
73 |
+
msgid "Display labels?"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: includes/class-contact.php:190
|
77 |
+
msgid "Display map of address?"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: includes/class-social.php:20
|
81 |
+
msgid "Custom social links"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: includes/class-social.php:25
|
85 |
+
msgid "Social"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: includes/class-social.php:163
|
89 |
+
#, php-format
|
90 |
+
msgid "Visit %s on %s"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/social-networks.php:9
|
94 |
+
msgid "username"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/social-networks.php:10
|
98 |
+
msgid "channel"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/social-networks.php:11
|
102 |
+
msgid "company"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/social-networks.php:12
|
106 |
+
msgid "board"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: includes/social-networks.php:17
|
110 |
+
msgid "Facebook"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: includes/social-networks.php:22
|
114 |
+
msgid "Twitter"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/social-networks.php:28
|
118 |
+
msgid "Google+"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/social-networks.php:34
|
122 |
+
msgid "LinkedIn"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/social-networks.php:39
|
126 |
+
msgid "Pinterest"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/social-networks.php:44
|
130 |
+
msgid "YouTube"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/social-networks.php:49
|
134 |
+
msgid "Vimeo"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/social-networks.php:54
|
138 |
+
msgid "Flickr"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: includes/social-networks.php:59
|
142 |
+
msgid "Foursquare"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/social-networks.php:64
|
146 |
+
msgid "GitHub"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/social-networks.php:69
|
150 |
+
msgid "Slack"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: includes/social-networks.php:74
|
154 |
+
msgid "Skype"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: includes/social-networks.php:80
|
158 |
+
msgid "SoundCloud"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: includes/social-networks.php:85
|
162 |
+
msgid "TripAdvisor"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: includes/social-networks.php:89
|
166 |
+
msgid "WordPress"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/social-networks.php:94
|
170 |
+
msgid "Yelp"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: includes/social-networks.php:99
|
174 |
+
msgid "Amazon"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: includes/social-networks.php:103
|
178 |
+
msgid "Instagram"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: includes/social-networks.php:108
|
182 |
+
msgid "Vine"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: includes/social-networks.php:113
|
186 |
+
msgid "reddit"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: includes/social-networks.php:118
|
190 |
+
msgid "XING"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/social-networks.php:122
|
194 |
+
msgid "Tumblr"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/social-networks.php:127
|
198 |
+
msgid "WhatsApp"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/social-networks.php:131
|
202 |
+
msgid "WeChat"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/social-networks.php:135
|
206 |
+
msgid "Medium"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/social-networks.php:140
|
210 |
+
msgid "Dribbble"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/social-networks.php:145
|
214 |
+
msgid "Twitch"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/social-networks.php:150
|
218 |
+
msgid "VK"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/social-networks.php:154
|
222 |
+
msgid "Trello"
|
223 |
+
msgstr ""
|
readme.txt
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== Contact Widgets ===
|
2 |
+
Contributors: jonathanbardo, fjarrett
|
3 |
+
Tags: widget, contact, social, sharing, share button, share buttons, share links, social icons, social media, facebook, twitter, google plus, instagram
|
4 |
+
Requires at least: 4.4.2
|
5 |
+
Tested up to: 4.4.2
|
6 |
+
Stable tag: trunk
|
7 |
+
|
8 |
+
Display contact information on your website beautifully with these simple widgets.
|
9 |
+
|
10 |
+
== Description ==
|
11 |
+
|
12 |
+
**Note: This plugin requires PHP 5.4 or higher to be activated.**
|
13 |
+
|
14 |
+
This plugin adds 2 new widgets to your WordPress site. One for displaying social media links and another one to display contact information (email, phone numbers, address). Both widgets are compatible with the customizer and will refresh when changes are made.
|
15 |
+
|
16 |
+
**Languages Supported:**
|
17 |
+
|
18 |
+
* English
|
19 |
+
|
20 |
+
== Screenshots ==
|
21 |
+
|
22 |
+
1. Contact widget
|
23 |
+
2. Social widget
|
24 |
+
|
25 |
+
== Changelog ==
|
26 |
+
|
27 |
+
= 1.0.0 - February 23, 2016 =
|
28 |
+
Initial release. Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)
|