Version Description
- February 24, 2016 = 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
Download this release
Release Info
Developer | jonathanbardo |
Plugin | Contact Widgets |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.2
- contact-widgets.php +2 -2
- includes/class-base-widget.php +44 -3
- includes/class-contact.php +2 -1
- includes/class-plugin.php +1 -1
- includes/class-social.php +18 -5
- languages/contact-widgets-da_DK.mo +0 -0
- languages/contact-widgets-da_DK.po +68 -80
- languages/contact-widgets-de_DE.mo +0 -0
- languages/contact-widgets-de_DE.po +68 -80
- languages/contact-widgets-el.mo +0 -0
- languages/contact-widgets-el.po +69 -80
- languages/contact-widgets-es_ES.mo +0 -0
- languages/contact-widgets-es_ES.po +68 -80
- languages/contact-widgets-es_MX.mo +0 -0
- languages/contact-widgets-es_MX.po +68 -80
- languages/contact-widgets-fi.mo +0 -0
- languages/contact-widgets-fi.po +68 -80
- languages/contact-widgets-fr_FR.mo +0 -0
- languages/contact-widgets-fr_FR.po +68 -80
- languages/contact-widgets-id_ID.mo +0 -0
- languages/contact-widgets-id_ID.po +68 -80
- languages/contact-widgets-it_IT.mo +0 -0
- languages/contact-widgets-it_IT.po +68 -80
- languages/contact-widgets-ja.mo +0 -0
- languages/contact-widgets-ja.po +67 -81
- languages/contact-widgets-ko_KR.mo +0 -0
- languages/contact-widgets-ko_KR.po +67 -81
- languages/contact-widgets-ms_MY.mo +0 -0
- languages/contact-widgets-ms_MY.po +68 -80
- languages/contact-widgets-nb_NO.mo +0 -0
- languages/contact-widgets-nb_NO.po +68 -80
- languages/contact-widgets-nl_NL.mo +0 -0
- languages/contact-widgets-nl_NL.po +68 -80
- languages/contact-widgets-pl_PL.mo +0 -0
- languages/contact-widgets-pl_PL.po +68 -81
- languages/contact-widgets-pt_BR.mo +0 -0
- languages/contact-widgets-pt_BR.po +216 -0
- languages/contact-widgets-pt_PT.mo +0 -0
- languages/contact-widgets-pt_PT.po +68 -80
- languages/contact-widgets-ru_RU.mo +0 -0
- languages/contact-widgets-ru_RU.po +68 -81
- languages/contact-widgets-sv_SE.mo +0 -0
- languages/contact-widgets-sv_SE.po +68 -80
- languages/contact-widgets-th.mo +0 -0
- languages/contact-widgets-th.po +67 -80
- languages/contact-widgets-tl.mo +0 -0
- languages/contact-widgets-tl.po +68 -80
- languages/contact-widgets-tr_TR.mo +0 -0
- languages/contact-widgets-tr_TR.po +68 -80
- languages/contact-widgets-uk.mo +0 -0
- languages/contact-widgets-uk.po +68 -81
- languages/contact-widgets-vi.mo +0 -0
- languages/contact-widgets-vi.po +68 -80
- languages/contact-widgets-zh_CN.mo +0 -0
- languages/contact-widgets-zh_CN.po +67 -81
- languages/contact-widgets-zh_HK.mo +0 -0
- languages/contact-widgets-zh_HK.po +67 -81
- languages/contact-widgets-zh_TW.mo +0 -0
- languages/contact-widgets-zh_TW.po +67 -81
- languages/contact-widgets.pot +17 -26
- readme.txt +64 -2
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: Beautifully display social media and contact information on your website with these simple widgets.
|
5 |
+
* Version: 1.0.2
|
6 |
* Author: Jonathan Bardo & Frankie Jarrett
|
7 |
* Text Domain: contact-widgets
|
8 |
* Domain Path: /languages
|
includes/class-base-widget.php
CHANGED
@@ -28,12 +28,14 @@ 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 |
];
|
38 |
|
39 |
/**
|
@@ -296,6 +298,45 @@ abstract class Base_Widget extends \WP_Widget {
|
|
296 |
|
297 |
}
|
298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
/**
|
300 |
* Render textarea field for admin widget form
|
301 |
*
|
28 |
'sanitizer' => 'sanitize_text_field',
|
29 |
'escaper' => 'esc_html',
|
30 |
'form_callback' => 'render_form_input',
|
31 |
+
'default' => '', // Used mainly for social fields to add default value
|
32 |
'value' => '',
|
33 |
'placeholder' => '',
|
34 |
'sortable' => true,
|
35 |
+
'atts' => '', // Input attributes
|
36 |
+
'show_front_end' => true, // Are we showing this field on the front end?
|
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 |
|
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 |
*
|
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(
|
@@ -198,6 +198,7 @@ final class Contact extends Base_Widget {
|
|
198 |
],
|
199 |
];
|
200 |
|
|
|
201 |
$fields = parent::get_fields( $instance, $fields );
|
202 |
|
203 |
/**
|
17 |
|
18 |
$widget_options = [
|
19 |
'classname' => 'wpcw-widget-contact',
|
20 |
+
'description' => __( 'Display custom contact information.', 'contact-widgets' ),
|
21 |
];
|
22 |
|
23 |
parent::__construct(
|
198 |
],
|
199 |
];
|
200 |
|
201 |
+
$fields = apply_filters( 'wpcw_widget_contact_custom_fields', $fields, $instance );
|
202 |
$fields = parent::get_fields( $instance, $fields );
|
203 |
|
204 |
/**
|
includes/class-plugin.php
CHANGED
@@ -15,7 +15,7 @@ class Plugin {
|
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
-
public static $version = '1.0.
|
19 |
|
20 |
/**
|
21 |
* Class constructor
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
+
public static $version = '1.0.1';
|
19 |
|
20 |
/**
|
21 |
* Class constructor
|
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,7 +96,11 @@ final class Social extends Base_Widget {
|
|
96 |
|
97 |
$method = $field['form_callback'];
|
98 |
|
99 |
-
if (
|
|
|
|
|
|
|
|
|
100 |
|
101 |
$this->$method( $field );
|
102 |
|
@@ -112,7 +116,7 @@ final class Social extends Base_Widget {
|
|
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,11 +160,12 @@ final class Social extends Base_Widget {
|
|
156 |
$escape_callback = $field['escaper'];
|
157 |
|
158 |
printf(
|
159 |
-
'<li class="%s"><a href="%s" target="%s" title="%s"><span class="fa fa
|
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 |
);
|
@@ -221,6 +226,7 @@ final class Social extends Base_Widget {
|
|
221 |
'show_front_end' => false,
|
222 |
];
|
223 |
|
|
|
224 |
$fields = parent::get_fields( $instance, $fields, $ordered );
|
225 |
|
226 |
/**
|
@@ -241,6 +247,13 @@ final class Social extends Base_Widget {
|
|
241 |
*/
|
242 |
protected function print_label( array $field ) {
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
printf(
|
245 |
'<label for="%s"><span class="fa fa-%s"></span> <span class="text">%s</span></label>',
|
246 |
esc_attr( $field['id'] ),
|
17 |
|
18 |
$widget_options = [
|
19 |
'classname' => 'wpcw-widget-social',
|
20 |
+
'description' => __( 'Display custom social media profile links.', 'contact-widgets' ),
|
21 |
];
|
22 |
|
23 |
parent::__construct(
|
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 |
echo '<div class="default-fields">';
|
117 |
|
118 |
// Template form for JS use
|
119 |
+
$this->render_form_input( $this->field_defaults + [ 'social' => true ] );
|
120 |
|
121 |
echo '</div>'; // End default-fields
|
122 |
|
160 |
$escape_callback = $field['escaper'];
|
161 |
|
162 |
printf(
|
163 |
+
'<li class="%s"><a href="%s" target="%s" title="%s"><span class="fa fa-%s fa-%s"></span>%s</a></li>',
|
164 |
$display_labels ? 'has-label' : 'no-label',
|
165 |
$escape_callback( $field['value'] ),
|
166 |
esc_attr( $field['target'] ),
|
167 |
+
sprintf( esc_attr_x( 'Visit %1$s on %2$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'] ),
|
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 |
);
|
226 |
'show_front_end' => false,
|
227 |
];
|
228 |
|
229 |
+
$fields = apply_filters( 'wpcw_widget_social_custom_fields', $fields, $instance );
|
230 |
$fields = parent::get_fields( $instance, $fields, $ordered );
|
231 |
|
232 |
/**
|
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'] ),
|
languages/contact-widgets-da_DK.mo
CHANGED
Binary file
|
languages/contact-widgets-da_DK.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Vis brugerdefinerede kontaktoplysninger."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Kontakt"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Titel:"
|
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 "Titlen på widget Efterlad tom, hvis ingen titel."
|
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 "En e-mailadresse, hvor websidegæster kan kontakte dig."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Et telefonnummer, som websidegæster kan ringe til, hvis de har spørgsmål."
|
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 "Et faxnummer, som websidegæster kan bruge til at sende vigtige dokumenter."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adresse:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "En fysisk adresse, hvor websidegæster kan besøge dig personligt."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Vis etiketter?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Vis kort med adresse?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Vis brugerdefinerede links til profiler på sociale medier."
|
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 "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 "brugernavn"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanal"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "firma"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "forum"
|
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 "Medium"
|
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 |
+
"Kontaktwidget kræver PHP-version %s eller nyere. Deaktivér plug-in og kontakt "
|
216 |
+
"din systemadministrator."
|
languages/contact-widgets-de_DE.mo
CHANGED
Binary file
|
languages/contact-widgets-de_DE.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Benutzerdefinierte Kontaktdaten anzeigen."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Kontakt"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Titel:"
|
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 "Titel des Widgets. Freilassen für keinen Titel."
|
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 "Eine E-Mail-Adresse, mit der sich Website-Besucher mit Ihnen in Verbindung setzen können."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Eine Telefonnummer, unter der sich Website-Besucher bei Ihnen melden können, falls diese Fragen haben."
|
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 "Eine Faxnummer, an die Website-Besucher wichtige Dokumente senden können."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adresse:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Eine Adresse, unter der Sie Website-Besucher persönlich besuchen können."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Labels anzeigen?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Karte zu Adresse anzeigen?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Benutzerdefinierte Links zu Profilen in sozialen Netzwerken anzeigen."
|
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 "%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 "benutzername"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "Kanal"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "Unternehmen"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "Board"
|
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 "Medium"
|
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 |
+
"Kontakt-Widgets benötigen PHP-Version %s oder höher. Bitte deaktivieren Sie "
|
216 |
+
"das Plugin und kontaktieren Sie Ihren Systemadministrator."
|
languages/contact-widgets-el.mo
CHANGED
Binary file
|
languages/contact-widgets-el.po
CHANGED
@@ -1,228 +1,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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Ο τίτλος του widget. Να παραμείνει κενό αν δεν υπάρχει τίτλος "
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Email:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Μια διεύθυνση email στην οποία οι επισκέπτες του ιστοτόπου μπορούν να επικοινωνήσουν μαζί σας."
|
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 "Display custom social media profile links."
|
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 |
+
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 "Επισκεφθείτε την %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 "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 "Medium"
|
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 |
+
"Τα widget επαφών χρειάζονται την έκδοση %s ή μεταγενέστερη της PHP. "
|
216 |
+
"Παρακαλείστε να απενεργοποιήσετε το plugin και να επικοινωνήσετε με τον "
|
217 |
+
"διαχειριστή του συστήματός σας."
|
languages/contact-widgets-es_ES.mo
CHANGED
Binary file
|
languages/contact-widgets-es_ES.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Mostrar información personalizada de contacto."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contacto"
|
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 "El título del widget. Dejar vacío si no tiene título."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Correo electrónico:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Una dirección de correo electrónico donde los visitantes al sitio web pueden comunicarse contigo."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Teléfono:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Un número de teléfono al cual pueden llamar los visitantes al sitio web en caso de tener preguntas."
|
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 "Un número de fax que pueden usar los visitantes al sitio web para enviar documentos importantes."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Dirección:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Una dirección física a la cual pueden dirigirse los visitantes al sitio web para visitarte en persona"
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "¿Mostrar etiquetas?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "¿Mostrar mapa de direcciones?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Mostrar enlaces personalizados del perfil de medios sociales."
|
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 "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 "nombre de usuario"
|
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 "tablero"
|
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 "Medium"
|
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 |
+
"El widget Contacto requiere la versión %s o superior de PHP. Desactiva el "
|
216 |
+
"complemento y comunícate con el administrador del sistema."
|
languages/contact-widgets-es_MX.mo
CHANGED
Binary file
|
languages/contact-widgets-es_MX.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Mostrar información personalizada de contacto."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contacto"
|
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 "El título del widget. Dejar vacío si no tiene título."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Correo electrónico:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Una dirección de correo electrónico donde los visitantes al sitio web pueden comunicarse contigo."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Teléfono:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Un número de teléfono al cual pueden llamar los visitantes al sitio web en caso de tener preguntas."
|
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 "Un número de fax que pueden usar los visitantes al sitio web para enviar documentos importantes."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Dirección:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Una dirección física a la cual pueden dirigirse los visitantes al sitio web para visitarte en persona"
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "¿Mostrar etiquetas?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "¿Mostrar mapa de direcciones?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Mostrar enlaces personalizados del perfil de medios sociales."
|
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 "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 "nombre de usuario"
|
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 "tablero"
|
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 "Medium"
|
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 |
+
"El widget Contacto requiere la versión %s o superior de PHP. Desactiva el "
|
216 |
+
"complemento y comunícate con el administrador del sistema."
|
languages/contact-widgets-fi.mo
CHANGED
Binary file
|
languages/contact-widgets-fi.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Näytä mukautetut yhteystiedot."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Yhteydenotot"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Otsikko:"
|
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 "Pienoissovelluksen nimi. Jätä tyhjäksi, jos et halua valita nimeä."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Sähköposti:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Sähköpostiosoite, jonka kautta sivuston vierailijat voivat ottaa sinuun yhteyttä."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Puhelin:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Puhelinnumero, johon sivuston vierailijat voivat soittaa, jos heillä on kysyttävää."
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
+
msgstr "Faksi:"
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
+
msgstr "Faksinumero, jota sivuston vierailijat voivat käyttää tärkeiden asiakirjojen lähettämiseen."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Osoite:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Fyysinen osoite, jossa sivuston vierailijat voivat käydä henkilökohtaisesti."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Näytetäänkö selitteet?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Näytetäänkö osoitteen kartta?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Näytä mukautetut sosiaalisen median profiilien linkit."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Sosiaalinen"
|
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 "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 "käyttäjänimi"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanava"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "yritys"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "foorumi"
|
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 "Medium"
|
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 |
+
"Yhteystietosovellukset edellyttävät, että PHP-versio on vähintään %s. Poista "
|
216 |
+
"laajennus käytöstä ja ota yhteyttä järjestelmänvalvojaasi."
|
languages/contact-widgets-fr_FR.mo
CHANGED
Binary file
|
languages/contact-widgets-fr_FR.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Affichez les coordonnées personnalisées."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contact"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Titre :"
|
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 "Le titre du widget. Laisser vierge pour ne pas avoir de titre."
|
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 "Une adresse email à laquelle les visiteurs du site Web peuvent vous contacter."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Téléphone :"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Un numéro de téléphone auquel les visiteurs du site Web peuvent vous appeler s'ils ont des questions."
|
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 "Un numéro de fax que les visiteurs du site Web peuvent utiliser pour envoyer des documents importants."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adresse :"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Une adresse physique à laquelle les visiteurs du site Web peuvent se rendre pour vous voir."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Afficher les étiquettes ?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Afficher un plan de l'adresse ?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Affichez les liens des profils de médias sociaux personnalisés."
|
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 "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 "nom d’utilisateur"
|
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 "société"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "tableau"
|
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 "Medium"
|
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 |
+
"Contact Widget nécessite une version PHP %s ou supérieure. Veuillez "
|
216 |
+
"désactiver le plug-in et contacter votre administrateur système."
|
languages/contact-widgets-id_ID.mo
CHANGED
Binary file
|
languages/contact-widgets-id_ID.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Tampilkan informasi kontak yang disesuaikan."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Kontak"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Judul:"
|
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 "Judul widget. Biarkan kosong tanpa judul."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Email:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Alamat email yang dapat digunakan pengunjung situs web untuk menghubungi Anda."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telepon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Nomor telepon yang dapat dihubungi pengunjung situs web jika ingin mengajukan pertanyaan."
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
+
msgstr "Faks:"
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
+
msgstr "Nomor faks yang dapat digunakan pengunjung situs web untuk mengirimkan dokumen penting."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Alamat:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Alamat fisik yang dapat dikunjungi pengunjung situs web untuk bertemu Anda secara langsung."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Tampilkan label?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Tampilkan peta alamat?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Tampilkan tautan profil media sosial yang disesuaikan."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Sosial"
|
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 "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 "nama pengguna"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "saluran"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "perusahaan"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "media"
|
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 "Medium"
|
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 |
+
"Widget kontak memerlukan versi PHP %s atau lebih baru. Harap matikan plugin "
|
216 |
+
"dan hubungi administrator sistem Anda."
|
languages/contact-widgets-it_IT.mo
CHANGED
Binary file
|
languages/contact-widgets-it_IT.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Visualizza informazioni di contatto personalizzate."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contattaci"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Titolo:"
|
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 "Il titolo del widget. Lascia il campo vuoto se vuoi omettere il titolo."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Email:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "L'indirizzo email al quale i visitatori del sito web possono contattarti."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefono:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Il numero di telefono che i visitatori del sito web possono usare per chiamarti in caso di domande."
|
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 "Il numero di fax che i visitatori del sito web possono usare per inviarti documenti importanti."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Indirizzo:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "L'indirizzo fisico presso il quale i visitatori del sito web possono venire di persona."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Vuoi visualizzare le etichette?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Vuoi visualizzare la mappa dell'indirizzo?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Visualizza link personalizzati a profili di social media."
|
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 "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 "nome utente"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "canale"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "azienda"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "bacheca"
|
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 "Medium"
|
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 |
+
"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."
|
languages/contact-widgets-ja.mo
CHANGED
Binary file
|
languages/contact-widgets-ja.po
CHANGED
@@ -1,228 +1,214 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Webサイト訪問者があなたに連絡するためのメールアドレス。"
|
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 "Webサイト訪問者が質問する際に電話するための電話番号。"
|
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 "Webサイト訪問者が重要な書類を送信するための FAX番号。"
|
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 "Webサイト訪問者が個人的に訪問するための住所。"
|
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 "Display custom social media profile links."
|
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 |
+
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 "%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 "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 "Medium"
|
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 "連絡先ウィジェットが%s以上のバージョンの PHP を要求しています。 プラグインを無効化してシステム管理者に連絡してください。"
|
languages/contact-widgets-ko_KR.mo
CHANGED
Binary file
|
languages/contact-widgets-ko_KR.po
CHANGED
@@ -1,228 +1,214 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "%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 "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 "워드프레스"
|
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 "Medium"
|
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 "연락처 위젯은 PHP 버전 %s 이상을 필요로 합니다. 플러그인을 비활성화하고 귀하의 시스템 관리자에게 연락하십시오."
|
languages/contact-widgets-ms_MY.mo
CHANGED
Binary file
|
languages/contact-widgets-ms_MY.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Display custom contact information."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Hubungan"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Tajuk:"
|
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 "Tajuk widget Biarkan kosong untuk yang tiada tajuk"
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "E-mel:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Alamat e-mel di mana pelawat halaman utama boleh menghubungi anda"
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Nombor telefon yang pelawat halaman utama boleh panggil jika mereka mempunyai soalan."
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
+
msgstr "Faks:"
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
+
msgstr "Nombor faks di mana pelawat halaman utama boleh gunakan untuk menghantar dokumen penting,"
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Alamat:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Alamat fizikal di mana halaman utama boleh pergi untuk melawat anda sendiri."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Paparkan label?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Paparkan peta alamat?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Display custom social media profile links."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Sosial"
|
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 "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 "nama pengguna"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "saluran"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "syarikat "
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "papan"
|
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 "Medium"
|
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 |
+
"Hubungi widget memerlukan versi PHP %s atau lebih tinggi. Sila nyahaktif "
|
216 |
+
"pasang masuk dan hubungi pentadbir sistem anda."
|
languages/contact-widgets-nb_NO.mo
CHANGED
Binary file
|
languages/contact-widgets-nb_NO.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Vis egendefinert kontaktinformasjon."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Kontakt"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Tittel:"
|
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 "Navnet på kontrollprogrammet. La stå tomt hvis navn ikke finnes."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "E-post:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "En e-postadresse besøkende til nettstedet kan kontakte deg på."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Et telefonnummer besøkende til nettstedet kan ringe hvis de har spørsmål."
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
+
msgstr "Faks:"
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
+
msgstr "Et faksnummer besøkende til nettstedet kan bruke til å sende viktige dokumenter."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adresse:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "En fysisk adresse besøkende til nettstedet kan dra til for å besøke deg personlig."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Vis etiketter?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Vis kart over adresse?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Vis egendefinerte koblinger til profiler på sosiale medier"
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Sosial"
|
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 "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 "brukernavn"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanal"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "selskap"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "brett"
|
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 "Medium"
|
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 |
+
"Kontakt-kontrollprogrammer krever PHP-versjon %s eller nyere. Deaktiver "
|
216 |
+
"plugin-modulen og kontakt systemadministratoren din."
|
languages/contact-widgets-nl_NL.mo
CHANGED
Binary file
|
languages/contact-widgets-nl_NL.po
CHANGED
@@ -1,228 +1,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=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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Geef aangepaste contactinformatie weer."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contact"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Titel:"
|
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 "De titel van de widget. Laat leeg voor geen titel."
|
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 "Een e-mailadres waar websitebezoekers contact met je kunnen opnemen."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefoon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Een telefoonnummer dat websitebezoekers kunnen bellen als ze vragen hebben."
|
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 "Een faxnummer dat websitebezoekers kunnen gebruiken om belangrijke documenten te verzenden."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adres:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Een fysiek adres waar websitebezoekers u persoonlijk kunnen bezoeken."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Labels weergeven?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Kaart van adres weergeven?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Geef aangepaste koppelingen naar sociale mediaprofielen weer."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Sociaal"
|
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 "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 "gebruikersnaam"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanaal"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "bedrijf"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "board"
|
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 "Medium"
|
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 |
+
"Voor contactwidgets is PHP-versie %s of hoger vereist. Deactiveer de plug-in "
|
216 |
+
"en neem contact op met je systeembeheerder."
|
languages/contact-widgets-pl_PL.mo
CHANGED
Binary file
|
languages/contact-widgets-pl_PL.po
CHANGED
@@ -1,229 +1,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==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 "
|
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 "
|
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 |
-
|
97 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Wyświetl niestandardowe dane kontaktowe."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Kontakt"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Tytuł:"
|
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 "Tytuł widżetu. Pozostaw pole puste, jeśli nie chcesz tytułu."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Adres e-mail:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Adres e-mail, pod jakim odwiedzający witrynę mogą się z Tobą skontaktować."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Nr tel.:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Numer telefonu, pod jaki mogą zadzwonić odwiedzający witrynę w razie pytań."
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
+
msgstr "Faks:"
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
+
msgstr "Numer faksu, pod jaki odwiedzający witrynę mogą przesłać ważne dokumenty."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adres:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Adres, pod jakim odwiedzający witrynę mogą odwiedzić Cię osobiście."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Wyświetlać etykiety?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Wyświetlać mapę z adresem?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Wyświetl niestandardowe łącza do profili w mediach społecznościowych."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Media społecznościowe"
|
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 "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 "nazwa użytkownika"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanał"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "firmę"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "tablicę"
|
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 "system 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 "Medium"
|
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 |
+
"Widżety kontaktu wymagają PHP w wersji %s lub wyższej. Dezaktywuj wtyczkę i "
|
216 |
+
"skontaktuj się z administratorem systemu."
|
languages/contact-widgets-pt_BR.mo
ADDED
Binary file
|
languages/contact-widgets-pt_BR.po
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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,228 +1,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=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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Apresente informações de contacto personalizadas."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contacto"
|
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 "O título do widget. Deixe em branco para não atribuir um 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 "Um endereço de correio eletrónico através do qual os visitantes do sítio da internet o podem contactar."
|
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 "Um número de telefone para o qual os visitantes do sítio da internet podem ligar se pretenderem esclarecer alguma questão."
|
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 "Um número de fax que os visitantes do sítio da internet podem utilizar para 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 "Um endereço físico onde os visitantes do sítio da internet o podem visitar pessoalmente."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Apresentar etiquetas?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Apresentar mapa do endereço?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Apresente ligações personalizadas para perfis nas redes sociais."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Redes sociais"
|
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 "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 "nome de utilizador"
|
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 "Medium"
|
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 |
+
"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."
|
languages/contact-widgets-ru_RU.mo
CHANGED
Binary file
|
languages/contact-widgets-ru_RU.po
CHANGED
@@ -1,229 +1,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 "
|
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 "
|
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 |
-
|
97 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "Посетите %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 "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 "Medium"
|
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 |
+
"Для виджетов контактов требуется PHP версии %s или выше. Отключите плагин и "
|
216 |
+
"обратитесь к системному администратору."
|
languages/contact-widgets-sv_SE.mo
CHANGED
Binary file
|
languages/contact-widgets-sv_SE.po
CHANGED
@@ -1,228 +1,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=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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Visa anpassad kontaktinformation."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Kontakt"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Titel:"
|
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 "Widgetens namn. Lämna tomt om den ska vara namnlös."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "E-post:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "En e-postadress som webbplatsbesökarna kan kontakta dig på."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Ett telefonnummer som webbplatsbesökarna kan ringa om de undrar något."
|
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 "Ett faxnummer som webbplatsbesökarna kan använda för att skicka viktiga dokument."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adress:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "En fysisk adress där webbplatsbesökarna kan besöka dig personligen."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Visa etiketter?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Visa karta för adressen?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Visa anpassade länkar för social medieprofil."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Länkar till sociala medier"
|
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 "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 "användarnamn"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanal"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "företag"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "diskussionstavla"
|
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 "Medium"
|
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 |
+
"Kontaktwidgeten kräver PHP version %s eller senare. Inaktivera "
|
216 |
+
"plugin-programmet och kontakta systemadministratören."
|
languages/contact-widgets-th.mo
CHANGED
Binary file
|
languages/contact-widgets-th.po
CHANGED
@@ -1,228 +1,215 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "เยี่ยมชม %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 "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 "อเมซอน"
|
160 |
|
161 |
#: includes/social-networks.php:103
|
162 |
msgid "Instagram"
|
163 |
+
msgstr "อินสตาแกรม"
|
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 "Medium"
|
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 |
+
"Contact widget ต้องมี PHP เวอร์ชัน %s หรือที่สูงกว่า โปรดปิดใช้งานปลั๊กอินและติดต่อผู้ดูแลระบบของคุณ"
|
languages/contact-widgets-tl.mo
CHANGED
Binary file
|
languages/contact-widgets-tl.po
CHANGED
@@ -1,228 +1,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=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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Ipakita ang custom na impormasyon sa pakikipag-ugnayan."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Contact"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Title:"
|
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 "Ang pangalan ng widget. Iwanang walang laman para sa walang pangalan."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Email:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Isang email address kung saan ang mga bisita ng website ay maaaring makipag-ugnayan sa iyo."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telepono:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Isang numero ng teepono na matatawagan ng mga bisita ng website kung may mga tanong sila."
|
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 "Ang numero ng fax na magagamit ng mga bisita ng website para makapagpadala ng mga importanteng dokumento."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Address:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Isang pisikal na address kung saan makakapunta ang mga bisita ng website para makilala kayo nang personal."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Ipakita ang mga etiketa?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Ipakita ang mapa ng address?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Ipakita ang mga custom na link ng profile sa social media."
|
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 "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 "username"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "channel"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "kumpanya"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "board"
|
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 "Medium"
|
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 |
+
"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."
|
languages/contact-widgets-tr_TR.mo
CHANGED
Binary file
|
languages/contact-widgets-tr_TR.po
CHANGED
@@ -1,228 +1,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=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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Özel irtibat bilgilerini görüntüle."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "İletişim"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Başlık:"
|
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 "Modülün adı. Herhangi bir ad yoksa boş bırakın."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "E-posta:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Web sitesi ziyaretçilerinin sizinle iletişim kurabileceği bir e-posta adresi."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Telefon:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Web sitesi ziyaretçilerinin soru sormak için arayabileceği bir telefon numarası."
|
32 |
|
33 |
#: includes/class-contact.php:167
|
34 |
msgid "Fax:"
|
35 |
+
msgstr "Faks:"
|
36 |
|
37 |
#: includes/class-contact.php:169
|
38 |
msgid "A fax number that website vistors can use to send important documents."
|
39 |
+
msgstr "Web sitesi ziyaretçilerinin önemli belgeleri gönderebileceği bir faks numarası."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Adres:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Web sitesi ziyaretçilerinin sizi bire bir ziyaret edebileceği bir açık adres."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Etiketler görüntülensin mi?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Adresin haritadaki konumu görüntülensin mi?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Özel sosyal medya profil bağlantılarını görüntüle."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Sosyal"
|
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 "%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 "kullanıcı adı"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kanal"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "şirket"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "pano"
|
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 "Medium"
|
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 |
+
"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."
|
languages/contact-widgets-uk.mo
CHANGED
Binary file
|
languages/contact-widgets-uk.po
CHANGED
@@ -1,229 +1,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 "
|
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 "
|
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 |
-
|
97 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "Відвідайте %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 "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 "Medium"
|
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 |
+
"Для віджета контактів потрібна версія PHP %s або новіша. Деактивуйте плагін і "
|
216 |
+
"зверніться до системного адміністратора."
|
languages/contact-widgets-vi.mo
CHANGED
Binary file
|
languages/contact-widgets-vi.po
CHANGED
@@ -1,228 +1,216 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
+
msgstr "Hiển thị thông tin liên hệ tùy chỉnh."
|
4 |
|
5 |
#: includes/class-contact.php:25
|
6 |
msgid "Contact"
|
7 |
+
msgstr "Liên hệ"
|
8 |
|
9 |
#: includes/class-contact.php:146 includes/class-social.php:203
|
10 |
msgid "Title:"
|
11 |
+
msgstr "Tiêu đề:"
|
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 "Tiêu đề widget. Để trống nếu không có tiêu đề."
|
16 |
|
17 |
#: includes/class-contact.php:152
|
18 |
msgid "Email:"
|
19 |
+
msgstr "Email:"
|
20 |
|
21 |
#: includes/class-contact.php:159
|
22 |
msgid "An email address where website vistors can contact you."
|
23 |
+
msgstr "Địa chỉ email mà khách truy cập trang có thể sử dụng để liên hệ với bạn."
|
24 |
|
25 |
#: includes/class-contact.php:162
|
26 |
msgid "Phone:"
|
27 |
+
msgstr "Điện thoại:"
|
28 |
|
29 |
#: includes/class-contact.php:164
|
30 |
msgid "A phone number that website vistors can call if they have questions."
|
31 |
+
msgstr "Số điện thoại mà khách truy cập trang có thể gọi nếu họ có thắc mắc."
|
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 "Số fax mà khách truy cập trang có thể sử dụng để gửi những tài liệu quan trọng."
|
40 |
|
41 |
#: includes/class-contact.php:172
|
42 |
msgid "Address:"
|
43 |
+
msgstr "Địa chỉ:"
|
44 |
|
45 |
#: includes/class-contact.php:177
|
46 |
msgid "A physical address where website vistors can go to visit you in person."
|
47 |
+
msgstr "Địa chỉ thực tế mà khách truy cập trang có thể đến để gặp bạn trực tiếp."
|
48 |
|
49 |
#: includes/class-contact.php:180 includes/class-social.php:214
|
50 |
msgid "Display labels?"
|
51 |
+
msgstr "Hiển thị nhãn?"
|
52 |
|
53 |
#: includes/class-contact.php:190
|
54 |
msgid "Display map of address?"
|
55 |
+
msgstr "Hiển thị bản đồ địa chỉ?"
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
+
msgstr "Hiển thị liên kết truyền thông xã hội tùy chỉnh."
|
60 |
|
61 |
#: includes/class-social.php:25
|
62 |
msgid "Social"
|
63 |
+
msgstr "Mạng xã hội"
|
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 "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 "tên người dùng"
|
77 |
|
78 |
#: includes/social-networks.php:10
|
79 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
80 |
msgid "channel"
|
81 |
+
msgstr "kênh"
|
82 |
|
83 |
#: includes/social-networks.php:11
|
84 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
85 |
msgid "company"
|
86 |
+
msgstr "công ty"
|
87 |
|
88 |
#: includes/social-networks.php:12
|
89 |
+
msgctxt "Must be lowercase and use url-safe characters"
|
90 |
msgid "board"
|
91 |
+
msgstr "diễn đàn"
|
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 "Phương tiện"
|
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 |
+
"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."
|
languages/contact-widgets-zh_CN.mo
CHANGED
Binary file
|
languages/contact-widgets-zh_CN.po
CHANGED
@@ -1,228 +1,214 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "在 %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 "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 "微信"
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
+
msgstr "Medium"
|
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 "联系工具要求 PHP 版本为 %s 或更高。 请停用插件并联系您的系统管理员。"
|
languages/contact-widgets-zh_HK.mo
CHANGED
Binary file
|
languages/contact-widgets-zh_HK.po
CHANGED
@@ -1,228 +1,214 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "在 %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 "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 "微信"
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
+
msgstr "中"
|
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 "聯絡工具程式需要使用 PHP %s 或以上版本。 請停用外掛程式並聯絡您的系統管理員。"
|
languages/contact-widgets-zh_TW.mo
CHANGED
Binary file
|
languages/contact-widgets-zh_TW.po
CHANGED
@@ -1,228 +1,214 @@
|
|
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 "
|
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 "
|
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 |
-
|
96 |
-
|
|
|
|
|
|
|
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 ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
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 "Display custom social media profile links."
|
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 |
+
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 "在 %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 "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 "微信"
|
188 |
|
189 |
#: includes/social-networks.php:135
|
190 |
msgid "Medium"
|
191 |
+
msgstr "中"
|
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 "聯絡工具程式需要使用 PHP %s 或以上版本。 請停用外掛程式並聯絡您的系統管理員。"
|
languages/contact-widgets.pot
CHANGED
@@ -1,28 +1,5 @@
|
|
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 "
|
26 |
msgstr ""
|
27 |
|
28 |
#: includes/class-contact.php:25
|
@@ -78,7 +55,7 @@ msgid "Display map of address?"
|
|
78 |
msgstr ""
|
79 |
|
80 |
#: includes/class-social.php:20
|
81 |
-
msgid "
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/class-social.php:25
|
@@ -87,22 +64,29 @@ msgstr ""
|
|
87 |
|
88 |
#: includes/class-social.php:163
|
89 |
#, php-format
|
90 |
-
|
|
|
|
|
|
|
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,3 +205,10 @@ msgstr ""
|
|
221 |
#: includes/social-networks.php:154
|
222 |
msgid "Trello"
|
223 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#: includes/class-contact.php:20
|
2 |
+
msgid "Display custom contact information."
|
3 |
msgstr ""
|
4 |
|
5 |
#: includes/class-contact.php:25
|
55 |
msgstr ""
|
56 |
|
57 |
#: includes/class-social.php:20
|
58 |
+
msgid "Display custom social media profile links."
|
59 |
msgstr ""
|
60 |
|
61 |
#: includes/class-social.php:25
|
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 ""
|
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 |
#: 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 ""
|
readme.txt
CHANGED
@@ -5,24 +5,86 @@ 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 |
**Languages Supported:**
|
17 |
|
18 |
* English
|
19 |
|
|
|
|
|
|
|
|
|
20 |
== Screenshots ==
|
21 |
|
22 |
1. Contact widget
|
23 |
2. Social widget
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
== Changelog ==
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
= 1.0.0 - February 23, 2016 =
|
28 |
Initial release. Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)
|
5 |
Tested up to: 4.4.2
|
6 |
Stable tag: trunk
|
7 |
|
8 |
+
Beautifully display social media and contact information on your website 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 two new widgets to your WordPress website:
|
15 |
+
* Contact Information: Displays your contact information including email address, phone number, fax and physical address (including a map).
|
16 |
+
* Social Media Profiles: Displays your social media profiles in an attractive, intuitive way.
|
17 |
+
|
18 |
+
Both widgets are compatible with the WordPress Customizer and will automatically refresh when changes are made.
|
19 |
|
20 |
**Languages Supported:**
|
21 |
|
22 |
* English
|
23 |
|
24 |
+
**Improvement? Bugs?**
|
25 |
+
|
26 |
+
Please fill out an issue [here](https://github.com/jonathanbardo/WP-Contact-Widgets/issues).
|
27 |
+
|
28 |
== Screenshots ==
|
29 |
|
30 |
1. Contact widget
|
31 |
2. Social widget
|
32 |
+
3. Twenty Sixteen theme showing both widgets
|
33 |
+
|
34 |
+
|
35 |
+
== Frequently Asked Questions ==
|
36 |
+
|
37 |
+
### How do I add additional fields to the contact widget?
|
38 |
+
|
39 |
+
Adding additional fields to the contact widget is as simple as adding a WordPress filter.
|
40 |
+
|
41 |
+
Here is an example:
|
42 |
+
<pre lang="php">
|
43 |
+
add_filter( 'wpcw_widget_contact_custom_fields', function( $fields, $instance ) {
|
44 |
+
|
45 |
+
$fields['cellphone'] = [
|
46 |
+
'order' => 2,
|
47 |
+
'label' => __( 'Cellphone:', 'YOURTEXTDOMAIN' ),
|
48 |
+
'type' => 'text',
|
49 |
+
'description' => __( 'A cellphone number that website vistors can call if they have questions.', 'YOURTEXTDOMAIN' ),
|
50 |
+
];
|
51 |
+
|
52 |
+
return $fields;
|
53 |
+
|
54 |
+
}, 10, 2 );
|
55 |
+
</pre>
|
56 |
+
|
57 |
+
### How do I add additional fields to the social widget?
|
58 |
+
|
59 |
+
The social widget requires a different set of options but follows the same principle as above.
|
60 |
+
|
61 |
+
Here is an example:
|
62 |
+
<pre lang="php">
|
63 |
+
add_filter( 'wpcw_widget_social_custom_fields', function( $fields, $instance ) {
|
64 |
+
|
65 |
+
$fields['scribd'] = [
|
66 |
+
'icon' => 'scribd', //See font-awesome icon slug
|
67 |
+
'label' => __( 'Scribd', 'YOURTEXTDOMAIN' ),
|
68 |
+
'default' => 'https://www.scribd.com/username',
|
69 |
+
'select' => 'username',
|
70 |
+
'sanitizer' => 'esc_url_raw',
|
71 |
+
'escaper' => 'esc_url',
|
72 |
+
'social' => true,
|
73 |
+
'target' => '_blank',
|
74 |
+
];
|
75 |
+
|
76 |
+
return $fields;
|
77 |
+
|
78 |
+
}, 10, 2 );
|
79 |
+
</pre>
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= 1.0.2 - February 24, 2016 =
|
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)
|