Version Description
- February 24, 2016 = Added possibility to add custom fields to contact and social widget
Download this release
Release Info
Developer | jonathanbardo |
Plugin | Contact Widgets |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.1
- contact-widgets.php +2 -2
- includes/class-base-widget.php +3 -44
- includes/class-contact.php +1 -1
- includes/class-social.php +5 -17
- languages/contact-widgets-da_DK.mo +0 -0
- languages/contact-widgets-da_DK.po +80 -68
- languages/contact-widgets-de_DE.mo +0 -0
- languages/contact-widgets-de_DE.po +80 -68
- languages/contact-widgets-el.mo +0 -0
- languages/contact-widgets-el.po +80 -69
- languages/contact-widgets-es_ES.mo +0 -0
- languages/contact-widgets-es_ES.po +80 -68
- languages/contact-widgets-es_MX.mo +0 -0
- languages/contact-widgets-es_MX.po +80 -68
- languages/contact-widgets-fi.mo +0 -0
- languages/contact-widgets-fi.po +80 -68
- languages/contact-widgets-fr_FR.mo +0 -0
- languages/contact-widgets-fr_FR.po +80 -68
- languages/contact-widgets-id_ID.mo +0 -0
- languages/contact-widgets-id_ID.po +80 -68
- languages/contact-widgets-it_IT.mo +0 -0
- languages/contact-widgets-it_IT.po +80 -68
- languages/contact-widgets-ja.mo +0 -0
- languages/contact-widgets-ja.po +81 -67
- languages/contact-widgets-ko_KR.mo +0 -0
- languages/contact-widgets-ko_KR.po +81 -67
- languages/contact-widgets-ms_MY.mo +0 -0
- languages/contact-widgets-ms_MY.po +80 -68
- languages/contact-widgets-nb_NO.mo +0 -0
- languages/contact-widgets-nb_NO.po +80 -68
- languages/contact-widgets-nl_NL.mo +0 -0
- languages/contact-widgets-nl_NL.po +80 -68
- languages/contact-widgets-pl_PL.mo +0 -0
- languages/contact-widgets-pl_PL.po +81 -68
- languages/contact-widgets-pt_BR.mo +0 -0
- languages/contact-widgets-pt_BR.po +0 -216
- languages/contact-widgets-pt_PT.mo +0 -0
- languages/contact-widgets-pt_PT.po +80 -68
- languages/contact-widgets-ru_RU.mo +0 -0
- languages/contact-widgets-ru_RU.po +81 -68
- languages/contact-widgets-sv_SE.mo +0 -0
- languages/contact-widgets-sv_SE.po +80 -68
- languages/contact-widgets-th.mo +0 -0
- languages/contact-widgets-th.po +80 -67
- languages/contact-widgets-tl.mo +0 -0
- languages/contact-widgets-tl.po +80 -68
- languages/contact-widgets-tr_TR.mo +0 -0
- languages/contact-widgets-tr_TR.po +80 -68
- languages/contact-widgets-uk.mo +0 -0
- languages/contact-widgets-uk.po +81 -68
- languages/contact-widgets-vi.mo +0 -0
- languages/contact-widgets-vi.po +80 -68
- languages/contact-widgets-zh_CN.mo +0 -0
- languages/contact-widgets-zh_CN.po +81 -67
- languages/contact-widgets-zh_HK.mo +0 -0
- languages/contact-widgets-zh_HK.po +81 -67
- languages/contact-widgets-zh_TW.mo +0 -0
- languages/contact-widgets-zh_TW.po +81 -67
- languages/contact-widgets.pot +26 -17
- readme.txt +83 -90
contact-widgets.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Contact Widgets
|
4 |
-
* Description:
|
5 |
-
* Version: 1.0.
|
6 |
* Author: Jonathan Bardo & Frankie Jarrett
|
7 |
* Text Domain: contact-widgets
|
8 |
* Domain Path: /languages
|
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.1
|
6 |
* Author: Jonathan Bardo & Frankie Jarrett
|
7 |
* Text Domain: contact-widgets
|
8 |
* Domain Path: /languages
|
includes/class-base-widget.php
CHANGED
@@ -28,14 +28,12 @@ abstract class Base_Widget extends \WP_Widget {
|
|
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 |
-
'show_empty' => false, // Show the field even if value is empty
|
38 |
-
'select_options' => [], // Only used if type=select & form_callback=render_form_select
|
39 |
];
|
40 |
|
41 |
/**
|
@@ -298,45 +296,6 @@ abstract class Base_Widget extends \WP_Widget {
|
|
298 |
|
299 |
}
|
300 |
|
301 |
-
/**
|
302 |
-
* Render select field
|
303 |
-
*
|
304 |
-
* @param array $field
|
305 |
-
*/
|
306 |
-
protected function render_form_select( array $field ) {
|
307 |
-
|
308 |
-
$this->before_form_field( $field );
|
309 |
-
|
310 |
-
printf(
|
311 |
-
'<select class="%s" id="%s" name="%s" autocomplete="off">',
|
312 |
-
esc_attr( $field['class'] ),
|
313 |
-
esc_attr( $field['id'] ),
|
314 |
-
esc_attr( $field['name'] )
|
315 |
-
);
|
316 |
-
|
317 |
-
foreach ( $field['select_options'] as $value => $name ) {
|
318 |
-
|
319 |
-
printf(
|
320 |
-
'<option value="%s" %s>%s</option>',
|
321 |
-
$value,
|
322 |
-
$field['value'] === $value ? 'selected' : '',
|
323 |
-
$name
|
324 |
-
);
|
325 |
-
|
326 |
-
}
|
327 |
-
|
328 |
-
echo '</select>';
|
329 |
-
|
330 |
-
if ( $field['label_after'] ) {
|
331 |
-
|
332 |
-
$this->print_label( $field );
|
333 |
-
|
334 |
-
}
|
335 |
-
|
336 |
-
$this->after_form_field( $field );
|
337 |
-
|
338 |
-
}
|
339 |
-
|
340 |
/**
|
341 |
* Render textarea field for admin widget form
|
342 |
*
|
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 |
/**
|
296 |
|
297 |
}
|
298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
/**
|
300 |
* Render textarea field for admin widget form
|
301 |
*
|
includes/class-contact.php
CHANGED
@@ -17,7 +17,7 @@ final class Contact extends Base_Widget {
|
|
17 |
|
18 |
$widget_options = [
|
19 |
'classname' => 'wpcw-widget-contact',
|
20 |
-
'description' => __( '
|
21 |
];
|
22 |
|
23 |
parent::__construct(
|
17 |
|
18 |
$widget_options = [
|
19 |
'classname' => 'wpcw-widget-contact',
|
20 |
+
'description' => __( 'Custom contact links', 'contact-widgets' ),
|
21 |
];
|
22 |
|
23 |
parent::__construct(
|
includes/class-social.php
CHANGED
@@ -17,7 +17,7 @@ final class Social extends Base_Widget {
|
|
17 |
|
18 |
$widget_options = [
|
19 |
'classname' => 'wpcw-widget-social',
|
20 |
-
'description' => __( '
|
21 |
];
|
22 |
|
23 |
parent::__construct(
|
@@ -96,11 +96,7 @@ final class Social extends Base_Widget {
|
|
96 |
|
97 |
$method = $field['form_callback'];
|
98 |
|
99 |
-
if (
|
100 |
-
is_callable( [ $this, $method ] )
|
101 |
-
&&
|
102 |
-
( ! empty( $field['value'] ) || $field['show_empty'] )
|
103 |
-
) {
|
104 |
|
105 |
$this->$method( $field );
|
106 |
|
@@ -116,7 +112,7 @@ final class Social extends Base_Widget {
|
|
116 |
echo '<div class="default-fields">';
|
117 |
|
118 |
// Template form for JS use
|
119 |
-
$this->render_form_input( $this->field_defaults
|
120 |
|
121 |
echo '</div>'; // End default-fields
|
122 |
|
@@ -160,12 +156,11 @@ final class Social extends Base_Widget {
|
|
160 |
$escape_callback = $field['escaper'];
|
161 |
|
162 |
printf(
|
163 |
-
'<li class="%s"><a href="%s" target="%s" title="%s"><span class="fa fa
|
164 |
$display_labels ? 'has-label' : 'no-label',
|
165 |
$escape_callback( $field['value'] ),
|
166 |
esc_attr( $field['target'] ),
|
167 |
-
sprintf( esc_attr_x( 'Visit %
|
168 |
-
isset( $fields['icon_size']['value'] ) ? esc_attr( $fields['icon_size']['value'] ) : '2x',
|
169 |
esc_attr( $field['icon'] ),
|
170 |
$display_labels ? esc_html( $field['label'] ) : ''
|
171 |
);
|
@@ -247,13 +242,6 @@ final class Social extends Base_Widget {
|
|
247 |
*/
|
248 |
protected function print_label( array $field ) {
|
249 |
|
250 |
-
if ( ! isset( $field['social'] ) ) {
|
251 |
-
|
252 |
-
parent::print_label( $field );
|
253 |
-
return;
|
254 |
-
|
255 |
-
}
|
256 |
-
|
257 |
printf(
|
258 |
'<label for="%s"><span class="fa fa-%s"></span> <span class="text">%s</span></label>',
|
259 |
esc_attr( $field['id'] ),
|
17 |
|
18 |
$widget_options = [
|
19 |
'classname' => 'wpcw-widget-social',
|
20 |
+
'description' => __( 'Custom social links', 'contact-widgets' ),
|
21 |
];
|
22 |
|
23 |
parent::__construct(
|
96 |
|
97 |
$method = $field['form_callback'];
|
98 |
|
99 |
+
if ( is_callable( [ $this, $method ] ) && ! empty( $field['value'] ) ) {
|
|
|
|
|
|
|
|
|
100 |
|
101 |
$this->$method( $field );
|
102 |
|
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 |
|
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 |
);
|
242 |
*/
|
243 |
protected function print_label( array $field ) {
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
printf(
|
246 |
'<label for="%s"><span class="fa fa-%s"></span> <span class="text">%s</span></label>',
|
247 |
esc_attr( $field['id'] ),
|
languages/contact-widgets-da_DK.mo
CHANGED
Binary file
|
languages/contact-widgets-da_DK.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Gå til %1$s på %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Kontaktwidget kræver PHP-version %s eller nyere. Deaktivér plug-in og kontakt "
|
216 |
-
"din systemadministrator."
|
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
CHANGED
Binary file
|
languages/contact-widgets-de_DE.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "%1$s auf %2$s aufrufen"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Kontakt-Widgets benötigen PHP-Version %s oder höher. Bitte deaktivieren Sie "
|
216 |
-
"das Plugin und kontaktieren Sie Ihren Systemadministrator."
|
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
CHANGED
Binary file
|
languages/contact-widgets-el.po
CHANGED
@@ -1,217 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Επισκεφθείτε την %1$s στο %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Τα widget επαφών χρειάζονται την έκδοση %s ή μεταγενέστερη της PHP. "
|
216 |
-
"Παρακαλείστε να απενεργοποιήσετε το plugin και να επικοινωνήσετε με τον "
|
217 |
-
"διαχειριστή του συστήματός σας."
|
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
CHANGED
Binary file
|
languages/contact-widgets-es_ES.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visita %1$s en %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"El widget Contacto requiere la versión %s o superior de PHP. Desactiva el "
|
216 |
-
"complemento y comunícate con el administrador del sistema."
|
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
CHANGED
Binary file
|
languages/contact-widgets-es_MX.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visita %1$s en %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"El widget Contacto requiere la versión %s o superior de PHP. Desactiva el "
|
216 |
-
"complemento y comunícate con el administrador del sistema."
|
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
CHANGED
Binary file
|
languages/contact-widgets-fi.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Vieraile: %1$s - %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Yhteystietosovellukset edellyttävät, että PHP-versio on vähintään %s. Poista "
|
216 |
-
"laajennus käytöstä ja ota yhteyttä järjestelmänvalvojaasi."
|
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
CHANGED
Binary file
|
languages/contact-widgets-fr_FR.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visitez %1$s sur %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Contact Widget nécessite une version PHP %s ou supérieure. Veuillez "
|
216 |
-
"désactiver le plug-in et contacter votre administrateur système."
|
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
CHANGED
Binary file
|
languages/contact-widgets-id_ID.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Kunjungi %1$s di %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Widget kontak memerlukan versi PHP %s atau lebih baru. Harap matikan plugin "
|
216 |
-
"dan hubungi administrator sistem Anda."
|
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
CHANGED
Binary file
|
languages/contact-widgets-it_IT.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visita %1$s su %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Il widget dei contatti richiede la versione PHP %s o una versione più "
|
216 |
-
"recente. Disattiva il plug-in e contatta l'amministratore del sistema."
|
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
CHANGED
Binary file
|
languages/contact-widgets-ja.po
CHANGED
@@ -1,214 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "%2$sにログインして、%1$s にアクセス"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr "連絡先ウィジェットが%s以上のバージョンの PHP を要求しています。 プラグインを無効化してシステム管理者に連絡してください。"
|
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
CHANGED
Binary file
|
languages/contact-widgets-ko_KR.po
CHANGED
@@ -1,214 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "%2$s에 %1$s 방문"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr "연락처 위젯은 PHP 버전 %s 이상을 필요로 합니다. 플러그인을 비활성화하고 귀하의 시스템 관리자에게 연락하십시오."
|
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
CHANGED
Binary file
|
languages/contact-widgets-ms_MY.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visit %1$s on %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Hubungi widget memerlukan versi PHP %s atau lebih tinggi. Sila nyahaktif "
|
216 |
-
"pasang masuk dan hubungi pentadbir sistem anda."
|
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
CHANGED
Binary file
|
languages/contact-widgets-nb_NO.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Besøk %1$s på %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Kontakt-kontrollprogrammer krever PHP-versjon %s eller nyere. Deaktiver "
|
216 |
-
"plugin-modulen og kontakt systemadministratoren din."
|
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
CHANGED
Binary file
|
languages/contact-widgets-nl_NL.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Bezoek %1$s op %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Voor contactwidgets is PHP-versie %s of hoger vereist. Deactiveer de plug-in "
|
216 |
-
"en neem contact op met je systeembeheerder."
|
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
CHANGED
Binary file
|
languages/contact-widgets-pl_PL.po
CHANGED
@@ -1,216 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Odwiedź %1$s w serwisie %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Widżety kontaktu wymagają PHP w wersji %s lub wyższej. Dezaktywuj wtyczkę i "
|
216 |
-
"skontaktuj się z administratorem systemu."
|
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_BR.mo
DELETED
Binary file
|
languages/contact-widgets-pt_BR.po
DELETED
@@ -1,216 +0,0 @@
|
|
1 |
-
#: includes/class-contact.php:20
|
2 |
-
msgid "Display custom contact information."
|
3 |
-
msgstr "Mostrar informações de contato personalizadas."
|
4 |
-
|
5 |
-
#: includes/class-contact.php:25
|
6 |
-
msgid "Contact"
|
7 |
-
msgstr "Contato"
|
8 |
-
|
9 |
-
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
-
msgid "Title:"
|
11 |
-
msgstr "Título:"
|
12 |
-
|
13 |
-
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
-
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "Título do widget. Deixe em branco se não quiser título."
|
16 |
-
|
17 |
-
#: includes/class-contact.php:152
|
18 |
-
msgid "Email:"
|
19 |
-
msgstr "E-mail:"
|
20 |
-
|
21 |
-
#: includes/class-contact.php:159
|
22 |
-
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "Endereço de email para contato com os visitantes do seu site."
|
24 |
-
|
25 |
-
#: includes/class-contact.php:162
|
26 |
-
msgid "Phone:"
|
27 |
-
msgstr "Telefone:"
|
28 |
-
|
29 |
-
#: includes/class-contact.php:164
|
30 |
-
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "Telefone para que os visitantes do seu site possam tirar dúvidas."
|
32 |
-
|
33 |
-
#: includes/class-contact.php:167
|
34 |
-
msgid "Fax:"
|
35 |
-
msgstr "Fax:"
|
36 |
-
|
37 |
-
#: includes/class-contact.php:169
|
38 |
-
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "Fax para que os visitantes do seu site possam enviar documentos importantes."
|
40 |
-
|
41 |
-
#: includes/class-contact.php:172
|
42 |
-
msgid "Address:"
|
43 |
-
msgstr "Endereço:"
|
44 |
-
|
45 |
-
#: includes/class-contact.php:177
|
46 |
-
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "Endereço para que os visitantes do seu site possam visitá-lo pessoalmente."
|
48 |
-
|
49 |
-
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
-
msgid "Display labels?"
|
51 |
-
msgstr "Exibir etiquetas?"
|
52 |
-
|
53 |
-
#: includes/class-contact.php:190
|
54 |
-
msgid "Display map of address?"
|
55 |
-
msgstr "Exibir mapa do endereço?"
|
56 |
-
|
57 |
-
#: includes/class-social.php:20
|
58 |
-
msgid "Display custom social media profile links."
|
59 |
-
msgstr "Mostrar links de perfis personalizados de redes sociais."
|
60 |
-
|
61 |
-
#: includes/class-social.php:25
|
62 |
-
msgid "Social"
|
63 |
-
msgstr "Social"
|
64 |
-
|
65 |
-
#: includes/class-social.php:163
|
66 |
-
#, php-format
|
67 |
-
msgctxt ""
|
68 |
-
"1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visite %1$s no %2$s"
|
72 |
-
|
73 |
-
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
-
msgid "username"
|
76 |
-
msgstr "nomedeusuario"
|
77 |
-
|
78 |
-
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
-
msgid "channel"
|
81 |
-
msgstr "canal"
|
82 |
-
|
83 |
-
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
-
msgid "company"
|
86 |
-
msgstr "empresa"
|
87 |
-
|
88 |
-
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
-
msgid "board"
|
91 |
-
msgstr "fórum"
|
92 |
-
|
93 |
-
#: includes/social-networks.php:17
|
94 |
-
msgid "Facebook"
|
95 |
-
msgstr "Facebook"
|
96 |
-
|
97 |
-
#: includes/social-networks.php:22
|
98 |
-
msgid "Twitter"
|
99 |
-
msgstr "Twitter"
|
100 |
-
|
101 |
-
#: includes/social-networks.php:28
|
102 |
-
msgid "Google+"
|
103 |
-
msgstr "Google+"
|
104 |
-
|
105 |
-
#: includes/social-networks.php:34
|
106 |
-
msgid "LinkedIn"
|
107 |
-
msgstr "LinkedIn"
|
108 |
-
|
109 |
-
#: includes/social-networks.php:39
|
110 |
-
msgid "Pinterest"
|
111 |
-
msgstr "Pinterest"
|
112 |
-
|
113 |
-
#: includes/social-networks.php:44
|
114 |
-
msgid "YouTube"
|
115 |
-
msgstr "YouTube"
|
116 |
-
|
117 |
-
#: includes/social-networks.php:49
|
118 |
-
msgid "Vimeo"
|
119 |
-
msgstr "Vimeo"
|
120 |
-
|
121 |
-
#: includes/social-networks.php:54
|
122 |
-
msgid "Flickr"
|
123 |
-
msgstr "Flickr"
|
124 |
-
|
125 |
-
#: includes/social-networks.php:59
|
126 |
-
msgid "Foursquare"
|
127 |
-
msgstr "Foursquare"
|
128 |
-
|
129 |
-
#: includes/social-networks.php:64
|
130 |
-
msgid "GitHub"
|
131 |
-
msgstr "GitHub"
|
132 |
-
|
133 |
-
#: includes/social-networks.php:69
|
134 |
-
msgid "Slack"
|
135 |
-
msgstr "Slack"
|
136 |
-
|
137 |
-
#: includes/social-networks.php:74
|
138 |
-
msgid "Skype"
|
139 |
-
msgstr "Skype"
|
140 |
-
|
141 |
-
#: includes/social-networks.php:80
|
142 |
-
msgid "SoundCloud"
|
143 |
-
msgstr "SoundCloud"
|
144 |
-
|
145 |
-
#: includes/social-networks.php:85
|
146 |
-
msgid "TripAdvisor"
|
147 |
-
msgstr "TripAdvisor"
|
148 |
-
|
149 |
-
#: includes/social-networks.php:89
|
150 |
-
msgid "WordPress"
|
151 |
-
msgstr "WordPress"
|
152 |
-
|
153 |
-
#: includes/social-networks.php:94
|
154 |
-
msgid "Yelp"
|
155 |
-
msgstr "Yelp"
|
156 |
-
|
157 |
-
#: includes/social-networks.php:99
|
158 |
-
msgid "Amazon"
|
159 |
-
msgstr "Amazon"
|
160 |
-
|
161 |
-
#: includes/social-networks.php:103
|
162 |
-
msgid "Instagram"
|
163 |
-
msgstr "Instagram"
|
164 |
-
|
165 |
-
#: includes/social-networks.php:108
|
166 |
-
msgid "Vine"
|
167 |
-
msgstr "Vine"
|
168 |
-
|
169 |
-
#: includes/social-networks.php:113
|
170 |
-
msgid "reddit"
|
171 |
-
msgstr "reddit"
|
172 |
-
|
173 |
-
#: includes/social-networks.php:118
|
174 |
-
msgid "XING"
|
175 |
-
msgstr "XING"
|
176 |
-
|
177 |
-
#: includes/social-networks.php:122
|
178 |
-
msgid "Tumblr"
|
179 |
-
msgstr "Tumblr"
|
180 |
-
|
181 |
-
#: includes/social-networks.php:127
|
182 |
-
msgid "WhatsApp"
|
183 |
-
msgstr "WhatsApp"
|
184 |
-
|
185 |
-
#: includes/social-networks.php:131
|
186 |
-
msgid "WeChat"
|
187 |
-
msgstr "WeChat"
|
188 |
-
|
189 |
-
#: includes/social-networks.php:135
|
190 |
-
msgid "Medium"
|
191 |
-
msgstr "M"
|
192 |
-
|
193 |
-
#: includes/social-networks.php:140
|
194 |
-
msgid "Dribbble"
|
195 |
-
msgstr "Dribbble"
|
196 |
-
|
197 |
-
#: includes/social-networks.php:145
|
198 |
-
msgid "Twitch"
|
199 |
-
msgstr "Twitch"
|
200 |
-
|
201 |
-
#: includes/social-networks.php:150
|
202 |
-
msgid "VK"
|
203 |
-
msgstr "VK"
|
204 |
-
|
205 |
-
#: includes/social-networks.php:154
|
206 |
-
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr ""
|
215 |
-
"Para usar widgets de contato, é preciso ter versão PHP %s ou superior. "
|
216 |
-
"Desative o plug-in e contate o seu administrador de sistemas."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/contact-widgets-pt_PT.mo
CHANGED
Binary file
|
languages/contact-widgets-pt_PT.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Visitar a %1$s no %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"O widget de contacto requer a versão %s do PHP ou uma versão posterior. "
|
216 |
-
"Desative o suplemento e contacte o administrador do seu sistema."
|
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
CHANGED
Binary file
|
languages/contact-widgets-ru_RU.po
CHANGED
@@ -1,216 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Посетите %1$s на веб-сайте %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Для виджетов контактов требуется PHP версии %s или выше. Отключите плагин и "
|
216 |
-
"обратитесь к системному администратору."
|
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
CHANGED
Binary file
|
languages/contact-widgets-sv_SE.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Besök %1$s på %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Kontaktwidgeten kräver PHP version %s eller senare. Inaktivera "
|
216 |
-
"plugin-programmet och kontakta systemadministratören."
|
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
CHANGED
Binary file
|
languages/contact-widgets-th.po
CHANGED
@@ -1,215 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "เยี่ยมชม %1$s ได้ที่ %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Contact widget ต้องมี PHP เวอร์ชัน %s หรือที่สูงกว่า โปรดปิดใช้งานปลั๊กอินและติดต่อผู้ดูแลระบบของคุณ"
|
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
CHANGED
Binary file
|
languages/contact-widgets-tl.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Bisitahin ang %1$s sa %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Kailangan sa contact widget ang PHP na bersyon %s o mas bago pa. Maaari lang "
|
216 |
-
"huwag paganahin ang plugin at makipag-ugnayan sa iyong system administrator."
|
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
CHANGED
Binary file
|
languages/contact-widgets-tr_TR.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "%2$s %1$s sayfasını ziyaret edin"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Kişi modülleri, PHP sürümünü %s ya da üzerini gerektirir. Lütfen eklentiyi "
|
216 |
-
"devre dışı bırakın ve sistem yöneticinizle iletişime geçin."
|
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
CHANGED
Binary file
|
languages/contact-widgets-uk.po
CHANGED
@@ -1,216 +1,229 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Відвідайте %1$s в %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Для віджета контактів потрібна версія PHP %s або новіша. Деактивуйте плагін і "
|
216 |
-
"зверніться до системного адміністратора."
|
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
CHANGED
Binary file
|
languages/contact-widgets-vi.po
CHANGED
@@ -1,216 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "Truy cập %1$s trên %2$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "Trello"
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
msgstr ""
|
215 |
-
"Widget liên hệ yêu cầu phiên bản PHP %s trở lên. Hãy tắt trình cắm và liên hệ "
|
216 |
-
"với quản trị viên hệ thống."
|
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
CHANGED
Binary file
|
languages/contact-widgets-zh_CN.po
CHANGED
@@ -1,214 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "在 %2$s 上访问 %1$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr "联系工具要求 PHP 版本为 %s 或更高。 请停用插件并联系您的系统管理员。"
|
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
CHANGED
Binary file
|
languages/contact-widgets-zh_HK.po
CHANGED
@@ -1,214 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "在 %2$s 上造訪 %1$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr "聯絡工具程式需要使用 PHP %s 或以上版本。 請停用外掛程式並聯絡您的系統管理員。"
|
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
CHANGED
Binary file
|
languages/contact-widgets-zh_TW.po
CHANGED
@@ -1,214 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
-
msgstr "
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
-
msgstr "
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
-
msgstr "
|
12 |
|
13 |
#: includes/class-contact.php:147 includes/class-social.php:204
|
14 |
msgid "The title of widget. Leave empty for no title."
|
15 |
-
msgstr "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
-
msgstr "
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
-
msgstr "
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
-
msgstr "
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
-
msgstr "
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
-
msgstr "
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
-
msgstr "
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
-
msgstr "
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
-
msgstr "在 %2$s 上造訪 %1$s"
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
-
msgstr "
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: includes/social-networks.php:17
|
94 |
msgid "Facebook"
|
95 |
-
msgstr "
|
96 |
|
97 |
#: includes/social-networks.php:22
|
98 |
msgid "Twitter"
|
99 |
-
msgstr "
|
100 |
|
101 |
#: includes/social-networks.php:28
|
102 |
msgid "Google+"
|
103 |
-
msgstr "
|
104 |
|
105 |
#: includes/social-networks.php:34
|
106 |
msgid "LinkedIn"
|
107 |
-
msgstr "
|
108 |
|
109 |
#: includes/social-networks.php:39
|
110 |
msgid "Pinterest"
|
111 |
-
msgstr "
|
112 |
|
113 |
#: includes/social-networks.php:44
|
114 |
msgid "YouTube"
|
115 |
-
msgstr "
|
116 |
|
117 |
#: includes/social-networks.php:49
|
118 |
msgid "Vimeo"
|
119 |
-
msgstr "
|
120 |
|
121 |
#: includes/social-networks.php:54
|
122 |
msgid "Flickr"
|
123 |
-
msgstr "
|
124 |
|
125 |
#: includes/social-networks.php:59
|
126 |
msgid "Foursquare"
|
127 |
-
msgstr "
|
128 |
|
129 |
#: includes/social-networks.php:64
|
130 |
msgid "GitHub"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: includes/social-networks.php:69
|
134 |
msgid "Slack"
|
135 |
-
msgstr "
|
136 |
|
137 |
#: includes/social-networks.php:74
|
138 |
msgid "Skype"
|
139 |
-
msgstr "
|
140 |
|
141 |
#: includes/social-networks.php:80
|
142 |
msgid "SoundCloud"
|
143 |
-
msgstr "
|
144 |
|
145 |
#: includes/social-networks.php:85
|
146 |
msgid "TripAdvisor"
|
147 |
-
msgstr "
|
148 |
|
149 |
#: includes/social-networks.php:89
|
150 |
msgid "WordPress"
|
151 |
-
msgstr "
|
152 |
|
153 |
#: includes/social-networks.php:94
|
154 |
msgid "Yelp"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/social-networks.php:99
|
158 |
msgid "Amazon"
|
159 |
-
msgstr "
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
-
msgstr "
|
164 |
|
165 |
#: includes/social-networks.php:108
|
166 |
msgid "Vine"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: includes/social-networks.php:113
|
170 |
msgid "reddit"
|
171 |
-
msgstr "
|
172 |
|
173 |
#: includes/social-networks.php:118
|
174 |
msgid "XING"
|
175 |
-
msgstr "
|
176 |
|
177 |
#: includes/social-networks.php:122
|
178 |
msgid "Tumblr"
|
179 |
-
msgstr "
|
180 |
|
181 |
#: includes/social-networks.php:127
|
182 |
msgid "WhatsApp"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: includes/social-networks.php:131
|
186 |
msgid "WeChat"
|
187 |
-
msgstr "
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
-
msgstr "
|
192 |
|
193 |
#: includes/social-networks.php:140
|
194 |
msgid "Dribbble"
|
195 |
-
msgstr "
|
196 |
|
197 |
#: includes/social-networks.php:145
|
198 |
msgid "Twitch"
|
199 |
-
msgstr "
|
200 |
|
201 |
#: includes/social-networks.php:150
|
202 |
msgid "VK"
|
203 |
-
msgstr "
|
204 |
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr "聯絡工具程式需要使用 PHP %s 或以上版本。 請停用外掛程式並聯絡您的系統管理員。"
|
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
CHANGED
@@ -1,5 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
-
msgid "
|
3 |
msgstr ""
|
4 |
|
5 |
#: includes/class-contact.php:25
|
@@ -55,7 +78,7 @@ msgid "Display map of address?"
|
|
55 |
msgstr ""
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
-
msgid "
|
59 |
msgstr ""
|
60 |
|
61 |
#: includes/class-social.php:25
|
@@ -64,29 +87,22 @@ msgstr ""
|
|
64 |
|
65 |
#: includes/class-social.php:163
|
66 |
#, php-format
|
67 |
-
|
68 |
-
"1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
|
69 |
-
"Facebook)"
|
70 |
-
msgid "Visit %1$s on %2$s"
|
71 |
msgstr ""
|
72 |
|
73 |
#: includes/social-networks.php:9
|
74 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
75 |
msgid "username"
|
76 |
msgstr ""
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
msgstr ""
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
msgstr ""
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
-
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
msgstr ""
|
92 |
|
@@ -205,10 +221,3 @@ msgstr ""
|
|
205 |
#: includes/social-networks.php:154
|
206 |
msgid "Trello"
|
207 |
msgstr ""
|
208 |
-
|
209 |
-
#: contact-widgets.php:88
|
210 |
-
#, php-format
|
211 |
-
msgid ""
|
212 |
-
"Contact widgets requires PHP version %s or higher. Please deactivate the "
|
213 |
-
"plugin and contact your system administrator."
|
214 |
-
msgstr ""
|
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
|
78 |
msgstr ""
|
79 |
|
80 |
#: includes/class-social.php:20
|
81 |
+
msgid "Custom social links"
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/class-social.php:25
|
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 |
|
221 |
#: includes/social-networks.php:154
|
222 |
msgid "Trello"
|
223 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,90 +1,83 @@
|
|
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 |
-
|
9 |
-
|
10 |
-
== Description ==
|
11 |
-
|
12 |
-
**Note: This plugin requires PHP 5.4 or higher to be activated.**
|
13 |
-
|
14 |
-
This plugin adds
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
**
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
'
|
67 |
-
'
|
68 |
-
'
|
69 |
-
'
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
Add locales - da_DK de_DE el es_ES es_MX fi fr_FR id_ID it_IT ja ko_KR ms_MY nb_NO nl_NL pl_PL pt_BR pt_PT ru_RU sv_SE th tl tr_TR uk vi zh_CN zh_HK zh_TW
|
85 |
-
|
86 |
-
= 1.0.1 - February 24, 2016 =
|
87 |
-
Added possibility to add custom fields to contact and social widget
|
88 |
-
|
89 |
-
= 1.0.0 - February 23, 2016 =
|
90 |
-
Initial release. Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)
|
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 |
+
**Improvement? Bugs?**
|
21 |
+
|
22 |
+
Please fill out an issue [here](https://github.com/jonathanbardo/WP-Contact-Widgets/issues).
|
23 |
+
|
24 |
+
== Screenshots ==
|
25 |
+
|
26 |
+
1. Contact widget
|
27 |
+
2. Social widget
|
28 |
+
2. Twenty Sixteen theme showing both widgets
|
29 |
+
|
30 |
+
|
31 |
+
== Frequently Asked Questions ==
|
32 |
+
|
33 |
+
### How do I add additional fields to the contact widget?
|
34 |
+
|
35 |
+
Adding additional fields to the contact widget is as simple as adding a WordPress filter.
|
36 |
+
|
37 |
+
Here is an example:
|
38 |
+
<pre lang="php">
|
39 |
+
add_filter( 'wpcw_widget_contact_custom_fields', function( $fields, $instance ) {
|
40 |
+
|
41 |
+
$fields['cellphone'] = [
|
42 |
+
'order' => 2,
|
43 |
+
'label' => __( 'Cellphone:', 'YOURTEXTDOMAIN' ),
|
44 |
+
'type' => 'text',
|
45 |
+
'description' => __( 'A cellphone number that website vistors can call if they have questions.', 'YOURTEXTDOMAIN' ),
|
46 |
+
];
|
47 |
+
|
48 |
+
return $fields;
|
49 |
+
|
50 |
+
}, 10, 2 );
|
51 |
+
</pre>
|
52 |
+
|
53 |
+
### How do I add additional fields to the social widget?
|
54 |
+
|
55 |
+
The social widget requires a different set of options but follows the same principle as above.
|
56 |
+
|
57 |
+
Here is an example:
|
58 |
+
<pre lang="php">
|
59 |
+
add_filter( 'wpcw_widget_social_custom_fields', function( $fields, $instance ) {
|
60 |
+
|
61 |
+
$fields['scribd'] = [
|
62 |
+
'icon' => 'scribd', //See font-awesome icon slug
|
63 |
+
'label' => __( 'Scribd', 'YOURTEXTDOMAIN' ),
|
64 |
+
'default' => 'https://www.scribd.com/username',
|
65 |
+
'select' => 'username',
|
66 |
+
'sanitizer' => 'esc_url_raw',
|
67 |
+
'escaper' => 'esc_url',
|
68 |
+
'social' => true,
|
69 |
+
'target' => '_blank',
|
70 |
+
];
|
71 |
+
|
72 |
+
return $fields;
|
73 |
+
|
74 |
+
}, 10, 2 );
|
75 |
+
</pre>
|
76 |
+
|
77 |
+
== Changelog ==
|
78 |
+
|
79 |
+
= 1.0.1 - February 24, 2016 =
|
80 |
+
Added possibility to add custom fields to contact and social widget
|
81 |
+
|
82 |
+
= 1.0.0 - February 23, 2016 =
|
83 |
+
Initial release. Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)
|
|
|
|
|
|
|
|
|
|
|
|
|
|