Contact Widgets - Version 1.0.3

Version Description

  • March 9, 2016 = Update locale ms_MY
Download this release

Release Info

Developer jonathanbardo
Plugin Icon 128x128 Contact Widgets
Version 1.0.3
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.3

Files changed (60) hide show
  1. contact-widgets.php +2 -2
  2. includes/class-base-widget.php +44 -3
  3. includes/class-contact.php +1 -1
  4. includes/class-social.php +17 -5
  5. languages/contact-widgets-da_DK.mo +0 -0
  6. languages/contact-widgets-da_DK.po +72 -83
  7. languages/contact-widgets-de_DE.mo +0 -0
  8. languages/contact-widgets-de_DE.po +74 -81
  9. languages/contact-widgets-el.mo +0 -0
  10. languages/contact-widgets-el.po +67 -81
  11. languages/contact-widgets-es_ES.mo +0 -0
  12. languages/contact-widgets-es_ES.po +76 -80
  13. languages/contact-widgets-es_MX.mo +0 -0
  14. languages/contact-widgets-es_MX.po +76 -80
  15. languages/contact-widgets-fi.mo +0 -0
  16. languages/contact-widgets-fi.po +75 -80
  17. languages/contact-widgets-fr_FR.mo +0 -0
  18. languages/contact-widgets-fr_FR.po +75 -80
  19. languages/contact-widgets-id_ID.mo +0 -0
  20. languages/contact-widgets-id_ID.po +76 -80
  21. languages/contact-widgets-it_IT.mo +0 -0
  22. languages/contact-widgets-it_IT.po +75 -79
  23. languages/contact-widgets-ja.mo +0 -0
  24. languages/contact-widgets-ja.po +56 -70
  25. languages/contact-widgets-ko_KR.mo +0 -0
  26. languages/contact-widgets-ko_KR.po +65 -79
  27. languages/contact-widgets-ms_MY.mo +0 -0
  28. languages/contact-widgets-ms_MY.po +74 -81
  29. languages/contact-widgets-nb_NO.mo +0 -0
  30. languages/contact-widgets-nb_NO.po +74 -82
  31. languages/contact-widgets-nl_NL.mo +0 -0
  32. languages/contact-widgets-nl_NL.po +73 -82
  33. languages/contact-widgets-pl_PL.mo +0 -0
  34. languages/contact-widgets-pl_PL.po +72 -85
  35. languages/contact-widgets-pt_BR.mo +0 -0
  36. languages/contact-widgets-pt_BR.po +218 -0
  37. languages/contact-widgets-pt_PT.mo +0 -0
  38. languages/contact-widgets-pt_PT.po +76 -80
  39. languages/contact-widgets-ru_RU.mo +0 -0
  40. languages/contact-widgets-ru_RU.po +66 -81
  41. languages/contact-widgets-sv_SE.mo +0 -0
  42. languages/contact-widgets-sv_SE.po +73 -83
  43. languages/contact-widgets-th.mo +0 -0
  44. languages/contact-widgets-th.po +55 -69
  45. languages/contact-widgets-tl.mo +0 -0
  46. languages/contact-widgets-tl.po +76 -80
  47. languages/contact-widgets-tr_TR.mo +0 -0
  48. languages/contact-widgets-tr_TR.po +72 -80
  49. languages/contact-widgets-uk.mo +0 -0
  50. languages/contact-widgets-uk.po +66 -81
  51. languages/contact-widgets-vi.mo +0 -0
  52. languages/contact-widgets-vi.po +72 -84
  53. languages/contact-widgets-zh_CN.mo +0 -0
  54. languages/contact-widgets-zh_CN.po +51 -65
  55. languages/contact-widgets-zh_HK.mo +0 -0
  56. languages/contact-widgets-zh_HK.po +50 -64
  57. languages/contact-widgets-zh_TW.mo +0 -0
  58. languages/contact-widgets-zh_TW.po +50 -64
  59. languages/contact-widgets.pot +21 -30
  60. readme.txt +93 -83
contact-widgets.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Plugin Name: Contact Widgets
4
- * Description: Display contact information on your website beautifully with these simple widgets.
5
- * Version: 1.0.1
6
  * Author: Jonathan Bardo & Frankie Jarrett
7
  * Text Domain: contact-widgets
8
  * Domain Path: /languages
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.3
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' => __( 'Custom contact links', 'contact-widgets' ),
21
  ];
22
 
23
  parent::__construct(
17
 
18
  $widget_options = [
19
  'classname' => 'wpcw-widget-contact',
20
+ 'description' => __( 'Display custom contact information.', 'contact-widgets' ),
21
  ];
22
 
23
  parent::__construct(
includes/class-social.php CHANGED
@@ -17,7 +17,7 @@ final class Social extends Base_Widget {
17
 
18
  $widget_options = [
19
  'classname' => 'wpcw-widget-social',
20
- 'description' => __( 'Custom social links', 'contact-widgets' ),
21
  ];
22
 
23
  parent::__construct(
@@ -96,7 +96,11 @@ final class Social extends Base_Widget {
96
 
97
  $method = $field['form_callback'];
98
 
99
- if ( is_callable( [ $this, $method ] ) && ! empty( $field['value'] ) ) {
 
 
 
 
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-2x fa-%s"></span>%s</a></li>',
160
  $display_labels ? 'has-label' : 'no-label',
161
  $escape_callback( $field['value'] ),
162
  esc_attr( $field['target'] ),
163
- sprintf( esc_attr_x( 'Visit %s on %s', '1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. Facebook)', 'contact-widgets' ), get_bloginfo( 'name' ), $field['label'] ),
 
164
  esc_attr( $field['icon'] ),
165
  $display_labels ? esc_html( $field['label'] ) : ''
166
  );
@@ -242,6 +247,13 @@ final class Social extends Base_Widget {
242
  */
243
  protected function print_label( array $field ) {
244
 
 
 
 
 
 
 
 
245
  printf(
246
  '<label for="%s"><span class="fa fa-%s"></span> <span class="text">%s</span></label>',
247
  esc_attr( $field['id'] ),
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
  );
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,217 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:00-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: da_DK\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
- msgstr ""
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Titel:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 websidegster 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 websidegster kan ringe til, hvis de har sprgsml."
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 ""
40
+ "Et faxnummer, som websidegster kan bruge til at sende vigtige dokumenter."
41
 
42
  #: includes/class-contact.php:172
43
  msgid "Address:"
44
+ msgstr "Adresse:"
45
 
46
  #: includes/class-contact.php:177
47
  msgid "A physical address where website vistors can go to visit you in person."
48
+ msgstr "En fysisk adresse, hvor websidegster kan besge dig personligt."
49
 
50
+ #: includes/class-contact.php:180 includes/class-social.php:219
51
  msgid "Display labels?"
52
+ msgstr "Vis etiketter?"
53
 
54
  #: includes/class-contact.php:190
55
  msgid "Display map of address?"
56
+ msgstr "Vis kort med adresse?"
57
 
58
  #: includes/class-social.php:20
59
+ msgid "Display custom social media profile links."
60
+ msgstr "Vis brugerdefinerede links til profiler p sociale medier."
61
 
62
  #: includes/class-social.php:25
63
  msgid "Social"
64
+ msgstr "Social"
65
 
66
+ #: includes/class-social.php:167
67
  #, php-format
68
+ msgctxt ""
69
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
70
+ "Facebook)"
71
+ msgid "Visit %1$s on %2$s"
72
+ msgstr "G til %1$s p %2$s"
73
 
74
  #: includes/social-networks.php:9
75
+ msgctxt "Must be lowercase and use url-safe characters"
76
  msgid "username"
77
+ msgstr "brugernavn"
78
 
79
  #: includes/social-networks.php:10
80
+ msgctxt "Must be lowercase and use url-safe characters"
81
  msgid "channel"
82
+ msgstr "kanal"
83
 
84
  #: includes/social-networks.php:11
85
+ msgctxt "Must be lowercase and use url-safe characters"
86
  msgid "company"
87
+ msgstr "firma"
88
 
89
  #: includes/social-networks.php:12
90
+ msgctxt "Must be lowercase and use url-safe characters"
91
  msgid "board"
92
+ msgstr "forum"
93
 
94
  #: includes/social-networks.php:17
95
  msgid "Facebook"
96
+ msgstr "Facebook"
97
 
98
  #: includes/social-networks.php:22
99
  msgid "Twitter"
100
+ msgstr "Twitter"
101
 
102
  #: includes/social-networks.php:28
103
  msgid "Google+"
104
+ msgstr "Google+"
105
 
106
  #: includes/social-networks.php:34
107
  msgid "LinkedIn"
108
+ msgstr "LinkedIn"
109
 
110
  #: includes/social-networks.php:39
111
  msgid "Pinterest"
112
+ msgstr "Pinterest"
113
 
114
  #: includes/social-networks.php:44
115
  msgid "YouTube"
116
+ msgstr "YouTube"
117
 
118
  #: includes/social-networks.php:49
119
  msgid "Vimeo"
120
+ msgstr "Vimeo"
121
 
122
  #: includes/social-networks.php:54
123
  msgid "Flickr"
124
+ msgstr "Flickr"
125
 
126
  #: includes/social-networks.php:59
127
  msgid "Foursquare"
128
+ msgstr "Foursquare"
129
 
130
  #: includes/social-networks.php:64
131
  msgid "GitHub"
132
+ msgstr "GitHub"
133
 
134
  #: includes/social-networks.php:69
135
  msgid "Slack"
136
+ msgstr "Slack"
137
 
138
  #: includes/social-networks.php:74
139
  msgid "Skype"
140
+ msgstr "Skype"
141
 
142
  #: includes/social-networks.php:80
143
  msgid "SoundCloud"
144
+ msgstr "SoundCloud"
145
 
146
  #: includes/social-networks.php:85
147
  msgid "TripAdvisor"
148
+ msgstr "TripAdvisor"
149
 
150
  #: includes/social-networks.php:89
151
  msgid "WordPress"
152
+ msgstr "WordPress"
153
 
154
  #: includes/social-networks.php:94
155
  msgid "Yelp"
156
+ msgstr "Yelp"
157
 
158
  #: includes/social-networks.php:99
159
  msgid "Amazon"
160
+ msgstr "Amazon"
161
 
162
  #: includes/social-networks.php:103
163
  msgid "Instagram"
164
+ msgstr "Instagram"
165
 
166
  #: includes/social-networks.php:108
167
  msgid "Vine"
168
+ msgstr "Vine"
169
 
170
  #: includes/social-networks.php:113
171
  msgid "reddit"
172
+ msgstr "reddit"
173
 
174
  #: includes/social-networks.php:118
175
  msgid "XING"
176
+ msgstr "XING"
177
 
178
  #: includes/social-networks.php:122
179
  msgid "Tumblr"
180
+ msgstr "Tumblr"
181
 
182
  #: includes/social-networks.php:127
183
  msgid "WhatsApp"
184
+ msgstr "WhatsApp"
185
 
186
  #: includes/social-networks.php:131
187
  msgid "WeChat"
188
+ msgstr "WeChat"
189
 
190
  #: includes/social-networks.php:135
191
  msgid "Medium"
192
+ msgstr "Medium"
193
 
194
  #: includes/social-networks.php:140
195
  msgid "Dribbble"
196
+ msgstr "Dribbble"
197
 
198
  #: includes/social-networks.php:145
199
  msgid "Twitch"
200
+ msgstr "Twitch"
201
 
202
  #: includes/social-networks.php:150
203
  msgid "VK"
204
+ msgstr "VK"
205
 
206
  #: includes/social-networks.php:154
207
  msgid "Trello"
208
+ msgstr "Trello"
209
+
210
+ #: contact-widgets.php:88
211
+ #, php-format
212
+ msgid ""
213
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
214
+ "plugin and contact your system administrator."
215
  msgstr ""
216
+ "Kontaktwidget krver PHP-version %s eller nyere. Deaktivr plug-in og kontakt "
217
+ "din systemadministrator."
languages/contact-widgets-de_DE.mo CHANGED
Binary file
languages/contact-widgets-de_DE.po CHANGED
@@ -1,228 +1,221 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:01-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: de_DE\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Titel:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Titel des Widgets. Freilassen fr 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 ""
24
+ "Eine E-Mail-Adresse, mit der sich Website-Besucher mit Ihnen in Verbindung "
25
+ "setzen knnen."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telefon:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Eine Telefonnummer, unter der sich Website-Besucher bei Ihnen melden knnen, "
35
+ "falls diese Fragen haben."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Fax:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Eine Faxnummer, an die Website-Besucher wichtige Dokumente senden knnen."
45
 
46
  #: includes/class-contact.php:172
47
  msgid "Address:"
48
+ msgstr "Adresse:"
49
 
50
  #: includes/class-contact.php:177
51
  msgid "A physical address where website vistors can go to visit you in person."
52
+ msgstr "Eine Adresse, unter der Sie Website-Besucher persnlich besuchen knnen."
53
 
54
+ #: includes/class-contact.php:180 includes/class-social.php:219
55
  msgid "Display labels?"
56
+ msgstr "Labels anzeigen?"
57
 
58
  #: includes/class-contact.php:190
59
  msgid "Display map of address?"
60
+ msgstr "Karte zu Adresse anzeigen?"
61
 
62
  #: includes/class-social.php:20
63
+ msgid "Display custom social media profile links."
64
+ msgstr "Benutzerdefinierte Links zu Profilen in sozialen Netzwerken anzeigen."
65
 
66
  #: includes/class-social.php:25
67
  msgid "Social"
68
+ msgstr "Social"
69
 
70
+ #: includes/class-social.php:167
71
  #, php-format
72
+ msgctxt ""
73
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
74
+ "Facebook)"
75
+ msgid "Visit %1$s on %2$s"
76
+ msgstr "%1$s auf %2$s aufrufen"
77
 
78
  #: includes/social-networks.php:9
79
+ msgctxt "Must be lowercase and use url-safe characters"
80
  msgid "username"
81
+ msgstr "benutzername"
82
 
83
  #: includes/social-networks.php:10
84
+ msgctxt "Must be lowercase and use url-safe characters"
85
  msgid "channel"
86
+ msgstr "Kanal"
87
 
88
  #: includes/social-networks.php:11
89
+ msgctxt "Must be lowercase and use url-safe characters"
90
  msgid "company"
91
+ msgstr "Unternehmen"
92
 
93
  #: includes/social-networks.php:12
94
+ msgctxt "Must be lowercase and use url-safe characters"
95
  msgid "board"
96
+ msgstr "Board"
97
 
98
  #: includes/social-networks.php:17
99
  msgid "Facebook"
100
+ msgstr "Facebook"
101
 
102
  #: includes/social-networks.php:22
103
  msgid "Twitter"
104
+ msgstr "Twitter"
105
 
106
  #: includes/social-networks.php:28
107
  msgid "Google+"
108
+ msgstr "Google+"
109
 
110
  #: includes/social-networks.php:34
111
  msgid "LinkedIn"
112
+ msgstr "LinkedIn"
113
 
114
  #: includes/social-networks.php:39
115
  msgid "Pinterest"
116
+ msgstr "Pinterest"
117
 
118
  #: includes/social-networks.php:44
119
  msgid "YouTube"
120
+ msgstr "YouTube"
121
 
122
  #: includes/social-networks.php:49
123
  msgid "Vimeo"
124
+ msgstr "Vimeo"
125
 
126
  #: includes/social-networks.php:54
127
  msgid "Flickr"
128
+ msgstr "Flickr"
129
 
130
  #: includes/social-networks.php:59
131
  msgid "Foursquare"
132
+ msgstr "Foursquare"
133
 
134
  #: includes/social-networks.php:64
135
  msgid "GitHub"
136
+ msgstr "GitHub"
137
 
138
  #: includes/social-networks.php:69
139
  msgid "Slack"
140
+ msgstr "Slack"
141
 
142
  #: includes/social-networks.php:74
143
  msgid "Skype"
144
+ msgstr "Skype"
145
 
146
  #: includes/social-networks.php:80
147
  msgid "SoundCloud"
148
+ msgstr "SoundCloud"
149
 
150
  #: includes/social-networks.php:85
151
  msgid "TripAdvisor"
152
+ msgstr "TripAdvisor"
153
 
154
  #: includes/social-networks.php:89
155
  msgid "WordPress"
156
+ msgstr "WordPress"
157
 
158
  #: includes/social-networks.php:94
159
  msgid "Yelp"
160
+ msgstr "Yelp"
161
 
162
  #: includes/social-networks.php:99
163
  msgid "Amazon"
164
+ msgstr "Amazon"
165
 
166
  #: includes/social-networks.php:103
167
  msgid "Instagram"
168
+ msgstr "Instagram"
169
 
170
  #: includes/social-networks.php:108
171
  msgid "Vine"
172
+ msgstr "Vine"
173
 
174
  #: includes/social-networks.php:113
175
  msgid "reddit"
176
+ msgstr "reddit"
177
 
178
  #: includes/social-networks.php:118
179
  msgid "XING"
180
+ msgstr "XING"
181
 
182
  #: includes/social-networks.php:122
183
  msgid "Tumblr"
184
+ msgstr "Tumblr"
185
 
186
  #: includes/social-networks.php:127
187
  msgid "WhatsApp"
188
+ msgstr "WhatsApp"
189
 
190
  #: includes/social-networks.php:131
191
  msgid "WeChat"
192
+ msgstr "WeChat"
193
 
194
  #: includes/social-networks.php:135
195
  msgid "Medium"
196
+ msgstr "Medium"
197
 
198
  #: includes/social-networks.php:140
199
  msgid "Dribbble"
200
+ msgstr "Dribbble"
201
 
202
  #: includes/social-networks.php:145
203
  msgid "Twitch"
204
+ msgstr "Twitch"
205
 
206
  #: includes/social-networks.php:150
207
  msgid "VK"
208
+ msgstr "VK"
209
 
210
  #: includes/social-networks.php:154
211
  msgid "Trello"
212
+ msgstr "Trello"
213
+
214
+ #: contact-widgets.php:88
215
+ #, php-format
216
+ msgid ""
217
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
218
+ "plugin and contact your system administrator."
219
  msgstr ""
220
+ "Kontakt-Widgets bentigen PHP-Version %s oder hher. Bitte deaktivieren Sie "
221
+ "das Plugin und kontaktieren Sie Ihren Systemadministrator."
languages/contact-widgets-el.mo CHANGED
Binary file
languages/contact-widgets-el.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:01-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: el\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
- msgstr ""
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
- msgstr ""
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
228
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr ":"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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:219
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:167
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 " widget %s PHP. plugin ."
languages/contact-widgets-es_ES.mo CHANGED
Binary file
languages/contact-widgets-es_ES.po CHANGED
@@ -1,228 +1,224 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:00-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: es_ES\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Mostrar informacin 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:208
10
  msgid "Title:"
11
+ msgstr "Ttulo:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "El ttulo del widget. Dejar vaco si no tiene ttulo."
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
19
+ msgstr "Correo electrnico:"
20
 
21
  #: includes/class-contact.php:159
22
  msgid "An email address where website vistors can contact you."
23
  msgstr ""
24
+ "Una direccin de correo electrnico donde los visitantes al sitio web pueden "
25
+ "comunicarse contigo."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telfono:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Un nmero de telfono al cual pueden llamar los visitantes al sitio web en "
35
+ "caso de tener preguntas."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Fax:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Un nmero de fax que pueden usar los visitantes al sitio web para enviar "
45
+ "documentos importantes."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Direccin:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "Una direccin fsica a la cual pueden dirigirse los visitantes al sitio web "
55
+ "para visitarte en persona"
56
 
57
+ #: includes/class-contact.php:180 includes/class-social.php:219
58
  msgid "Display labels?"
59
+ msgstr "Mostrar etiquetas?"
60
 
61
  #: includes/class-contact.php:190
62
  msgid "Display map of address?"
63
+ msgstr "Mostrar mapa de direcciones?"
64
 
65
  #: includes/class-social.php:20
66
+ msgid "Display custom social media profile links."
67
+ msgstr "Mostrar enlaces personalizados del perfil de medios sociales."
68
 
69
  #: includes/class-social.php:25
70
  msgid "Social"
71
+ msgstr "Social"
72
 
73
+ #: includes/class-social.php:167
74
  #, php-format
75
+ msgctxt ""
76
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
77
+ "Facebook)"
78
+ msgid "Visit %1$s on %2$s"
79
+ msgstr "Visita %1$s en %2$s"
80
 
81
  #: includes/social-networks.php:9
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "username"
84
+ msgstr "nombre de usuario"
85
 
86
  #: includes/social-networks.php:10
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "channel"
89
+ msgstr "canal"
90
 
91
  #: includes/social-networks.php:11
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "company"
94
+ msgstr "empresa"
95
 
96
  #: includes/social-networks.php:12
97
+ msgctxt "Must be lowercase and use url-safe characters"
98
  msgid "board"
99
+ msgstr "tablero"
100
 
101
  #: includes/social-networks.php:17
102
  msgid "Facebook"
103
+ msgstr "Facebook"
104
 
105
  #: includes/social-networks.php:22
106
  msgid "Twitter"
107
+ msgstr "Twitter"
108
 
109
  #: includes/social-networks.php:28
110
  msgid "Google+"
111
+ msgstr "Google+"
112
 
113
  #: includes/social-networks.php:34
114
  msgid "LinkedIn"
115
+ msgstr "LinkedIn"
116
 
117
  #: includes/social-networks.php:39
118
  msgid "Pinterest"
119
+ msgstr "Pinterest"
120
 
121
  #: includes/social-networks.php:44
122
  msgid "YouTube"
123
+ msgstr "YouTube"
124
 
125
  #: includes/social-networks.php:49
126
  msgid "Vimeo"
127
+ msgstr "Vimeo"
128
 
129
  #: includes/social-networks.php:54
130
  msgid "Flickr"
131
+ msgstr "Flickr"
132
 
133
  #: includes/social-networks.php:59
134
  msgid "Foursquare"
135
+ msgstr "Foursquare"
136
 
137
  #: includes/social-networks.php:64
138
  msgid "GitHub"
139
+ msgstr "GitHub"
140
 
141
  #: includes/social-networks.php:69
142
  msgid "Slack"
143
+ msgstr "Slack"
144
 
145
  #: includes/social-networks.php:74
146
  msgid "Skype"
147
+ msgstr "Skype"
148
 
149
  #: includes/social-networks.php:80
150
  msgid "SoundCloud"
151
+ msgstr "SoundCloud"
152
 
153
  #: includes/social-networks.php:85
154
  msgid "TripAdvisor"
155
+ msgstr "TripAdvisor"
156
 
157
  #: includes/social-networks.php:89
158
  msgid "WordPress"
159
+ msgstr "WordPress"
160
 
161
  #: includes/social-networks.php:94
162
  msgid "Yelp"
163
+ msgstr "Yelp"
164
 
165
  #: includes/social-networks.php:99
166
  msgid "Amazon"
167
+ msgstr "Amazon"
168
 
169
  #: includes/social-networks.php:103
170
  msgid "Instagram"
171
+ msgstr "Instagram"
172
 
173
  #: includes/social-networks.php:108
174
  msgid "Vine"
175
+ msgstr "Vine"
176
 
177
  #: includes/social-networks.php:113
178
  msgid "reddit"
179
+ msgstr "reddit"
180
 
181
  #: includes/social-networks.php:118
182
  msgid "XING"
183
+ msgstr "XING"
184
 
185
  #: includes/social-networks.php:122
186
  msgid "Tumblr"
187
+ msgstr "Tumblr"
188
 
189
  #: includes/social-networks.php:127
190
  msgid "WhatsApp"
191
+ msgstr "WhatsApp"
192
 
193
  #: includes/social-networks.php:131
194
  msgid "WeChat"
195
+ msgstr "WeChat"
196
 
197
  #: includes/social-networks.php:135
198
  msgid "Medium"
199
+ msgstr "Medium"
200
 
201
  #: includes/social-networks.php:140
202
  msgid "Dribbble"
203
+ msgstr "Dribbble"
204
 
205
  #: includes/social-networks.php:145
206
  msgid "Twitch"
207
+ msgstr "Twitch"
208
 
209
  #: includes/social-networks.php:150
210
  msgid "VK"
211
+ msgstr "VK"
212
 
213
  #: includes/social-networks.php:154
214
  msgid "Trello"
215
+ msgstr "Trello"
216
+
217
+ #: contact-widgets.php:88
218
+ #, php-format
219
+ msgid ""
220
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
221
+ "plugin and contact your system administrator."
222
  msgstr ""
223
+ "El widget Contacto requiere la versin %s o superior de PHP. Desactiva el "
224
+ "complemento y comuncate con el administrador del sistema."
languages/contact-widgets-es_MX.mo CHANGED
Binary file
languages/contact-widgets-es_MX.po CHANGED
@@ -1,228 +1,224 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:02-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: es_MX\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Mostrar informacin 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:208
10
  msgid "Title:"
11
+ msgstr "Ttulo:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "El ttulo del widget. Dejar vaco si no tiene ttulo."
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
19
+ msgstr "Correo electrnico:"
20
 
21
  #: includes/class-contact.php:159
22
  msgid "An email address where website vistors can contact you."
23
  msgstr ""
24
+ "Una direccin de correo electrnico donde los visitantes al sitio web pueden "
25
+ "comunicarse contigo."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telfono:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Un nmero de telfono al cual pueden llamar los visitantes al sitio web en "
35
+ "caso de tener preguntas."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Fax:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Un nmero de fax que pueden usar los visitantes al sitio web para enviar "
45
+ "documentos importantes."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Direccin:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "Una direccin fsica a la cual pueden dirigirse los visitantes al sitio web "
55
+ "para visitarte en persona"
56
 
57
+ #: includes/class-contact.php:180 includes/class-social.php:219
58
  msgid "Display labels?"
59
+ msgstr "Mostrar etiquetas?"
60
 
61
  #: includes/class-contact.php:190
62
  msgid "Display map of address?"
63
+ msgstr "Mostrar mapa de direcciones?"
64
 
65
  #: includes/class-social.php:20
66
+ msgid "Display custom social media profile links."
67
+ msgstr "Mostrar enlaces personalizados del perfil de medios sociales."
68
 
69
  #: includes/class-social.php:25
70
  msgid "Social"
71
+ msgstr "Social"
72
 
73
+ #: includes/class-social.php:167
74
  #, php-format
75
+ msgctxt ""
76
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
77
+ "Facebook)"
78
+ msgid "Visit %1$s on %2$s"
79
+ msgstr "Visita %1$s en %2$s"
80
 
81
  #: includes/social-networks.php:9
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "username"
84
+ msgstr "nombre de usuario"
85
 
86
  #: includes/social-networks.php:10
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "channel"
89
+ msgstr "canal"
90
 
91
  #: includes/social-networks.php:11
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "company"
94
+ msgstr "empresa"
95
 
96
  #: includes/social-networks.php:12
97
+ msgctxt "Must be lowercase and use url-safe characters"
98
  msgid "board"
99
+ msgstr "tablero"
100
 
101
  #: includes/social-networks.php:17
102
  msgid "Facebook"
103
+ msgstr "Facebook"
104
 
105
  #: includes/social-networks.php:22
106
  msgid "Twitter"
107
+ msgstr "Twitter"
108
 
109
  #: includes/social-networks.php:28
110
  msgid "Google+"
111
+ msgstr "Google+"
112
 
113
  #: includes/social-networks.php:34
114
  msgid "LinkedIn"
115
+ msgstr "LinkedIn"
116
 
117
  #: includes/social-networks.php:39
118
  msgid "Pinterest"
119
+ msgstr "Pinterest"
120
 
121
  #: includes/social-networks.php:44
122
  msgid "YouTube"
123
+ msgstr "YouTube"
124
 
125
  #: includes/social-networks.php:49
126
  msgid "Vimeo"
127
+ msgstr "Vimeo"
128
 
129
  #: includes/social-networks.php:54
130
  msgid "Flickr"
131
+ msgstr "Flickr"
132
 
133
  #: includes/social-networks.php:59
134
  msgid "Foursquare"
135
+ msgstr "Foursquare"
136
 
137
  #: includes/social-networks.php:64
138
  msgid "GitHub"
139
+ msgstr "GitHub"
140
 
141
  #: includes/social-networks.php:69
142
  msgid "Slack"
143
+ msgstr "Slack"
144
 
145
  #: includes/social-networks.php:74
146
  msgid "Skype"
147
+ msgstr "Skype"
148
 
149
  #: includes/social-networks.php:80
150
  msgid "SoundCloud"
151
+ msgstr "SoundCloud"
152
 
153
  #: includes/social-networks.php:85
154
  msgid "TripAdvisor"
155
+ msgstr "TripAdvisor"
156
 
157
  #: includes/social-networks.php:89
158
  msgid "WordPress"
159
+ msgstr "WordPress"
160
 
161
  #: includes/social-networks.php:94
162
  msgid "Yelp"
163
+ msgstr "Yelp"
164
 
165
  #: includes/social-networks.php:99
166
  msgid "Amazon"
167
+ msgstr "Amazon"
168
 
169
  #: includes/social-networks.php:103
170
  msgid "Instagram"
171
+ msgstr "Instagram"
172
 
173
  #: includes/social-networks.php:108
174
  msgid "Vine"
175
+ msgstr "Vine"
176
 
177
  #: includes/social-networks.php:113
178
  msgid "reddit"
179
+ msgstr "reddit"
180
 
181
  #: includes/social-networks.php:118
182
  msgid "XING"
183
+ msgstr "XING"
184
 
185
  #: includes/social-networks.php:122
186
  msgid "Tumblr"
187
+ msgstr "Tumblr"
188
 
189
  #: includes/social-networks.php:127
190
  msgid "WhatsApp"
191
+ msgstr "WhatsApp"
192
 
193
  #: includes/social-networks.php:131
194
  msgid "WeChat"
195
+ msgstr "WeChat"
196
 
197
  #: includes/social-networks.php:135
198
  msgid "Medium"
199
+ msgstr "Medium"
200
 
201
  #: includes/social-networks.php:140
202
  msgid "Dribbble"
203
+ msgstr "Dribbble"
204
 
205
  #: includes/social-networks.php:145
206
  msgid "Twitch"
207
+ msgstr "Twitch"
208
 
209
  #: includes/social-networks.php:150
210
  msgid "VK"
211
+ msgstr "VK"
212
 
213
  #: includes/social-networks.php:154
214
  msgid "Trello"
215
+ msgstr "Trello"
216
+
217
+ #: contact-widgets.php:88
218
+ #, php-format
219
+ msgid ""
220
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
221
+ "plugin and contact your system administrator."
222
  msgstr ""
223
+ "El widget Contacto requiere la versin %s o superior de PHP. Desactiva el "
224
+ "complemento y comuncate con el administrador del sistema."
languages/contact-widgets-fi.mo CHANGED
Binary file
languages/contact-widgets-fi.po CHANGED
@@ -1,228 +1,223 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:02-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: fi\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Nyt 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:208
10
  msgid "Title:"
11
+ msgstr "Otsikko:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Pienoissovelluksen nimi. Jt tyhjksi, jos et halua valita nime."
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
19
+ msgstr "Shkposti:"
20
 
21
  #: includes/class-contact.php:159
22
  msgid "An email address where website vistors can contact you."
23
  msgstr ""
24
+ "Shkpostiosoite, jonka kautta sivuston vierailijat voivat ottaa sinuun "
25
+ "yhteytt."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Puhelin:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Puhelinnumero, johon sivuston vierailijat voivat soittaa, jos heill on "
35
+ "kysyttv."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Faksi:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Faksinumero, jota sivuston vierailijat voivat kytt trkeiden asiakirjojen "
45
+ "lhettmiseen."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Osoite:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "Fyysinen osoite, jossa sivuston vierailijat voivat kyd henkilkohtaisesti."
55
 
56
+ #: includes/class-contact.php:180 includes/class-social.php:219
57
  msgid "Display labels?"
58
+ msgstr "Nytetnk selitteet?"
59
 
60
  #: includes/class-contact.php:190
61
  msgid "Display map of address?"
62
+ msgstr "Nytetnk osoitteen kartta?"
63
 
64
  #: includes/class-social.php:20
65
+ msgid "Display custom social media profile links."
66
+ msgstr "Nyt mukautetut sosiaalisen median profiilien linkit."
67
 
68
  #: includes/class-social.php:25
69
  msgid "Social"
70
+ msgstr "Sosiaalinen"
71
 
72
+ #: includes/class-social.php:167
73
  #, php-format
74
+ msgctxt ""
75
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
76
+ "Facebook)"
77
+ msgid "Visit %1$s on %2$s"
78
+ msgstr "Vieraile: %1$s - %2$s"
79
 
80
  #: includes/social-networks.php:9
81
+ msgctxt "Must be lowercase and use url-safe characters"
82
  msgid "username"
83
+ msgstr "kyttjnimi"
84
 
85
  #: includes/social-networks.php:10
86
+ msgctxt "Must be lowercase and use url-safe characters"
87
  msgid "channel"
88
+ msgstr "kanava"
89
 
90
  #: includes/social-networks.php:11
91
+ msgctxt "Must be lowercase and use url-safe characters"
92
  msgid "company"
93
+ msgstr "yritys"
94
 
95
  #: includes/social-networks.php:12
96
+ msgctxt "Must be lowercase and use url-safe characters"
97
  msgid "board"
98
+ msgstr "foorumi"
99
 
100
  #: includes/social-networks.php:17
101
  msgid "Facebook"
102
+ msgstr "Facebook"
103
 
104
  #: includes/social-networks.php:22
105
  msgid "Twitter"
106
+ msgstr "Twitter"
107
 
108
  #: includes/social-networks.php:28
109
  msgid "Google+"
110
+ msgstr "Google+"
111
 
112
  #: includes/social-networks.php:34
113
  msgid "LinkedIn"
114
+ msgstr "LinkedIn"
115
 
116
  #: includes/social-networks.php:39
117
  msgid "Pinterest"
118
+ msgstr "Pinterest"
119
 
120
  #: includes/social-networks.php:44
121
  msgid "YouTube"
122
+ msgstr "YouTube"
123
 
124
  #: includes/social-networks.php:49
125
  msgid "Vimeo"
126
+ msgstr "Vimeo"
127
 
128
  #: includes/social-networks.php:54
129
  msgid "Flickr"
130
+ msgstr "Flickr"
131
 
132
  #: includes/social-networks.php:59
133
  msgid "Foursquare"
134
+ msgstr "Foursquare"
135
 
136
  #: includes/social-networks.php:64
137
  msgid "GitHub"
138
+ msgstr "GitHub"
139
 
140
  #: includes/social-networks.php:69
141
  msgid "Slack"
142
+ msgstr "Slack"
143
 
144
  #: includes/social-networks.php:74
145
  msgid "Skype"
146
+ msgstr "Skype"
147
 
148
  #: includes/social-networks.php:80
149
  msgid "SoundCloud"
150
+ msgstr "SoundCloud"
151
 
152
  #: includes/social-networks.php:85
153
  msgid "TripAdvisor"
154
+ msgstr "TripAdvisor"
155
 
156
  #: includes/social-networks.php:89
157
  msgid "WordPress"
158
+ msgstr "WordPress"
159
 
160
  #: includes/social-networks.php:94
161
  msgid "Yelp"
162
+ msgstr "Yelp"
163
 
164
  #: includes/social-networks.php:99
165
  msgid "Amazon"
166
+ msgstr "Amazon"
167
 
168
  #: includes/social-networks.php:103
169
  msgid "Instagram"
170
+ msgstr "Instagram"
171
 
172
  #: includes/social-networks.php:108
173
  msgid "Vine"
174
+ msgstr "Vine"
175
 
176
  #: includes/social-networks.php:113
177
  msgid "reddit"
178
+ msgstr "reddit"
179
 
180
  #: includes/social-networks.php:118
181
  msgid "XING"
182
+ msgstr "XING"
183
 
184
  #: includes/social-networks.php:122
185
  msgid "Tumblr"
186
+ msgstr "Tumblr"
187
 
188
  #: includes/social-networks.php:127
189
  msgid "WhatsApp"
190
+ msgstr "WhatsApp"
191
 
192
  #: includes/social-networks.php:131
193
  msgid "WeChat"
194
+ msgstr "WeChat"
195
 
196
  #: includes/social-networks.php:135
197
  msgid "Medium"
198
+ msgstr "Medium"
199
 
200
  #: includes/social-networks.php:140
201
  msgid "Dribbble"
202
+ msgstr "Dribbble"
203
 
204
  #: includes/social-networks.php:145
205
  msgid "Twitch"
206
+ msgstr "Twitch"
207
 
208
  #: includes/social-networks.php:150
209
  msgid "VK"
210
+ msgstr "VK"
211
 
212
  #: includes/social-networks.php:154
213
  msgid "Trello"
214
+ msgstr "Trello"
215
+
216
+ #: contact-widgets.php:88
217
+ #, php-format
218
+ msgid ""
219
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
220
+ "plugin and contact your system administrator."
221
  msgstr ""
222
+ "Yhteystietosovellukset edellyttvt, ett PHP-versio on vhintn %s. Poista "
223
+ "laajennus kytst ja ota yhteytt jrjestelmnvalvojaasi."
languages/contact-widgets-fr_FR.mo CHANGED
Binary file
languages/contact-widgets-fr_FR.po CHANGED
@@ -1,228 +1,223 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:02-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
- "Language: fr_FR\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Affichez les coordonnes personnalises."
4
 
5
  #: includes/class-contact.php:25
6
  msgid "Contact"
7
+ msgstr "Contact"
8
 
9
+ #: includes/class-contact.php:146 includes/class-social.php:208
10
  msgid "Title:"
11
+ msgstr "Titre:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 ""
24
+ "Une adresse email laquelle les visiteurs du site Web peuvent vous contacter."
25
 
26
  #: includes/class-contact.php:162
27
  msgid "Phone:"
28
+ msgstr "Tlphone:"
29
 
30
  #: includes/class-contact.php:164
31
  msgid "A phone number that website vistors can call if they have questions."
32
  msgstr ""
33
+ "Un numro de tlphone auquel les visiteurs du site Web peuvent vous appeler "
34
+ "s'ils ont des questions."
35
 
36
  #: includes/class-contact.php:167
37
  msgid "Fax:"
38
+ msgstr "Fax:"
39
 
40
  #: includes/class-contact.php:169
41
  msgid "A fax number that website vistors can use to send important documents."
42
  msgstr ""
43
+ "Un numro de fax que les visiteurs du site Web peuvent utiliser pour envoyer "
44
+ "des documents importants."
45
 
46
  #: includes/class-contact.php:172
47
  msgid "Address:"
48
+ msgstr "Adresse:"
49
 
50
  #: includes/class-contact.php:177
51
  msgid "A physical address where website vistors can go to visit you in person."
52
  msgstr ""
53
+ "Une adresse physique laquelle les visiteurs du site Web peuvent se rendre "
54
+ "pour vous voir."
55
 
56
+ #: includes/class-contact.php:180 includes/class-social.php:219
57
  msgid "Display labels?"
58
+ msgstr "Afficher les tiquettes?"
59
 
60
  #: includes/class-contact.php:190
61
  msgid "Display map of address?"
62
+ msgstr "Afficher un plan de l'adresse?"
63
 
64
  #: includes/class-social.php:20
65
+ msgid "Display custom social media profile links."
66
+ msgstr "Affichez les liens des profils de mdias sociaux personnaliss."
67
 
68
  #: includes/class-social.php:25
69
  msgid "Social"
70
+ msgstr "Social"
71
 
72
+ #: includes/class-social.php:167
73
  #, php-format
74
+ msgctxt ""
75
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
76
+ "Facebook)"
77
+ msgid "Visit %1$s on %2$s"
78
+ msgstr "Visitez %1$s sur %2$s"
79
 
80
  #: includes/social-networks.php:9
81
+ msgctxt "Must be lowercase and use url-safe characters"
82
  msgid "username"
83
+ msgstr "nom dutilisateur"
84
 
85
  #: includes/social-networks.php:10
86
+ msgctxt "Must be lowercase and use url-safe characters"
87
  msgid "channel"
88
+ msgstr "canal"
89
 
90
  #: includes/social-networks.php:11
91
+ msgctxt "Must be lowercase and use url-safe characters"
92
  msgid "company"
93
+ msgstr "socit"
94
 
95
  #: includes/social-networks.php:12
96
+ msgctxt "Must be lowercase and use url-safe characters"
97
  msgid "board"
98
+ msgstr "tableau"
99
 
100
  #: includes/social-networks.php:17
101
  msgid "Facebook"
102
+ msgstr "Facebook"
103
 
104
  #: includes/social-networks.php:22
105
  msgid "Twitter"
106
+ msgstr "Twitter"
107
 
108
  #: includes/social-networks.php:28
109
  msgid "Google+"
110
+ msgstr "Google+"
111
 
112
  #: includes/social-networks.php:34
113
  msgid "LinkedIn"
114
+ msgstr "LinkedIn"
115
 
116
  #: includes/social-networks.php:39
117
  msgid "Pinterest"
118
+ msgstr "Pinterest"
119
 
120
  #: includes/social-networks.php:44
121
  msgid "YouTube"
122
+ msgstr "YouTube"
123
 
124
  #: includes/social-networks.php:49
125
  msgid "Vimeo"
126
+ msgstr "Vimeo"
127
 
128
  #: includes/social-networks.php:54
129
  msgid "Flickr"
130
+ msgstr "Flickr"
131
 
132
  #: includes/social-networks.php:59
133
  msgid "Foursquare"
134
+ msgstr "Foursquare"
135
 
136
  #: includes/social-networks.php:64
137
  msgid "GitHub"
138
+ msgstr "GitHub"
139
 
140
  #: includes/social-networks.php:69
141
  msgid "Slack"
142
+ msgstr "Slack"
143
 
144
  #: includes/social-networks.php:74
145
  msgid "Skype"
146
+ msgstr "Skype"
147
 
148
  #: includes/social-networks.php:80
149
  msgid "SoundCloud"
150
+ msgstr "SoundCloud"
151
 
152
  #: includes/social-networks.php:85
153
  msgid "TripAdvisor"
154
+ msgstr "TripAdvisor"
155
 
156
  #: includes/social-networks.php:89
157
  msgid "WordPress"
158
+ msgstr "WordPress"
159
 
160
  #: includes/social-networks.php:94
161
  msgid "Yelp"
162
+ msgstr "Yelp"
163
 
164
  #: includes/social-networks.php:99
165
  msgid "Amazon"
166
+ msgstr "Amazon"
167
 
168
  #: includes/social-networks.php:103
169
  msgid "Instagram"
170
+ msgstr "Instagram"
171
 
172
  #: includes/social-networks.php:108
173
  msgid "Vine"
174
+ msgstr "Vine"
175
 
176
  #: includes/social-networks.php:113
177
  msgid "reddit"
178
+ msgstr "reddit"
179
 
180
  #: includes/social-networks.php:118
181
  msgid "XING"
182
+ msgstr "XING"
183
 
184
  #: includes/social-networks.php:122
185
  msgid "Tumblr"
186
+ msgstr "Tumblr"
187
 
188
  #: includes/social-networks.php:127
189
  msgid "WhatsApp"
190
+ msgstr "WhatsApp"
191
 
192
  #: includes/social-networks.php:131
193
  msgid "WeChat"
194
+ msgstr "WeChat"
195
 
196
  #: includes/social-networks.php:135
197
  msgid "Medium"
198
+ msgstr "Medium"
199
 
200
  #: includes/social-networks.php:140
201
  msgid "Dribbble"
202
+ msgstr "Dribbble"
203
 
204
  #: includes/social-networks.php:145
205
  msgid "Twitch"
206
+ msgstr "Twitch"
207
 
208
  #: includes/social-networks.php:150
209
  msgid "VK"
210
+ msgstr "VK"
211
 
212
  #: includes/social-networks.php:154
213
  msgid "Trello"
214
+ msgstr "Trello"
215
+
216
+ #: contact-widgets.php:88
217
+ #, php-format
218
+ msgid ""
219
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
220
+ "plugin and contact your system administrator."
221
  msgstr ""
222
+ "Contact Widget ncessite une version PHP %s ou suprieure. Veuillez dsactiver "
223
+ "le plug-in et contacter votre administrateur systme."
languages/contact-widgets-id_ID.mo CHANGED
Binary file
languages/contact-widgets-id_ID.po CHANGED
@@ -1,228 +1,224 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:03-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: id_ID\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Judul:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 ""
24
+ "Alamat email yang dapat digunakan pengunjung situs web untuk menghubungi "
25
+ "Anda."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telepon:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Nomor telepon yang dapat dihubungi pengunjung situs web jika ingin "
35
+ "mengajukan pertanyaan."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Faks:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Nomor faks yang dapat digunakan pengunjung situs web untuk mengirimkan "
45
+ "dokumen penting."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Alamat:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "Alamat fisik yang dapat dikunjungi pengunjung situs web untuk bertemu Anda "
55
+ "secara langsung."
56
 
57
+ #: includes/class-contact.php:180 includes/class-social.php:219
58
  msgid "Display labels?"
59
+ msgstr "Tampilkan label?"
60
 
61
  #: includes/class-contact.php:190
62
  msgid "Display map of address?"
63
+ msgstr "Tampilkan peta alamat?"
64
 
65
  #: includes/class-social.php:20
66
+ msgid "Display custom social media profile links."
67
+ msgstr "Tampilkan tautan profil media sosial yang disesuaikan."
68
 
69
  #: includes/class-social.php:25
70
  msgid "Social"
71
+ msgstr "Sosial"
72
 
73
+ #: includes/class-social.php:167
74
  #, php-format
75
+ msgctxt ""
76
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
77
+ "Facebook)"
78
+ msgid "Visit %1$s on %2$s"
79
+ msgstr "Kunjungi %1$s di %2$s"
80
 
81
  #: includes/social-networks.php:9
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "username"
84
+ msgstr "nama pengguna"
85
 
86
  #: includes/social-networks.php:10
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "channel"
89
+ msgstr "saluran"
90
 
91
  #: includes/social-networks.php:11
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "company"
94
+ msgstr "perusahaan"
95
 
96
  #: includes/social-networks.php:12
97
+ msgctxt "Must be lowercase and use url-safe characters"
98
  msgid "board"
99
+ msgstr "media"
100
 
101
  #: includes/social-networks.php:17
102
  msgid "Facebook"
103
+ msgstr "Facebook"
104
 
105
  #: includes/social-networks.php:22
106
  msgid "Twitter"
107
+ msgstr "Twitter"
108
 
109
  #: includes/social-networks.php:28
110
  msgid "Google+"
111
+ msgstr "Google+"
112
 
113
  #: includes/social-networks.php:34
114
  msgid "LinkedIn"
115
+ msgstr "LinkedIn"
116
 
117
  #: includes/social-networks.php:39
118
  msgid "Pinterest"
119
+ msgstr "Pinterest"
120
 
121
  #: includes/social-networks.php:44
122
  msgid "YouTube"
123
+ msgstr "YouTube"
124
 
125
  #: includes/social-networks.php:49
126
  msgid "Vimeo"
127
+ msgstr "Vimeo"
128
 
129
  #: includes/social-networks.php:54
130
  msgid "Flickr"
131
+ msgstr "Flickr"
132
 
133
  #: includes/social-networks.php:59
134
  msgid "Foursquare"
135
+ msgstr "Foursquare"
136
 
137
  #: includes/social-networks.php:64
138
  msgid "GitHub"
139
+ msgstr "GitHub"
140
 
141
  #: includes/social-networks.php:69
142
  msgid "Slack"
143
+ msgstr "Slack"
144
 
145
  #: includes/social-networks.php:74
146
  msgid "Skype"
147
+ msgstr "Skype"
148
 
149
  #: includes/social-networks.php:80
150
  msgid "SoundCloud"
151
+ msgstr "SoundCloud"
152
 
153
  #: includes/social-networks.php:85
154
  msgid "TripAdvisor"
155
+ msgstr "TripAdvisor"
156
 
157
  #: includes/social-networks.php:89
158
  msgid "WordPress"
159
+ msgstr "WordPress"
160
 
161
  #: includes/social-networks.php:94
162
  msgid "Yelp"
163
+ msgstr "Yelp"
164
 
165
  #: includes/social-networks.php:99
166
  msgid "Amazon"
167
+ msgstr "Amazon"
168
 
169
  #: includes/social-networks.php:103
170
  msgid "Instagram"
171
+ msgstr "Instagram"
172
 
173
  #: includes/social-networks.php:108
174
  msgid "Vine"
175
+ msgstr "Vine"
176
 
177
  #: includes/social-networks.php:113
178
  msgid "reddit"
179
+ msgstr "reddit"
180
 
181
  #: includes/social-networks.php:118
182
  msgid "XING"
183
+ msgstr "XING"
184
 
185
  #: includes/social-networks.php:122
186
  msgid "Tumblr"
187
+ msgstr "Tumblr"
188
 
189
  #: includes/social-networks.php:127
190
  msgid "WhatsApp"
191
+ msgstr "WhatsApp"
192
 
193
  #: includes/social-networks.php:131
194
  msgid "WeChat"
195
+ msgstr "WeChat"
196
 
197
  #: includes/social-networks.php:135
198
  msgid "Medium"
199
+ msgstr "Medium"
200
 
201
  #: includes/social-networks.php:140
202
  msgid "Dribbble"
203
+ msgstr "Dribbble"
204
 
205
  #: includes/social-networks.php:145
206
  msgid "Twitch"
207
+ msgstr "Twitch"
208
 
209
  #: includes/social-networks.php:150
210
  msgid "VK"
211
+ msgstr "VK"
212
 
213
  #: includes/social-networks.php:154
214
  msgid "Trello"
215
+ msgstr "Trello"
216
+
217
+ #: contact-widgets.php:88
218
+ #, php-format
219
+ msgid ""
220
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
221
+ "plugin and contact your system administrator."
222
  msgstr ""
223
+ "Widget kontak memerlukan versi PHP %s atau lebih baru. Harap matikan plugin "
224
+ "dan hubungi administrator sistem Anda."
languages/contact-widgets-it_IT.mo CHANGED
Binary file
languages/contact-widgets-it_IT.po CHANGED
@@ -1,228 +1,224 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:03-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: it_IT\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
  msgstr ""
 
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Titolo:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
  msgstr ""
16
+ "Il titolo del widget. Lascia il campo vuoto se vuoi omettere il titolo."
17
 
18
  #: includes/class-contact.php:152
19
  msgid "Email:"
20
+ msgstr "Email:"
21
 
22
  #: includes/class-contact.php:159
23
  msgid "An email address where website vistors can contact you."
24
  msgstr ""
25
+ "L'indirizzo email al quale i visitatori del sito web possono contattarti."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telefono:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Il numero di telefono che i visitatori del sito web possono usare per "
35
+ "chiamarti in caso di domande."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Fax:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Il numero di fax che i visitatori del sito web possono usare per inviarti "
45
+ "documenti importanti."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Indirizzo:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "L'indirizzo fisico presso il quale i visitatori del sito web possono venire "
55
+ "di persona."
56
 
57
+ #: includes/class-contact.php:180 includes/class-social.php:219
58
  msgid "Display labels?"
59
+ msgstr "Vuoi visualizzare le etichette?"
60
 
61
  #: includes/class-contact.php:190
62
  msgid "Display map of address?"
63
+ msgstr "Vuoi visualizzare la mappa dell'indirizzo?"
64
 
65
  #: includes/class-social.php:20
66
+ msgid "Display custom social media profile links."
67
+ msgstr "Visualizza link personalizzati a profili di social media."
68
 
69
  #: includes/class-social.php:25
70
  msgid "Social"
71
+ msgstr "Social"
72
 
73
+ #: includes/class-social.php:167
74
  #, php-format
75
+ msgctxt ""
76
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
77
+ "Facebook)"
78
+ msgid "Visit %1$s on %2$s"
79
+ msgstr "Visita %1$s su %2$s"
80
 
81
  #: includes/social-networks.php:9
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "username"
84
+ msgstr "nome utente"
85
 
86
  #: includes/social-networks.php:10
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "channel"
89
+ msgstr "canale"
90
 
91
  #: includes/social-networks.php:11
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "company"
94
+ msgstr "azienda"
95
 
96
  #: includes/social-networks.php:12
97
+ msgctxt "Must be lowercase and use url-safe characters"
98
  msgid "board"
99
+ msgstr "bacheca"
100
 
101
  #: includes/social-networks.php:17
102
  msgid "Facebook"
103
+ msgstr "Facebook"
104
 
105
  #: includes/social-networks.php:22
106
  msgid "Twitter"
107
+ msgstr "Twitter"
108
 
109
  #: includes/social-networks.php:28
110
  msgid "Google+"
111
+ msgstr "Google +"
112
 
113
  #: includes/social-networks.php:34
114
  msgid "LinkedIn"
115
+ msgstr "LinkedIn"
116
 
117
  #: includes/social-networks.php:39
118
  msgid "Pinterest"
119
+ msgstr "Pinterest"
120
 
121
  #: includes/social-networks.php:44
122
  msgid "YouTube"
123
+ msgstr "YouTube"
124
 
125
  #: includes/social-networks.php:49
126
  msgid "Vimeo"
127
+ msgstr "Vimeo"
128
 
129
  #: includes/social-networks.php:54
130
  msgid "Flickr"
131
+ msgstr "Flickr"
132
 
133
  #: includes/social-networks.php:59
134
  msgid "Foursquare"
135
+ msgstr "Foursquare"
136
 
137
  #: includes/social-networks.php:64
138
  msgid "GitHub"
139
+ msgstr "GitHub"
140
 
141
  #: includes/social-networks.php:69
142
  msgid "Slack"
143
+ msgstr "Slack"
144
 
145
  #: includes/social-networks.php:74
146
  msgid "Skype"
147
+ msgstr "Skype"
148
 
149
  #: includes/social-networks.php:80
150
  msgid "SoundCloud"
151
+ msgstr "SoundCloud"
152
 
153
  #: includes/social-networks.php:85
154
  msgid "TripAdvisor"
155
+ msgstr "TripAdvisor"
156
 
157
  #: includes/social-networks.php:89
158
  msgid "WordPress"
159
+ msgstr "WordPress"
160
 
161
  #: includes/social-networks.php:94
162
  msgid "Yelp"
163
+ msgstr "Yelp"
164
 
165
  #: includes/social-networks.php:99
166
  msgid "Amazon"
167
+ msgstr "Amazon"
168
 
169
  #: includes/social-networks.php:103
170
  msgid "Instagram"
171
+ msgstr "Instagram"
172
 
173
  #: includes/social-networks.php:108
174
  msgid "Vine"
175
+ msgstr "Vine"
176
 
177
  #: includes/social-networks.php:113
178
  msgid "reddit"
179
+ msgstr "reddit"
180
 
181
  #: includes/social-networks.php:118
182
  msgid "XING"
183
+ msgstr "XING"
184
 
185
  #: includes/social-networks.php:122
186
  msgid "Tumblr"
187
+ msgstr "Tumblr"
188
 
189
  #: includes/social-networks.php:127
190
  msgid "WhatsApp"
191
+ msgstr "WhatsApp"
192
 
193
  #: includes/social-networks.php:131
194
  msgid "WeChat"
195
+ msgstr "WeChat"
196
 
197
  #: includes/social-networks.php:135
198
  msgid "Medium"
199
+ msgstr "Medium"
200
 
201
  #: includes/social-networks.php:140
202
  msgid "Dribbble"
203
+ msgstr "Dribbble"
204
 
205
  #: includes/social-networks.php:145
206
  msgid "Twitch"
207
+ msgstr "Twitch"
208
 
209
  #: includes/social-networks.php:150
210
  msgid "VK"
211
+ msgstr "VK"
212
 
213
  #: includes/social-networks.php:154
214
  msgid "Trello"
215
+ msgstr "Trello"
216
+
217
+ #: contact-widgets.php:88
218
+ #, php-format
219
+ msgid ""
220
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
221
+ "plugin and contact your system administrator."
222
  msgstr ""
223
+ "Il widget dei contatti richiede la versione PHP %s o una versione pi "
224
+ "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,46 +1,18 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:03-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: ja\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
  msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
  msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
@@ -48,7 +20,7 @@ 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:"
@@ -56,7 +28,7 @@ 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:"
@@ -64,7 +36,7 @@ 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:"
@@ -72,9 +44,9 @@ 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
 
@@ -83,146 +55,160 @@ msgid "Display map of address?"
83
  msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
  msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
  msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
  msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
228
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
  msgstr ""
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr " "
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
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:"
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:"
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:"
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:219
50
  msgid "Display labels?"
51
  msgstr ""
52
 
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:167
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,171 +1,150 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:03-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: ko_KR\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
- msgstr ""
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
- msgstr ""
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
  msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
@@ -173,56 +152,63 @@ 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:208
10
  msgid "Title:"
11
+ msgstr ":"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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:219
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:167
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"
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,221 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:04-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: ms_MY\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Paparkan maklumat kenalan tersuai."
4
 
5
  #: includes/class-contact.php:25
6
  msgid "Contact"
7
+ msgstr "Hubungan"
8
 
9
+ #: includes/class-contact.php:146 includes/class-social.php:208
10
  msgid "Title:"
11
+ msgstr "Tajuk:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 ""
32
+ "Nombor telefon yang pelawat halaman utama boleh panggil jika mereka "
33
+ "mempunyai soalan."
34
 
35
  #: includes/class-contact.php:167
36
  msgid "Fax:"
37
+ msgstr "Faks:"
38
 
39
  #: includes/class-contact.php:169
40
  msgid "A fax number that website vistors can use to send important documents."
41
  msgstr ""
42
+ "Nombor faks di mana pelawat halaman utama boleh gunakan untuk menghantar "
43
+ "dokumen penting,"
44
 
45
  #: includes/class-contact.php:172
46
  msgid "Address:"
47
+ msgstr "Alamat:"
48
 
49
  #: includes/class-contact.php:177
50
  msgid "A physical address where website vistors can go to visit you in person."
51
  msgstr ""
52
+ "Alamat fizikal di mana halaman utama boleh pergi untuk melawat anda sendiri."
53
 
54
+ #: includes/class-contact.php:180 includes/class-social.php:219
55
  msgid "Display labels?"
56
+ msgstr "Paparkan label?"
57
 
58
  #: includes/class-contact.php:190
59
  msgid "Display map of address?"
60
+ msgstr "Paparkan peta alamat?"
61
 
62
  #: includes/class-social.php:20
63
+ msgid "Display custom social media profile links."
64
+ msgstr "Paparkan pautan profil medial sosial tersuai."
65
 
66
  #: includes/class-social.php:25
67
  msgid "Social"
68
+ msgstr "Sosial"
69
 
70
+ #: includes/class-social.php:167
71
  #, php-format
72
+ msgctxt ""
73
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
74
+ "Facebook)"
75
+ msgid "Visit %1$s on %2$s"
76
+ msgstr "Lawat %1$s pada %2$s"
77
 
78
  #: includes/social-networks.php:9
79
+ msgctxt "Must be lowercase and use url-safe characters"
80
  msgid "username"
81
+ msgstr "nama pengguna"
82
 
83
  #: includes/social-networks.php:10
84
+ msgctxt "Must be lowercase and use url-safe characters"
85
  msgid "channel"
86
+ msgstr "saluran"
87
 
88
  #: includes/social-networks.php:11
89
+ msgctxt "Must be lowercase and use url-safe characters"
90
  msgid "company"
91
+ msgstr "syarikat "
92
 
93
  #: includes/social-networks.php:12
94
+ msgctxt "Must be lowercase and use url-safe characters"
95
  msgid "board"
96
+ msgstr "papan"
97
 
98
  #: includes/social-networks.php:17
99
  msgid "Facebook"
100
+ msgstr "Facebook"
101
 
102
  #: includes/social-networks.php:22
103
  msgid "Twitter"
104
+ msgstr "Twitter"
105
 
106
  #: includes/social-networks.php:28
107
  msgid "Google+"
108
+ msgstr "Google+"
109
 
110
  #: includes/social-networks.php:34
111
  msgid "LinkedIn"
112
+ msgstr "LinkedIn"
113
 
114
  #: includes/social-networks.php:39
115
  msgid "Pinterest"
116
+ msgstr "Pinterest"
117
 
118
  #: includes/social-networks.php:44
119
  msgid "YouTube"
120
+ msgstr "YouTube"
121
 
122
  #: includes/social-networks.php:49
123
  msgid "Vimeo"
124
+ msgstr "Vimeo"
125
 
126
  #: includes/social-networks.php:54
127
  msgid "Flickr"
128
+ msgstr "Flickr"
129
 
130
  #: includes/social-networks.php:59
131
  msgid "Foursquare"
132
+ msgstr "Foursquare"
133
 
134
  #: includes/social-networks.php:64
135
  msgid "GitHub"
136
+ msgstr "GitHub"
137
 
138
  #: includes/social-networks.php:69
139
  msgid "Slack"
140
+ msgstr "Slack"
141
 
142
  #: includes/social-networks.php:74
143
  msgid "Skype"
144
+ msgstr "Skype"
145
 
146
  #: includes/social-networks.php:80
147
  msgid "SoundCloud"
148
+ msgstr "SoundCloud"
149
 
150
  #: includes/social-networks.php:85
151
  msgid "TripAdvisor"
152
+ msgstr "TripAdvisor"
153
 
154
  #: includes/social-networks.php:89
155
  msgid "WordPress"
156
+ msgstr "WordPress"
157
 
158
  #: includes/social-networks.php:94
159
  msgid "Yelp"
160
+ msgstr "Yelp"
161
 
162
  #: includes/social-networks.php:99
163
  msgid "Amazon"
164
+ msgstr "Amazon"
165
 
166
  #: includes/social-networks.php:103
167
  msgid "Instagram"
168
+ msgstr "Instagram"
169
 
170
  #: includes/social-networks.php:108
171
  msgid "Vine"
172
+ msgstr "Vine"
173
 
174
  #: includes/social-networks.php:113
175
  msgid "reddit"
176
+ msgstr "reddit"
177
 
178
  #: includes/social-networks.php:118
179
  msgid "XING"
180
+ msgstr "XING"
181
 
182
  #: includes/social-networks.php:122
183
  msgid "Tumblr"
184
+ msgstr "Tumblr"
185
 
186
  #: includes/social-networks.php:127
187
  msgid "WhatsApp"
188
+ msgstr "WhatsApp"
189
 
190
  #: includes/social-networks.php:131
191
  msgid "WeChat"
192
+ msgstr "WeChat"
193
 
194
  #: includes/social-networks.php:135
195
  msgid "Medium"
196
+ msgstr "Medium"
197
 
198
  #: includes/social-networks.php:140
199
  msgid "Dribbble"
200
+ msgstr "Dribbble"
201
 
202
  #: includes/social-networks.php:145
203
  msgid "Twitch"
204
+ msgstr "Twitch"
205
 
206
  #: includes/social-networks.php:150
207
  msgid "VK"
208
+ msgstr "VK"
209
 
210
  #: includes/social-networks.php:154
211
  msgid "Trello"
212
+ msgstr "Trello"
213
+
214
+ #: contact-widgets.php:88
215
+ #, php-format
216
+ msgid ""
217
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
218
+ "plugin and contact your system administrator."
219
  msgstr ""
220
+ "Hubungi widget memerlukan versi PHP %s atau lebih tinggi. Sila nyahaktif "
221
+ "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,220 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:04-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: nb_NO\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
- msgstr ""
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Tittel:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 beskende 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 beskende til nettstedet kan ringe hvis de har sprsml."
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 ""
40
+ "Et faksnummer beskende til nettstedet kan bruke til sende viktige "
41
+ "dokumenter."
42
 
43
  #: includes/class-contact.php:172
44
  msgid "Address:"
45
+ msgstr "Adresse:"
46
 
47
  #: includes/class-contact.php:177
48
  msgid "A physical address where website vistors can go to visit you in person."
49
  msgstr ""
50
+ "En fysisk adresse beskende til nettstedet kan dra til for beske deg "
51
+ "personlig."
52
 
53
+ #: includes/class-contact.php:180 includes/class-social.php:219
54
  msgid "Display labels?"
55
+ msgstr "Vis etiketter?"
56
 
57
  #: includes/class-contact.php:190
58
  msgid "Display map of address?"
59
+ msgstr "Vis kart over adresse?"
60
 
61
  #: includes/class-social.php:20
62
+ msgid "Display custom social media profile links."
63
+ msgstr "Vis egendefinerte koblinger til profiler p sosiale medier"
64
 
65
  #: includes/class-social.php:25
66
  msgid "Social"
67
+ msgstr "Sosial"
68
 
69
+ #: includes/class-social.php:167
70
  #, php-format
71
+ msgctxt ""
72
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
73
+ "Facebook)"
74
+ msgid "Visit %1$s on %2$s"
75
+ msgstr "Besk %1$s p %2$s"
76
 
77
  #: includes/social-networks.php:9
78
+ msgctxt "Must be lowercase and use url-safe characters"
79
  msgid "username"
80
+ msgstr "brukernavn"
81
 
82
  #: includes/social-networks.php:10
83
+ msgctxt "Must be lowercase and use url-safe characters"
84
  msgid "channel"
85
+ msgstr "kanal"
86
 
87
  #: includes/social-networks.php:11
88
+ msgctxt "Must be lowercase and use url-safe characters"
89
  msgid "company"
90
+ msgstr "selskap"
91
 
92
  #: includes/social-networks.php:12
93
+ msgctxt "Must be lowercase and use url-safe characters"
94
  msgid "board"
95
+ msgstr "brett"
96
 
97
  #: includes/social-networks.php:17
98
  msgid "Facebook"
99
+ msgstr "Facebook"
100
 
101
  #: includes/social-networks.php:22
102
  msgid "Twitter"
103
+ msgstr "Twitter"
104
 
105
  #: includes/social-networks.php:28
106
  msgid "Google+"
107
+ msgstr "Google +"
108
 
109
  #: includes/social-networks.php:34
110
  msgid "LinkedIn"
111
+ msgstr "LinkedIn"
112
 
113
  #: includes/social-networks.php:39
114
  msgid "Pinterest"
115
+ msgstr "Pinterest"
116
 
117
  #: includes/social-networks.php:44
118
  msgid "YouTube"
119
+ msgstr "YouTube"
120
 
121
  #: includes/social-networks.php:49
122
  msgid "Vimeo"
123
+ msgstr "Vimeo"
124
 
125
  #: includes/social-networks.php:54
126
  msgid "Flickr"
127
+ msgstr "Flickr"
128
 
129
  #: includes/social-networks.php:59
130
  msgid "Foursquare"
131
+ msgstr "Foursquare"
132
 
133
  #: includes/social-networks.php:64
134
  msgid "GitHub"
135
+ msgstr "GitHub"
136
 
137
  #: includes/social-networks.php:69
138
  msgid "Slack"
139
+ msgstr "Slack"
140
 
141
  #: includes/social-networks.php:74
142
  msgid "Skype"
143
+ msgstr "Skype"
144
 
145
  #: includes/social-networks.php:80
146
  msgid "SoundCloud"
147
+ msgstr "SoundCloud"
148
 
149
  #: includes/social-networks.php:85
150
  msgid "TripAdvisor"
151
+ msgstr "TripAdvisor"
152
 
153
  #: includes/social-networks.php:89
154
  msgid "WordPress"
155
+ msgstr "WordPress"
156
 
157
  #: includes/social-networks.php:94
158
  msgid "Yelp"
159
+ msgstr "Yelp"
160
 
161
  #: includes/social-networks.php:99
162
  msgid "Amazon"
163
+ msgstr "Amazon"
164
 
165
  #: includes/social-networks.php:103
166
  msgid "Instagram"
167
+ msgstr "Instagram"
168
 
169
  #: includes/social-networks.php:108
170
  msgid "Vine"
171
+ msgstr "Vine"
172
 
173
  #: includes/social-networks.php:113
174
  msgid "reddit"
175
+ msgstr "reddit"
176
 
177
  #: includes/social-networks.php:118
178
  msgid "XING"
179
+ msgstr "XING"
180
 
181
  #: includes/social-networks.php:122
182
  msgid "Tumblr"
183
+ msgstr "Tumblr"
184
 
185
  #: includes/social-networks.php:127
186
  msgid "WhatsApp"
187
+ msgstr "WhatsApp"
188
 
189
  #: includes/social-networks.php:131
190
  msgid "WeChat"
191
+ msgstr "WeChat"
192
 
193
  #: includes/social-networks.php:135
194
  msgid "Medium"
195
+ msgstr "Medium"
196
 
197
  #: includes/social-networks.php:140
198
  msgid "Dribbble"
199
+ msgstr "Dribbble"
200
 
201
  #: includes/social-networks.php:145
202
  msgid "Twitch"
203
+ msgstr "Twitch"
204
 
205
  #: includes/social-networks.php:150
206
  msgid "VK"
207
+ msgstr "VK"
208
 
209
  #: includes/social-networks.php:154
210
  msgid "Trello"
211
+ msgstr "Trello"
212
+
213
+ #: contact-widgets.php:88
214
+ #, php-format
215
+ msgid ""
216
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
217
+ "plugin and contact your system administrator."
218
  msgstr ""
219
+ "Kontakt-kontrollprogrammer krever PHP-versjon %s eller nyere. Deaktiver "
220
+ "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,219 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:05-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: nl_NL\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Titel:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 ""
32
+ "Een telefoonnummer dat websitebezoekers kunnen bellen als ze vragen hebben."
33
 
34
  #: includes/class-contact.php:167
35
  msgid "Fax:"
36
+ msgstr "Fax:"
37
 
38
  #: includes/class-contact.php:169
39
  msgid "A fax number that website vistors can use to send important documents."
40
  msgstr ""
41
+ "Een faxnummer dat websitebezoekers kunnen gebruiken om belangrijke "
42
+ "documenten te verzenden."
43
 
44
  #: includes/class-contact.php:172
45
  msgid "Address:"
46
+ msgstr "Adres:"
47
 
48
  #: includes/class-contact.php:177
49
  msgid "A physical address where website vistors can go to visit you in person."
50
+ msgstr "Een fysiek adres waar websitebezoekers u persoonlijk kunnen bezoeken."
51
 
52
+ #: includes/class-contact.php:180 includes/class-social.php:219
53
  msgid "Display labels?"
54
+ msgstr "Labels weergeven?"
55
 
56
  #: includes/class-contact.php:190
57
  msgid "Display map of address?"
58
+ msgstr "Kaart van adres weergeven?"
59
 
60
  #: includes/class-social.php:20
61
+ msgid "Display custom social media profile links."
62
+ msgstr "Geef aangepaste koppelingen naar sociale mediaprofielen weer."
63
 
64
  #: includes/class-social.php:25
65
  msgid "Social"
66
+ msgstr "Sociaal"
67
 
68
+ #: includes/class-social.php:167
69
  #, php-format
70
+ msgctxt ""
71
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
72
+ "Facebook)"
73
+ msgid "Visit %1$s on %2$s"
74
+ msgstr "Bezoek %1$s op %2$s"
75
 
76
  #: includes/social-networks.php:9
77
+ msgctxt "Must be lowercase and use url-safe characters"
78
  msgid "username"
79
+ msgstr "gebruikersnaam"
80
 
81
  #: includes/social-networks.php:10
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "channel"
84
+ msgstr "kanaal"
85
 
86
  #: includes/social-networks.php:11
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "company"
89
+ msgstr "bedrijf"
90
 
91
  #: includes/social-networks.php:12
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "board"
94
+ msgstr "board"
95
 
96
  #: includes/social-networks.php:17
97
  msgid "Facebook"
98
+ msgstr "Facebook"
99
 
100
  #: includes/social-networks.php:22
101
  msgid "Twitter"
102
+ msgstr "Twitter"
103
 
104
  #: includes/social-networks.php:28
105
  msgid "Google+"
106
+ msgstr "Google+"
107
 
108
  #: includes/social-networks.php:34
109
  msgid "LinkedIn"
110
+ msgstr "LinkedIn"
111
 
112
  #: includes/social-networks.php:39
113
  msgid "Pinterest"
114
+ msgstr "Pinterest"
115
 
116
  #: includes/social-networks.php:44
117
  msgid "YouTube"
118
+ msgstr "YouTube"
119
 
120
  #: includes/social-networks.php:49
121
  msgid "Vimeo"
122
+ msgstr "Vimeo"
123
 
124
  #: includes/social-networks.php:54
125
  msgid "Flickr"
126
+ msgstr "Flickr"
127
 
128
  #: includes/social-networks.php:59
129
  msgid "Foursquare"
130
+ msgstr "Foursquare"
131
 
132
  #: includes/social-networks.php:64
133
  msgid "GitHub"
134
+ msgstr "GitHub"
135
 
136
  #: includes/social-networks.php:69
137
  msgid "Slack"
138
+ msgstr "Slack"
139
 
140
  #: includes/social-networks.php:74
141
  msgid "Skype"
142
+ msgstr "Skype"
143
 
144
  #: includes/social-networks.php:80
145
  msgid "SoundCloud"
146
+ msgstr "SoundCloud"
147
 
148
  #: includes/social-networks.php:85
149
  msgid "TripAdvisor"
150
+ msgstr "TripAdvisor"
151
 
152
  #: includes/social-networks.php:89
153
  msgid "WordPress"
154
+ msgstr "WordPress"
155
 
156
  #: includes/social-networks.php:94
157
  msgid "Yelp"
158
+ msgstr "Yelp"
159
 
160
  #: includes/social-networks.php:99
161
  msgid "Amazon"
162
+ msgstr "Amazon"
163
 
164
  #: includes/social-networks.php:103
165
  msgid "Instagram"
166
+ msgstr "Instagram"
167
 
168
  #: includes/social-networks.php:108
169
  msgid "Vine"
170
+ msgstr "Vine"
171
 
172
  #: includes/social-networks.php:113
173
  msgid "reddit"
174
+ msgstr "reddit"
175
 
176
  #: includes/social-networks.php:118
177
  msgid "XING"
178
+ msgstr "XING"
179
 
180
  #: includes/social-networks.php:122
181
  msgid "Tumblr"
182
+ msgstr "Tumblr"
183
 
184
  #: includes/social-networks.php:127
185
  msgid "WhatsApp"
186
+ msgstr "WhatsApp"
187
 
188
  #: includes/social-networks.php:131
189
  msgid "WeChat"
190
+ msgstr "WeChat"
191
 
192
  #: includes/social-networks.php:135
193
  msgid "Medium"
194
+ msgstr "Medium"
195
 
196
  #: includes/social-networks.php:140
197
  msgid "Dribbble"
198
+ msgstr "Dribbble"
199
 
200
  #: includes/social-networks.php:145
201
  msgid "Twitch"
202
+ msgstr "Twitch"
203
 
204
  #: includes/social-networks.php:150
205
  msgid "VK"
206
+ msgstr "VK"
207
 
208
  #: includes/social-networks.php:154
209
  msgid "Trello"
210
+ msgstr "Trello"
211
+
212
+ #: contact-widgets.php:88
213
+ #, php-format
214
+ msgid ""
215
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
216
+ "plugin and contact your system administrator."
217
  msgstr ""
218
+ "Voor contactwidgets is PHP-versie %s of hoger vereist. Deactiveer de plug-in "
219
+ "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 "Custom contact links"
32
- msgstr ""
33
 
34
  #: includes/class-contact.php:25
35
  msgid "Contact"
36
- msgstr ""
37
 
38
- #: includes/class-contact.php:146 includes/class-social.php:203
39
  msgid "Title:"
40
- msgstr ""
41
 
42
- #: includes/class-contact.php:147 includes/class-social.php:204
43
  msgid "The title of widget. Leave empty for no title."
44
- msgstr ""
45
 
46
  #: includes/class-contact.php:152
47
  msgid "Email:"
48
- msgstr ""
49
 
50
  #: includes/class-contact.php:159
51
  msgid "An email address where website vistors can contact you."
52
- msgstr ""
53
 
54
  #: includes/class-contact.php:162
55
  msgid "Phone:"
56
- msgstr ""
57
 
58
  #: includes/class-contact.php:164
59
  msgid "A phone number that website vistors can call if they have questions."
60
- msgstr ""
61
 
62
  #: includes/class-contact.php:167
63
  msgid "Fax:"
64
- msgstr ""
65
 
66
  #: includes/class-contact.php:169
67
  msgid "A fax number that website vistors can use to send important documents."
68
- msgstr ""
69
 
70
  #: includes/class-contact.php:172
71
  msgid "Address:"
72
- msgstr ""
73
 
74
  #: includes/class-contact.php:177
75
  msgid "A physical address where website vistors can go to visit you in person."
76
- msgstr ""
77
 
78
- #: includes/class-contact.php:180 includes/class-social.php:214
79
  msgid "Display labels?"
80
- msgstr ""
81
 
82
  #: includes/class-contact.php:190
83
  msgid "Display map of address?"
84
- msgstr ""
85
 
86
  #: includes/class-social.php:20
87
- msgid "Custom social links"
88
- msgstr ""
89
 
90
  #: includes/class-social.php:25
91
  msgid "Social"
92
- msgstr ""
93
 
94
- #: includes/class-social.php:163
95
  #, php-format
96
- msgid "Visit %s on %s"
97
- msgstr ""
 
 
 
98
 
99
  #: includes/social-networks.php:9
 
100
  msgid "username"
101
- msgstr ""
102
 
103
  #: includes/social-networks.php:10
 
104
  msgid "channel"
105
- msgstr ""
106
 
107
  #: includes/social-networks.php:11
 
108
  msgid "company"
109
- msgstr ""
110
 
111
  #: includes/social-networks.php:12
 
112
  msgid "board"
113
- msgstr ""
114
 
115
  #: includes/social-networks.php:17
116
  msgid "Facebook"
117
- msgstr ""
118
 
119
  #: includes/social-networks.php:22
120
  msgid "Twitter"
121
- msgstr ""
122
 
123
  #: includes/social-networks.php:28
124
  msgid "Google+"
125
- msgstr ""
126
 
127
  #: includes/social-networks.php:34
128
  msgid "LinkedIn"
129
- msgstr ""
130
 
131
  #: includes/social-networks.php:39
132
  msgid "Pinterest"
133
- msgstr ""
134
 
135
  #: includes/social-networks.php:44
136
  msgid "YouTube"
137
- msgstr ""
138
 
139
  #: includes/social-networks.php:49
140
  msgid "Vimeo"
141
- msgstr ""
142
 
143
  #: includes/social-networks.php:54
144
  msgid "Flickr"
145
- msgstr ""
146
 
147
  #: includes/social-networks.php:59
148
  msgid "Foursquare"
149
- msgstr ""
150
 
151
  #: includes/social-networks.php:64
152
  msgid "GitHub"
153
- msgstr ""
154
 
155
  #: includes/social-networks.php:69
156
  msgid "Slack"
157
- msgstr ""
158
 
159
  #: includes/social-networks.php:74
160
  msgid "Skype"
161
- msgstr ""
162
 
163
  #: includes/social-networks.php:80
164
  msgid "SoundCloud"
165
- msgstr ""
166
 
167
  #: includes/social-networks.php:85
168
  msgid "TripAdvisor"
169
- msgstr ""
170
 
171
  #: includes/social-networks.php:89
172
  msgid "WordPress"
173
- msgstr ""
174
 
175
  #: includes/social-networks.php:94
176
  msgid "Yelp"
177
- msgstr ""
178
 
179
  #: includes/social-networks.php:99
180
  msgid "Amazon"
181
- msgstr ""
182
 
183
  #: includes/social-networks.php:103
184
  msgid "Instagram"
185
- msgstr ""
186
 
187
  #: includes/social-networks.php:108
188
  msgid "Vine"
189
- msgstr ""
190
 
191
  #: includes/social-networks.php:113
192
  msgid "reddit"
193
- msgstr ""
194
 
195
  #: includes/social-networks.php:118
196
  msgid "XING"
197
- msgstr ""
198
 
199
  #: includes/social-networks.php:122
200
  msgid "Tumblr"
201
- msgstr ""
202
 
203
  #: includes/social-networks.php:127
204
  msgid "WhatsApp"
205
- msgstr ""
206
 
207
  #: includes/social-networks.php:131
208
  msgid "WeChat"
209
- msgstr ""
210
 
211
  #: includes/social-networks.php:135
212
  msgid "Medium"
213
- msgstr ""
214
 
215
  #: includes/social-networks.php:140
216
  msgid "Dribbble"
217
- msgstr ""
218
 
219
  #: includes/social-networks.php:145
220
  msgid "Twitch"
221
- msgstr ""
222
 
223
  #: includes/social-networks.php:150
224
  msgid "VK"
225
- msgstr ""
226
 
227
  #: includes/social-networks.php:154
228
  msgid "Trello"
 
 
 
 
 
 
 
229
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Wywietl 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:208
10
  msgid "Title:"
11
+ msgstr "Tytu:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Tytu widetu. Pozostaw pole puste, jeli nie chcesz tytuu."
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 odwiedzajcy 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 odwiedzajcy witryn wrazie 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 odwiedzajcy witryn mog przesa wane 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 odwiedzajcy witryn mog odwiedzi Ci osobicie."
48
 
49
+ #: includes/class-contact.php:180 includes/class-social.php:219
50
  msgid "Display labels?"
51
+ msgstr "Wywietla etykiety?"
52
 
53
  #: includes/class-contact.php:190
54
  msgid "Display map of address?"
55
+ msgstr "Wywietla map zadresem?"
56
 
57
  #: includes/class-social.php:20
58
+ msgid "Display custom social media profile links."
59
+ msgstr "Wywietl niestandardowe cza do profili wmediach spoecznociowych."
60
 
61
  #: includes/class-social.php:25
62
  msgid "Social"
63
+ msgstr "Media spoecznociowe"
64
 
65
+ #: includes/class-social.php:167
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 wserwisie %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 uytkownika"
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
+ "Widety kontaktu wymagaj PHP wwersji %s lub wyszej. Dezaktywuj wtyczk "
216
+ "iskontaktuj si zadministratorem systemu."
languages/contact-widgets-pt_BR.mo ADDED
Binary file
languages/contact-widgets-pt_BR.po ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Mostrar informaes 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:208
10
+ msgid "Title:"
11
+ msgstr "Ttulo:"
12
+
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
+ msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Ttulo do widget. Deixe em branco se no quiser ttulo."
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 "Endereo 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 dvidas."
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 ""
40
+ "Fax para que os visitantes do seu site possam enviar documentos importantes."
41
+
42
+ #: includes/class-contact.php:172
43
+ msgid "Address:"
44
+ msgstr "Endereo:"
45
+
46
+ #: includes/class-contact.php:177
47
+ msgid "A physical address where website vistors can go to visit you in person."
48
+ msgstr ""
49
+ "Endereo para que os visitantes do seu site possam visit-lo pessoalmente."
50
+
51
+ #: includes/class-contact.php:180 includes/class-social.php:219
52
+ msgid "Display labels?"
53
+ msgstr "Exibir etiquetas?"
54
+
55
+ #: includes/class-contact.php:190
56
+ msgid "Display map of address?"
57
+ msgstr "Exibir mapa do endereo?"
58
+
59
+ #: includes/class-social.php:20
60
+ msgid "Display custom social media profile links."
61
+ msgstr "Mostrar links de perfis personalizados de redes sociais."
62
+
63
+ #: includes/class-social.php:25
64
+ msgid "Social"
65
+ msgstr "Social"
66
+
67
+ #: includes/class-social.php:167
68
+ #, php-format
69
+ msgctxt ""
70
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
71
+ "Facebook)"
72
+ msgid "Visit %1$s on %2$s"
73
+ msgstr "Visite %1$s no %2$s"
74
+
75
+ #: includes/social-networks.php:9
76
+ msgctxt "Must be lowercase and use url-safe characters"
77
+ msgid "username"
78
+ msgstr "nomedeusuario"
79
+
80
+ #: includes/social-networks.php:10
81
+ msgctxt "Must be lowercase and use url-safe characters"
82
+ msgid "channel"
83
+ msgstr "canal"
84
+
85
+ #: includes/social-networks.php:11
86
+ msgctxt "Must be lowercase and use url-safe characters"
87
+ msgid "company"
88
+ msgstr "empresa"
89
+
90
+ #: includes/social-networks.php:12
91
+ msgctxt "Must be lowercase and use url-safe characters"
92
+ msgid "board"
93
+ msgstr "frum"
94
+
95
+ #: includes/social-networks.php:17
96
+ msgid "Facebook"
97
+ msgstr "Facebook"
98
+
99
+ #: includes/social-networks.php:22
100
+ msgid "Twitter"
101
+ msgstr "Twitter"
102
+
103
+ #: includes/social-networks.php:28
104
+ msgid "Google+"
105
+ msgstr "Google+"
106
+
107
+ #: includes/social-networks.php:34
108
+ msgid "LinkedIn"
109
+ msgstr "LinkedIn"
110
+
111
+ #: includes/social-networks.php:39
112
+ msgid "Pinterest"
113
+ msgstr "Pinterest"
114
+
115
+ #: includes/social-networks.php:44
116
+ msgid "YouTube"
117
+ msgstr "YouTube"
118
+
119
+ #: includes/social-networks.php:49
120
+ msgid "Vimeo"
121
+ msgstr "Vimeo"
122
+
123
+ #: includes/social-networks.php:54
124
+ msgid "Flickr"
125
+ msgstr "Flickr"
126
+
127
+ #: includes/social-networks.php:59
128
+ msgid "Foursquare"
129
+ msgstr "Foursquare"
130
+
131
+ #: includes/social-networks.php:64
132
+ msgid "GitHub"
133
+ msgstr "GitHub"
134
+
135
+ #: includes/social-networks.php:69
136
+ msgid "Slack"
137
+ msgstr "Slack"
138
+
139
+ #: includes/social-networks.php:74
140
+ msgid "Skype"
141
+ msgstr "Skype"
142
+
143
+ #: includes/social-networks.php:80
144
+ msgid "SoundCloud"
145
+ msgstr "SoundCloud"
146
+
147
+ #: includes/social-networks.php:85
148
+ msgid "TripAdvisor"
149
+ msgstr "TripAdvisor"
150
+
151
+ #: includes/social-networks.php:89
152
+ msgid "WordPress"
153
+ msgstr "WordPress"
154
+
155
+ #: includes/social-networks.php:94
156
+ msgid "Yelp"
157
+ msgstr "Yelp"
158
+
159
+ #: includes/social-networks.php:99
160
+ msgid "Amazon"
161
+ msgstr "Amazon"
162
+
163
+ #: includes/social-networks.php:103
164
+ msgid "Instagram"
165
+ msgstr "Instagram"
166
+
167
+ #: includes/social-networks.php:108
168
+ msgid "Vine"
169
+ msgstr "Vine"
170
+
171
+ #: includes/social-networks.php:113
172
+ msgid "reddit"
173
+ msgstr "reddit"
174
+
175
+ #: includes/social-networks.php:118
176
+ msgid "XING"
177
+ msgstr "XING"
178
+
179
+ #: includes/social-networks.php:122
180
+ msgid "Tumblr"
181
+ msgstr "Tumblr"
182
+
183
+ #: includes/social-networks.php:127
184
+ msgid "WhatsApp"
185
+ msgstr "WhatsApp"
186
+
187
+ #: includes/social-networks.php:131
188
+ msgid "WeChat"
189
+ msgstr "WeChat"
190
+
191
+ #: includes/social-networks.php:135
192
+ msgid "Medium"
193
+ msgstr "M"
194
+
195
+ #: includes/social-networks.php:140
196
+ msgid "Dribbble"
197
+ msgstr "Dribbble"
198
+
199
+ #: includes/social-networks.php:145
200
+ msgid "Twitch"
201
+ msgstr "Twitch"
202
+
203
+ #: includes/social-networks.php:150
204
+ msgid "VK"
205
+ msgstr "VK"
206
+
207
+ #: includes/social-networks.php:154
208
+ msgid "Trello"
209
+ msgstr "Trello"
210
+
211
+ #: contact-widgets.php:88
212
+ #, php-format
213
+ msgid ""
214
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
215
+ "plugin and contact your system administrator."
216
+ msgstr ""
217
+ "Para usar widgets de contato, preciso ter verso PHP %s ou superior. "
218
+ "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,224 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:05-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: pt_PT\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Apresente informaes 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:208
10
  msgid "Title:"
11
+ msgstr "Ttulo:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "O ttulo do widget. Deixe em branco para no atribuir um ttulo."
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 ""
24
+ "Um endereo de correio eletrnico atravs do qual os visitantes do stio da "
25
+ "internet o podem contactar."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telefone:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Um nmero de telefone para o qual os visitantes do stio da internet podem "
35
+ "ligar se pretenderem esclarecer alguma questo."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Fax:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Um nmero de fax que os visitantes do stio da internet podem utilizar para "
45
+ "enviar documentos importantes."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Endereo:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "Um endereo fsico onde os visitantes do stio da internet o podem visitar "
55
+ "pessoalmente."
56
 
57
+ #: includes/class-contact.php:180 includes/class-social.php:219
58
  msgid "Display labels?"
59
+ msgstr "Apresentar etiquetas?"
60
 
61
  #: includes/class-contact.php:190
62
  msgid "Display map of address?"
63
+ msgstr "Apresentar mapa do endereo?"
64
 
65
  #: includes/class-social.php:20
66
+ msgid "Display custom social media profile links."
67
+ msgstr "Apresente ligaes personalizadas para perfis nas redes sociais."
68
 
69
  #: includes/class-social.php:25
70
  msgid "Social"
71
+ msgstr "Redes sociais"
72
 
73
+ #: includes/class-social.php:167
74
  #, php-format
75
+ msgctxt ""
76
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
77
+ "Facebook)"
78
+ msgid "Visit %1$s on %2$s"
79
+ msgstr "Visitar a %1$s no %2$s"
80
 
81
  #: includes/social-networks.php:9
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "username"
84
+ msgstr "nome de utilizador"
85
 
86
  #: includes/social-networks.php:10
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "channel"
89
+ msgstr "canal"
90
 
91
  #: includes/social-networks.php:11
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "company"
94
+ msgstr "empresa"
95
 
96
  #: includes/social-networks.php:12
97
+ msgctxt "Must be lowercase and use url-safe characters"
98
  msgid "board"
99
+ msgstr "frum"
100
 
101
  #: includes/social-networks.php:17
102
  msgid "Facebook"
103
+ msgstr "Facebook"
104
 
105
  #: includes/social-networks.php:22
106
  msgid "Twitter"
107
+ msgstr "Twitter"
108
 
109
  #: includes/social-networks.php:28
110
  msgid "Google+"
111
+ msgstr "Google+"
112
 
113
  #: includes/social-networks.php:34
114
  msgid "LinkedIn"
115
+ msgstr "LinkedIn"
116
 
117
  #: includes/social-networks.php:39
118
  msgid "Pinterest"
119
+ msgstr "Pinterest"
120
 
121
  #: includes/social-networks.php:44
122
  msgid "YouTube"
123
+ msgstr "YouTube"
124
 
125
  #: includes/social-networks.php:49
126
  msgid "Vimeo"
127
+ msgstr "Vimeo"
128
 
129
  #: includes/social-networks.php:54
130
  msgid "Flickr"
131
+ msgstr "Flickr"
132
 
133
  #: includes/social-networks.php:59
134
  msgid "Foursquare"
135
+ msgstr "Foursquare"
136
 
137
  #: includes/social-networks.php:64
138
  msgid "GitHub"
139
+ msgstr "GitHub"
140
 
141
  #: includes/social-networks.php:69
142
  msgid "Slack"
143
+ msgstr "Slack"
144
 
145
  #: includes/social-networks.php:74
146
  msgid "Skype"
147
+ msgstr "Skype"
148
 
149
  #: includes/social-networks.php:80
150
  msgid "SoundCloud"
151
+ msgstr "SoundCloud"
152
 
153
  #: includes/social-networks.php:85
154
  msgid "TripAdvisor"
155
+ msgstr "TripAdvisor"
156
 
157
  #: includes/social-networks.php:89
158
  msgid "WordPress"
159
+ msgstr "WordPress"
160
 
161
  #: includes/social-networks.php:94
162
  msgid "Yelp"
163
+ msgstr "Yelp"
164
 
165
  #: includes/social-networks.php:99
166
  msgid "Amazon"
167
+ msgstr "Amazon"
168
 
169
  #: includes/social-networks.php:103
170
  msgid "Instagram"
171
+ msgstr "Instagram"
172
 
173
  #: includes/social-networks.php:108
174
  msgid "Vine"
175
+ msgstr "Vine"
176
 
177
  #: includes/social-networks.php:113
178
  msgid "reddit"
179
+ msgstr "reddit"
180
 
181
  #: includes/social-networks.php:118
182
  msgid "XING"
183
+ msgstr "XING"
184
 
185
  #: includes/social-networks.php:122
186
  msgid "Tumblr"
187
+ msgstr "Tumblr"
188
 
189
  #: includes/social-networks.php:127
190
  msgid "WhatsApp"
191
+ msgstr "WhatsApp"
192
 
193
  #: includes/social-networks.php:131
194
  msgid "WeChat"
195
+ msgstr "WeChat"
196
 
197
  #: includes/social-networks.php:135
198
  msgid "Medium"
199
+ msgstr "Medium"
200
 
201
  #: includes/social-networks.php:140
202
  msgid "Dribbble"
203
+ msgstr "Dribbble"
204
 
205
  #: includes/social-networks.php:145
206
  msgid "Twitch"
207
+ msgstr "Twitch"
208
 
209
  #: includes/social-networks.php:150
210
  msgid "VK"
211
+ msgstr "VK"
212
 
213
  #: includes/social-networks.php:154
214
  msgid "Trello"
215
+ msgstr "Trello"
216
+
217
+ #: contact-widgets.php:88
218
+ #, php-format
219
+ msgid ""
220
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
221
+ "plugin and contact your system administrator."
222
  msgstr ""
223
+ "O widget de contacto requer a verso %s do PHP ou uma verso posterior. "
224
+ "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,214 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:05-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
- "Language: ru_RU\n"
20
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
21
- "X-Poedit-SearchPath-1: includes\n"
22
-
23
- #: contact-widgets.php:88
24
- #, php-format
25
- msgid ""
26
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
27
- "plugin and contact your system administrator."
28
- msgstr ""
29
-
30
  #: includes/class-contact.php:20
31
- msgid "Custom contact links"
32
- msgstr ""
33
 
34
  #: includes/class-contact.php:25
35
  msgid "Contact"
36
  msgstr ""
37
 
38
- #: includes/class-contact.php:146 includes/class-social.php:203
39
  msgid "Title:"
40
- msgstr ""
41
 
42
- #: includes/class-contact.php:147 includes/class-social.php:204
43
  msgid "The title of widget. Leave empty for no title."
44
- msgstr ""
45
 
46
  #: includes/class-contact.php:152
47
  msgid "Email:"
48
- msgstr ""
49
 
50
  #: includes/class-contact.php:159
51
  msgid "An email address where website vistors can contact you."
52
- msgstr ""
53
 
54
  #: includes/class-contact.php:162
55
  msgid "Phone:"
56
- msgstr ""
57
 
58
  #: includes/class-contact.php:164
59
  msgid "A phone number that website vistors can call if they have questions."
60
- msgstr ""
61
 
62
  #: includes/class-contact.php:167
63
  msgid "Fax:"
64
- msgstr ""
65
 
66
  #: includes/class-contact.php:169
67
  msgid "A fax number that website vistors can use to send important documents."
68
- msgstr ""
69
 
70
  #: includes/class-contact.php:172
71
  msgid "Address:"
72
- msgstr ""
73
 
74
  #: includes/class-contact.php:177
75
  msgid "A physical address where website vistors can go to visit you in person."
76
- msgstr ""
77
 
78
- #: includes/class-contact.php:180 includes/class-social.php:214
79
  msgid "Display labels?"
80
- msgstr ""
81
 
82
  #: includes/class-contact.php:190
83
  msgid "Display map of address?"
84
- msgstr ""
85
 
86
  #: includes/class-social.php:20
87
- msgid "Custom social links"
88
- msgstr ""
89
 
90
  #: includes/class-social.php:25
91
  msgid "Social"
92
  msgstr ""
93
 
94
- #: includes/class-social.php:163
95
  #, php-format
96
- msgid "Visit %s on %s"
97
- msgstr ""
 
 
 
98
 
99
  #: includes/social-networks.php:9
 
100
  msgid "username"
101
- msgstr ""
102
 
103
  #: includes/social-networks.php:10
 
104
  msgid "channel"
105
  msgstr ""
106
 
107
  #: includes/social-networks.php:11
 
108
  msgid "company"
109
  msgstr ""
110
 
111
  #: includes/social-networks.php:12
 
112
  msgid "board"
113
  msgstr ""
114
 
115
  #: includes/social-networks.php:17
116
  msgid "Facebook"
117
- msgstr ""
118
 
119
  #: includes/social-networks.php:22
120
  msgid "Twitter"
121
- msgstr ""
122
 
123
  #: includes/social-networks.php:28
124
  msgid "Google+"
125
- msgstr ""
126
 
127
  #: includes/social-networks.php:34
128
  msgid "LinkedIn"
129
- msgstr ""
130
 
131
  #: includes/social-networks.php:39
132
  msgid "Pinterest"
133
- msgstr ""
134
 
135
  #: includes/social-networks.php:44
136
  msgid "YouTube"
137
- msgstr ""
138
 
139
  #: includes/social-networks.php:49
140
  msgid "Vimeo"
141
- msgstr ""
142
 
143
  #: includes/social-networks.php:54
144
  msgid "Flickr"
145
- msgstr ""
146
 
147
  #: includes/social-networks.php:59
148
  msgid "Foursquare"
149
- msgstr ""
150
 
151
  #: includes/social-networks.php:64
152
  msgid "GitHub"
153
- msgstr ""
154
 
155
  #: includes/social-networks.php:69
156
  msgid "Slack"
157
- msgstr ""
158
 
159
  #: includes/social-networks.php:74
160
  msgid "Skype"
161
- msgstr ""
162
 
163
  #: includes/social-networks.php:80
164
  msgid "SoundCloud"
165
- msgstr ""
166
 
167
  #: includes/social-networks.php:85
168
  msgid "TripAdvisor"
169
- msgstr ""
170
 
171
  #: includes/social-networks.php:89
172
  msgid "WordPress"
173
- msgstr ""
174
 
175
  #: includes/social-networks.php:94
176
  msgid "Yelp"
177
- msgstr ""
178
 
179
  #: includes/social-networks.php:99
180
  msgid "Amazon"
181
- msgstr ""
182
 
183
  #: includes/social-networks.php:103
184
  msgid "Instagram"
185
- msgstr ""
186
 
187
  #: includes/social-networks.php:108
188
  msgid "Vine"
189
- msgstr ""
190
 
191
  #: includes/social-networks.php:113
192
  msgid "reddit"
193
- msgstr ""
194
 
195
  #: includes/social-networks.php:118
196
  msgid "XING"
197
- msgstr ""
198
 
199
  #: includes/social-networks.php:122
200
  msgid "Tumblr"
201
- msgstr ""
202
 
203
  #: includes/social-networks.php:127
204
  msgid "WhatsApp"
205
- msgstr ""
206
 
207
  #: includes/social-networks.php:131
208
  msgid "WeChat"
209
- msgstr ""
210
 
211
  #: includes/social-networks.php:135
212
  msgid "Medium"
213
- msgstr ""
214
 
215
  #: includes/social-networks.php:140
216
  msgid "Dribbble"
217
- msgstr ""
218
 
219
  #: includes/social-networks.php:145
220
  msgid "Twitch"
221
- msgstr ""
222
 
223
  #: includes/social-networks.php:150
224
  msgid "VK"
225
- msgstr ""
226
 
227
  #: includes/social-networks.php:154
228
  msgid "Trello"
229
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr ":"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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:219
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:167
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 " PHP %s . ."
languages/contact-widgets-sv_SE.mo CHANGED
Binary file
languages/contact-widgets-sv_SE.po CHANGED
@@ -1,228 +1,218 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:06-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: sv_SE\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
- msgstr ""
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Titel:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Widgetens namn. Lmna tomt om den ska vara namnls."
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 webbplatsbeskarna 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 webbplatsbeskarna kan ringa om de undrar ngot."
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 ""
40
+ "Ett faxnummer som webbplatsbeskarna kan anvnda fr att skicka viktiga "
41
+ "dokument."
42
 
43
  #: includes/class-contact.php:172
44
  msgid "Address:"
45
+ msgstr "Adress:"
46
 
47
  #: includes/class-contact.php:177
48
  msgid "A physical address where website vistors can go to visit you in person."
49
+ msgstr "En fysisk adress dr webbplatsbeskarna kan beska dig personligen."
50
 
51
+ #: includes/class-contact.php:180 includes/class-social.php:219
52
  msgid "Display labels?"
53
+ msgstr "Visa etiketter?"
54
 
55
  #: includes/class-contact.php:190
56
  msgid "Display map of address?"
57
+ msgstr "Visa karta fr adressen?"
58
 
59
  #: includes/class-social.php:20
60
+ msgid "Display custom social media profile links."
61
+ msgstr "Visa anpassade lnkar fr social medieprofil."
62
 
63
  #: includes/class-social.php:25
64
  msgid "Social"
65
+ msgstr "Lnkar till sociala medier"
66
 
67
+ #: includes/class-social.php:167
68
  #, php-format
69
+ msgctxt ""
70
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
71
+ "Facebook)"
72
+ msgid "Visit %1$s on %2$s"
73
+ msgstr "Besk %1$s p %2$s"
74
 
75
  #: includes/social-networks.php:9
76
+ msgctxt "Must be lowercase and use url-safe characters"
77
  msgid "username"
78
+ msgstr "anvndarnamn"
79
 
80
  #: includes/social-networks.php:10
81
+ msgctxt "Must be lowercase and use url-safe characters"
82
  msgid "channel"
83
+ msgstr "kanal"
84
 
85
  #: includes/social-networks.php:11
86
+ msgctxt "Must be lowercase and use url-safe characters"
87
  msgid "company"
88
+ msgstr "fretag"
89
 
90
  #: includes/social-networks.php:12
91
+ msgctxt "Must be lowercase and use url-safe characters"
92
  msgid "board"
93
+ msgstr "diskussionstavla"
94
 
95
  #: includes/social-networks.php:17
96
  msgid "Facebook"
97
+ msgstr "Facebook"
98
 
99
  #: includes/social-networks.php:22
100
  msgid "Twitter"
101
+ msgstr "Twitter"
102
 
103
  #: includes/social-networks.php:28
104
  msgid "Google+"
105
+ msgstr "Google+"
106
 
107
  #: includes/social-networks.php:34
108
  msgid "LinkedIn"
109
+ msgstr "LinkedIn"
110
 
111
  #: includes/social-networks.php:39
112
  msgid "Pinterest"
113
+ msgstr "Pinterest"
114
 
115
  #: includes/social-networks.php:44
116
  msgid "YouTube"
117
+ msgstr "YouTube"
118
 
119
  #: includes/social-networks.php:49
120
  msgid "Vimeo"
121
+ msgstr "Vimeo"
122
 
123
  #: includes/social-networks.php:54
124
  msgid "Flickr"
125
+ msgstr "Flickr"
126
 
127
  #: includes/social-networks.php:59
128
  msgid "Foursquare"
129
+ msgstr "Foursquare"
130
 
131
  #: includes/social-networks.php:64
132
  msgid "GitHub"
133
+ msgstr "GitHub"
134
 
135
  #: includes/social-networks.php:69
136
  msgid "Slack"
137
+ msgstr "Slack"
138
 
139
  #: includes/social-networks.php:74
140
  msgid "Skype"
141
+ msgstr "Skype"
142
 
143
  #: includes/social-networks.php:80
144
  msgid "SoundCloud"
145
+ msgstr "SoundCloud"
146
 
147
  #: includes/social-networks.php:85
148
  msgid "TripAdvisor"
149
+ msgstr "TripAdvisor"
150
 
151
  #: includes/social-networks.php:89
152
  msgid "WordPress"
153
+ msgstr "WordPress"
154
 
155
  #: includes/social-networks.php:94
156
  msgid "Yelp"
157
+ msgstr "Yelp"
158
 
159
  #: includes/social-networks.php:99
160
  msgid "Amazon"
161
+ msgstr "Amazon"
162
 
163
  #: includes/social-networks.php:103
164
  msgid "Instagram"
165
+ msgstr "Instagram"
166
 
167
  #: includes/social-networks.php:108
168
  msgid "Vine"
169
+ msgstr "Vine"
170
 
171
  #: includes/social-networks.php:113
172
  msgid "reddit"
173
+ msgstr "reddit"
174
 
175
  #: includes/social-networks.php:118
176
  msgid "XING"
177
+ msgstr "XING"
178
 
179
  #: includes/social-networks.php:122
180
  msgid "Tumblr"
181
+ msgstr "Tumblr"
182
 
183
  #: includes/social-networks.php:127
184
  msgid "WhatsApp"
185
+ msgstr "WhatsApp"
186
 
187
  #: includes/social-networks.php:131
188
  msgid "WeChat"
189
+ msgstr "WeChat"
190
 
191
  #: includes/social-networks.php:135
192
  msgid "Medium"
193
+ msgstr "Medium"
194
 
195
  #: includes/social-networks.php:140
196
  msgid "Dribbble"
197
+ msgstr "Dribbble"
198
 
199
  #: includes/social-networks.php:145
200
  msgid "Twitch"
201
+ msgstr "Twitch"
202
 
203
  #: includes/social-networks.php:150
204
  msgid "VK"
205
+ msgstr "VK"
206
 
207
  #: includes/social-networks.php:154
208
  msgid "Trello"
209
+ msgstr "Trello"
210
+
211
+ #: contact-widgets.php:88
212
+ #, php-format
213
+ msgid ""
214
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
215
+ "plugin and contact your system administrator."
216
  msgstr ""
217
+ "Kontaktwidgeten krver PHP version %s eller senare. Inaktivera plugin-"
218
+ "programmet och kontakta systemadministratren."
languages/contact-widgets-th.mo CHANGED
Binary file
languages/contact-widgets-th.po CHANGED
@@ -1,50 +1,22 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:06-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: th\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
  msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
@@ -52,7 +24,7 @@ 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."
@@ -60,7 +32,7 @@ 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."
@@ -68,13 +40,13 @@ 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
 
@@ -83,97 +55,104 @@ msgid "Display map of address?"
83
  msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
  msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
  msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
  msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
@@ -185,44 +164,51 @@ 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:208
10
  msgid "Title:"
11
+ msgstr ":"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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."
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."
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."
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:219
50
  msgid "Display labels?"
51
  msgstr ""
52
 
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:167
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"
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 "Contact widget PHP %s "
languages/contact-widgets-tl.mo CHANGED
Binary file
languages/contact-widgets-tl.po CHANGED
@@ -1,228 +1,224 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:06-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
- "Language: tl\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr "Title:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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 ""
24
+ "Isang email address kung saan ang mga bisita ng website ay maaaring makipag-"
25
+ "ugnayan sa iyo."
26
 
27
  #: includes/class-contact.php:162
28
  msgid "Phone:"
29
+ msgstr "Telepono:"
30
 
31
  #: includes/class-contact.php:164
32
  msgid "A phone number that website vistors can call if they have questions."
33
  msgstr ""
34
+ "Isang numero ng teepono na matatawagan ng mga bisita ng website kung may mga "
35
+ "tanong sila."
36
 
37
  #: includes/class-contact.php:167
38
  msgid "Fax:"
39
+ msgstr "Fax:"
40
 
41
  #: includes/class-contact.php:169
42
  msgid "A fax number that website vistors can use to send important documents."
43
  msgstr ""
44
+ "Ang numero ng fax na magagamit ng mga bisita ng website para makapagpadala "
45
+ "ng mga importanteng dokumento."
46
 
47
  #: includes/class-contact.php:172
48
  msgid "Address:"
49
+ msgstr "Address:"
50
 
51
  #: includes/class-contact.php:177
52
  msgid "A physical address where website vistors can go to visit you in person."
53
  msgstr ""
54
+ "Isang pisikal na address kung saan makakapunta ang mga bisita ng website "
55
+ "para makilala kayo nang personal."
56
 
57
+ #: includes/class-contact.php:180 includes/class-social.php:219
58
  msgid "Display labels?"
59
+ msgstr "Ipakita ang mga etiketa?"
60
 
61
  #: includes/class-contact.php:190
62
  msgid "Display map of address?"
63
+ msgstr "Ipakita ang mapa ng address?"
64
 
65
  #: includes/class-social.php:20
66
+ msgid "Display custom social media profile links."
67
+ msgstr "Ipakita ang mga custom na link ng profile sa social media."
68
 
69
  #: includes/class-social.php:25
70
  msgid "Social"
71
+ msgstr "Social"
72
 
73
+ #: includes/class-social.php:167
74
  #, php-format
75
+ msgctxt ""
76
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
77
+ "Facebook)"
78
+ msgid "Visit %1$s on %2$s"
79
+ msgstr "Bisitahin ang %1$s sa %2$s"
80
 
81
  #: includes/social-networks.php:9
82
+ msgctxt "Must be lowercase and use url-safe characters"
83
  msgid "username"
84
+ msgstr "username"
85
 
86
  #: includes/social-networks.php:10
87
+ msgctxt "Must be lowercase and use url-safe characters"
88
  msgid "channel"
89
+ msgstr "channel"
90
 
91
  #: includes/social-networks.php:11
92
+ msgctxt "Must be lowercase and use url-safe characters"
93
  msgid "company"
94
+ msgstr "kumpanya"
95
 
96
  #: includes/social-networks.php:12
97
+ msgctxt "Must be lowercase and use url-safe characters"
98
  msgid "board"
99
+ msgstr "board"
100
 
101
  #: includes/social-networks.php:17
102
  msgid "Facebook"
103
+ msgstr "Facebook"
104
 
105
  #: includes/social-networks.php:22
106
  msgid "Twitter"
107
+ msgstr "Twitter"
108
 
109
  #: includes/social-networks.php:28
110
  msgid "Google+"
111
+ msgstr "Google +"
112
 
113
  #: includes/social-networks.php:34
114
  msgid "LinkedIn"
115
+ msgstr "LinkedIn"
116
 
117
  #: includes/social-networks.php:39
118
  msgid "Pinterest"
119
+ msgstr "Pinterest"
120
 
121
  #: includes/social-networks.php:44
122
  msgid "YouTube"
123
+ msgstr "YouTube"
124
 
125
  #: includes/social-networks.php:49
126
  msgid "Vimeo"
127
+ msgstr "Vimeo"
128
 
129
  #: includes/social-networks.php:54
130
  msgid "Flickr"
131
+ msgstr "Flickr"
132
 
133
  #: includes/social-networks.php:59
134
  msgid "Foursquare"
135
+ msgstr "Foursquare"
136
 
137
  #: includes/social-networks.php:64
138
  msgid "GitHub"
139
+ msgstr "GitHub"
140
 
141
  #: includes/social-networks.php:69
142
  msgid "Slack"
143
+ msgstr "Slack"
144
 
145
  #: includes/social-networks.php:74
146
  msgid "Skype"
147
+ msgstr "Skype"
148
 
149
  #: includes/social-networks.php:80
150
  msgid "SoundCloud"
151
+ msgstr "SoundCloud"
152
 
153
  #: includes/social-networks.php:85
154
  msgid "TripAdvisor"
155
+ msgstr "TripAdvisor"
156
 
157
  #: includes/social-networks.php:89
158
  msgid "WordPress"
159
+ msgstr "WordPress"
160
 
161
  #: includes/social-networks.php:94
162
  msgid "Yelp"
163
+ msgstr "Yelp"
164
 
165
  #: includes/social-networks.php:99
166
  msgid "Amazon"
167
+ msgstr "Amazon"
168
 
169
  #: includes/social-networks.php:103
170
  msgid "Instagram"
171
+ msgstr "Instagram"
172
 
173
  #: includes/social-networks.php:108
174
  msgid "Vine"
175
+ msgstr "Vine"
176
 
177
  #: includes/social-networks.php:113
178
  msgid "reddit"
179
+ msgstr "reddit"
180
 
181
  #: includes/social-networks.php:118
182
  msgid "XING"
183
+ msgstr "XING"
184
 
185
  #: includes/social-networks.php:122
186
  msgid "Tumblr"
187
+ msgstr "Tumblr"
188
 
189
  #: includes/social-networks.php:127
190
  msgid "WhatsApp"
191
+ msgstr "WhatsApp"
192
 
193
  #: includes/social-networks.php:131
194
  msgid "WeChat"
195
+ msgstr "WeChat"
196
 
197
  #: includes/social-networks.php:135
198
  msgid "Medium"
199
+ msgstr "Medium"
200
 
201
  #: includes/social-networks.php:140
202
  msgid "Dribbble"
203
+ msgstr "Dribbble"
204
 
205
  #: includes/social-networks.php:145
206
  msgid "Twitch"
207
+ msgstr "Twitch"
208
 
209
  #: includes/social-networks.php:150
210
  msgid "VK"
211
+ msgstr "VK"
212
 
213
  #: includes/social-networks.php:154
214
  msgid "Trello"
215
+ msgstr "Trello"
216
+
217
+ #: contact-widgets.php:88
218
+ #, php-format
219
+ msgid ""
220
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
221
+ "plugin and contact your system administrator."
222
  msgstr ""
223
+ "Kailangan sa contact widget ang PHP na bersyon %s o mas bago pa. Maaari lang "
224
+ "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,220 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:06-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: tr_TR\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
  msgstr ""
 
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
  msgstr ""
 
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
  msgstr ""
 
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
  msgstr ""
 
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "zel irtibat bilgilerini grntle."
4
 
5
  #: includes/class-contact.php:25
6
  msgid "Contact"
7
+ msgstr "letiim"
8
 
9
+ #: includes/class-contact.php:146 includes/class-social.php:208
10
  msgid "Title:"
11
+ msgstr "Balk:"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Modln ad. Herhangi bir ad yoksa bo brakn."
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 ""
24
+ "Web sitesi ziyaretilerinin sizinle iletiim kurabilecei bir e-posta adresi."
25
 
26
  #: includes/class-contact.php:162
27
  msgid "Phone:"
28
+ msgstr "Telefon:"
29
 
30
  #: includes/class-contact.php:164
31
  msgid "A phone number that website vistors can call if they have questions."
32
  msgstr ""
33
+ "Web sitesi ziyaretilerinin soru sormak iin arayabilecei bir telefon numaras."
34
 
35
  #: includes/class-contact.php:167
36
  msgid "Fax:"
37
+ msgstr "Faks:"
38
 
39
  #: includes/class-contact.php:169
40
  msgid "A fax number that website vistors can use to send important documents."
41
  msgstr ""
42
+ "Web sitesi ziyaretilerinin nemli belgeleri gnderebilecei bir faks numaras."
43
 
44
  #: includes/class-contact.php:172
45
  msgid "Address:"
46
+ msgstr "Adres:"
47
 
48
  #: includes/class-contact.php:177
49
  msgid "A physical address where website vistors can go to visit you in person."
50
  msgstr ""
51
+ "Web sitesi ziyaretilerinin sizi bire bir ziyaret edebilecei bir ak adres."
52
 
53
+ #: includes/class-contact.php:180 includes/class-social.php:219
54
  msgid "Display labels?"
55
+ msgstr "Etiketler grntlensin mi?"
56
 
57
  #: includes/class-contact.php:190
58
  msgid "Display map of address?"
59
+ msgstr "Adresin haritadaki konumu grntlensin mi?"
60
 
61
  #: includes/class-social.php:20
62
+ msgid "Display custom social media profile links."
63
+ msgstr "zel sosyal medya profil balantlarn grntle."
64
 
65
  #: includes/class-social.php:25
66
  msgid "Social"
67
+ msgstr "Sosyal"
68
 
69
+ #: includes/class-social.php:167
70
  #, php-format
71
+ msgctxt ""
72
+ "1. Title of website (e.g. My Cat Blog), 2. Name of social network (e.g. "
73
+ "Facebook)"
74
+ msgid "Visit %1$s on %2$s"
75
+ msgstr "%2$s %1$s sayfasn ziyaret edin"
76
 
77
  #: includes/social-networks.php:9
78
+ msgctxt "Must be lowercase and use url-safe characters"
79
  msgid "username"
80
+ msgstr "kullanc ad"
81
 
82
  #: includes/social-networks.php:10
83
+ msgctxt "Must be lowercase and use url-safe characters"
84
  msgid "channel"
85
+ msgstr "kanal"
86
 
87
  #: includes/social-networks.php:11
88
+ msgctxt "Must be lowercase and use url-safe characters"
89
  msgid "company"
90
+ msgstr "irket"
91
 
92
  #: includes/social-networks.php:12
93
+ msgctxt "Must be lowercase and use url-safe characters"
94
  msgid "board"
95
+ msgstr "pano"
96
 
97
  #: includes/social-networks.php:17
98
  msgid "Facebook"
99
+ msgstr "Facebook"
100
 
101
  #: includes/social-networks.php:22
102
  msgid "Twitter"
103
+ msgstr "Twitter"
104
 
105
  #: includes/social-networks.php:28
106
  msgid "Google+"
107
+ msgstr "Google+"
108
 
109
  #: includes/social-networks.php:34
110
  msgid "LinkedIn"
111
+ msgstr "LinkedIn"
112
 
113
  #: includes/social-networks.php:39
114
  msgid "Pinterest"
115
+ msgstr "Pinterest"
116
 
117
  #: includes/social-networks.php:44
118
  msgid "YouTube"
119
+ msgstr "YouTube"
120
 
121
  #: includes/social-networks.php:49
122
  msgid "Vimeo"
123
+ msgstr "Vimeo"
124
 
125
  #: includes/social-networks.php:54
126
  msgid "Flickr"
127
+ msgstr "Flickr"
128
 
129
  #: includes/social-networks.php:59
130
  msgid "Foursquare"
131
+ msgstr "Foursquare"
132
 
133
  #: includes/social-networks.php:64
134
  msgid "GitHub"
135
+ msgstr "GitHub"
136
 
137
  #: includes/social-networks.php:69
138
  msgid "Slack"
139
+ msgstr "Slack"
140
 
141
  #: includes/social-networks.php:74
142
  msgid "Skype"
143
+ msgstr "Skype"
144
 
145
  #: includes/social-networks.php:80
146
  msgid "SoundCloud"
147
+ msgstr "SoundCloud"
148
 
149
  #: includes/social-networks.php:85
150
  msgid "TripAdvisor"
151
+ msgstr "TripAdvisor"
152
 
153
  #: includes/social-networks.php:89
154
  msgid "WordPress"
155
+ msgstr "WordPress"
156
 
157
  #: includes/social-networks.php:94
158
  msgid "Yelp"
159
+ msgstr "Yelp"
160
 
161
  #: includes/social-networks.php:99
162
  msgid "Amazon"
163
+ msgstr "Amazon"
164
 
165
  #: includes/social-networks.php:103
166
  msgid "Instagram"
167
+ msgstr "Instagram"
168
 
169
  #: includes/social-networks.php:108
170
  msgid "Vine"
171
+ msgstr "Vine"
172
 
173
  #: includes/social-networks.php:113
174
  msgid "reddit"
175
+ msgstr "reddit"
176
 
177
  #: includes/social-networks.php:118
178
  msgid "XING"
179
+ msgstr "XING"
180
 
181
  #: includes/social-networks.php:122
182
  msgid "Tumblr"
183
+ msgstr "Tumblr"
184
 
185
  #: includes/social-networks.php:127
186
  msgid "WhatsApp"
187
+ msgstr "WhatsApp"
188
 
189
  #: includes/social-networks.php:131
190
  msgid "WeChat"
191
+ msgstr "WeChat"
192
 
193
  #: includes/social-networks.php:135
194
  msgid "Medium"
195
+ msgstr "Medium"
196
 
197
  #: includes/social-networks.php:140
198
  msgid "Dribbble"
199
+ msgstr "Dribbble"
200
 
201
  #: includes/social-networks.php:145
202
  msgid "Twitch"
203
+ msgstr "Twitch"
204
 
205
  #: includes/social-networks.php:150
206
  msgid "VK"
207
+ msgstr "VK"
208
 
209
  #: includes/social-networks.php:154
210
  msgid "Trello"
211
+ msgstr "Trello"
212
+
213
+ #: contact-widgets.php:88
214
+ #, php-format
215
+ msgid ""
216
+ "Contact widgets requires PHP version %s or higher. Please deactivate the "
217
+ "plugin and contact your system administrator."
218
  msgstr ""
219
+ "Kii modlleri, PHP srmn %s ya da zerini gerektirir. Ltfen eklentiyi devre d "
220
+ "brakn ve sistem yneticinizle iletiime gein."
languages/contact-widgets-uk.mo CHANGED
Binary file
languages/contact-widgets-uk.po CHANGED
@@ -1,229 +1,214 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:06-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
- "Language: uk\n"
20
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
21
- "X-Poedit-SearchPath-1: includes\n"
22
-
23
- #: contact-widgets.php:88
24
- #, php-format
25
- msgid ""
26
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
27
- "plugin and contact your system administrator."
28
- msgstr ""
29
-
30
  #: includes/class-contact.php:20
31
- msgid "Custom contact links"
32
- msgstr ""
33
 
34
  #: includes/class-contact.php:25
35
  msgid "Contact"
36
  msgstr ""
37
 
38
- #: includes/class-contact.php:146 includes/class-social.php:203
39
  msgid "Title:"
40
- msgstr ""
41
 
42
- #: includes/class-contact.php:147 includes/class-social.php:204
43
  msgid "The title of widget. Leave empty for no title."
44
- msgstr ""
45
 
46
  #: includes/class-contact.php:152
47
  msgid "Email:"
48
- msgstr ""
49
 
50
  #: includes/class-contact.php:159
51
  msgid "An email address where website vistors can contact you."
52
- msgstr ""
53
 
54
  #: includes/class-contact.php:162
55
  msgid "Phone:"
56
- msgstr ""
57
 
58
  #: includes/class-contact.php:164
59
  msgid "A phone number that website vistors can call if they have questions."
60
- msgstr ""
61
 
62
  #: includes/class-contact.php:167
63
  msgid "Fax:"
64
- msgstr ""
65
 
66
  #: includes/class-contact.php:169
67
  msgid "A fax number that website vistors can use to send important documents."
68
- msgstr ""
69
 
70
  #: includes/class-contact.php:172
71
  msgid "Address:"
72
- msgstr ""
73
 
74
  #: includes/class-contact.php:177
75
  msgid "A physical address where website vistors can go to visit you in person."
76
- msgstr ""
77
 
78
- #: includes/class-contact.php:180 includes/class-social.php:214
79
  msgid "Display labels?"
80
- msgstr ""
81
 
82
  #: includes/class-contact.php:190
83
  msgid "Display map of address?"
84
- msgstr ""
85
 
86
  #: includes/class-social.php:20
87
- msgid "Custom social links"
88
- msgstr ""
89
 
90
  #: includes/class-social.php:25
91
  msgid "Social"
92
  msgstr ""
93
 
94
- #: includes/class-social.php:163
95
  #, php-format
96
- msgid "Visit %s on %s"
97
- msgstr ""
 
 
 
98
 
99
  #: includes/social-networks.php:9
 
100
  msgid "username"
101
- msgstr ""
102
 
103
  #: includes/social-networks.php:10
 
104
  msgid "channel"
105
  msgstr ""
106
 
107
  #: includes/social-networks.php:11
 
108
  msgid "company"
109
  msgstr ""
110
 
111
  #: includes/social-networks.php:12
 
112
  msgid "board"
113
  msgstr ""
114
 
115
  #: includes/social-networks.php:17
116
  msgid "Facebook"
117
- msgstr ""
118
 
119
  #: includes/social-networks.php:22
120
  msgid "Twitter"
121
- msgstr ""
122
 
123
  #: includes/social-networks.php:28
124
  msgid "Google+"
125
- msgstr ""
126
 
127
  #: includes/social-networks.php:34
128
  msgid "LinkedIn"
129
- msgstr ""
130
 
131
  #: includes/social-networks.php:39
132
  msgid "Pinterest"
133
- msgstr ""
134
 
135
  #: includes/social-networks.php:44
136
  msgid "YouTube"
137
- msgstr ""
138
 
139
  #: includes/social-networks.php:49
140
  msgid "Vimeo"
141
- msgstr ""
142
 
143
  #: includes/social-networks.php:54
144
  msgid "Flickr"
145
- msgstr ""
146
 
147
  #: includes/social-networks.php:59
148
  msgid "Foursquare"
149
- msgstr ""
150
 
151
  #: includes/social-networks.php:64
152
  msgid "GitHub"
153
- msgstr ""
154
 
155
  #: includes/social-networks.php:69
156
  msgid "Slack"
157
- msgstr ""
158
 
159
  #: includes/social-networks.php:74
160
  msgid "Skype"
161
- msgstr ""
162
 
163
  #: includes/social-networks.php:80
164
  msgid "SoundCloud"
165
- msgstr ""
166
 
167
  #: includes/social-networks.php:85
168
  msgid "TripAdvisor"
169
- msgstr ""
170
 
171
  #: includes/social-networks.php:89
172
  msgid "WordPress"
173
- msgstr ""
174
 
175
  #: includes/social-networks.php:94
176
  msgid "Yelp"
177
- msgstr ""
178
 
179
  #: includes/social-networks.php:99
180
  msgid "Amazon"
181
- msgstr ""
182
 
183
  #: includes/social-networks.php:103
184
  msgid "Instagram"
185
- msgstr ""
186
 
187
  #: includes/social-networks.php:108
188
  msgid "Vine"
189
- msgstr ""
190
 
191
  #: includes/social-networks.php:113
192
  msgid "reddit"
193
- msgstr ""
194
 
195
  #: includes/social-networks.php:118
196
  msgid "XING"
197
- msgstr ""
198
 
199
  #: includes/social-networks.php:122
200
  msgid "Tumblr"
201
- msgstr ""
202
 
203
  #: includes/social-networks.php:127
204
  msgid "WhatsApp"
205
- msgstr ""
206
 
207
  #: includes/social-networks.php:131
208
  msgid "WeChat"
209
- msgstr ""
210
 
211
  #: includes/social-networks.php:135
212
  msgid "Medium"
213
- msgstr ""
214
 
215
  #: includes/social-networks.php:140
216
  msgid "Dribbble"
217
- msgstr ""
218
 
219
  #: includes/social-networks.php:145
220
  msgid "Twitch"
221
- msgstr ""
222
 
223
  #: includes/social-networks.php:150
224
  msgid "VK"
225
- msgstr ""
226
 
227
  #: includes/social-networks.php:154
228
  msgid "Trello"
229
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:208
10
  msgid "Title:"
11
+ msgstr ":"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
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:219
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:167
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 " PHP %s . ."
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 "Custom contact links"
31
- msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
- msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
- msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
47
- msgstr ""
48
 
49
  #: includes/class-contact.php:159
50
  msgid "An email address where website vistors can contact you."
51
- msgstr ""
52
 
53
  #: includes/class-contact.php:162
54
  msgid "Phone:"
55
- msgstr ""
56
 
57
  #: includes/class-contact.php:164
58
  msgid "A phone number that website vistors can call if they have questions."
59
- msgstr ""
60
 
61
  #: includes/class-contact.php:167
62
  msgid "Fax:"
63
- msgstr ""
64
 
65
  #: includes/class-contact.php:169
66
  msgid "A fax number that website vistors can use to send important documents."
67
- msgstr ""
68
 
69
  #: includes/class-contact.php:172
70
  msgid "Address:"
71
- msgstr ""
72
 
73
  #: includes/class-contact.php:177
74
  msgid "A physical address where website vistors can go to visit you in person."
75
- msgstr ""
76
 
77
- #: includes/class-contact.php:180 includes/class-social.php:214
78
  msgid "Display labels?"
79
- msgstr ""
80
 
81
  #: includes/class-contact.php:190
82
  msgid "Display map of address?"
83
- msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
- msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
- msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
- msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
- msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
- msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
- msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
208
- msgstr ""
209
 
210
  #: includes/social-networks.php:135
211
  msgid "Medium"
212
- msgstr ""
213
 
214
  #: includes/social-networks.php:140
215
  msgid "Dribbble"
216
- msgstr ""
217
 
218
  #: includes/social-networks.php:145
219
  msgid "Twitch"
220
- msgstr ""
221
 
222
  #: includes/social-networks.php:150
223
  msgid "VK"
224
- msgstr ""
225
 
226
  #: includes/social-networks.php:154
227
  msgid "Trello"
 
 
 
 
 
 
 
228
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #: includes/class-contact.php:20
2
+ msgid "Display custom contact information."
3
+ msgstr "Hin th thng tin lin h ty chnh."
4
 
5
  #: includes/class-contact.php:25
6
  msgid "Contact"
7
+ msgstr "Lin h"
8
 
9
+ #: includes/class-contact.php:146 includes/class-social.php:208
10
  msgid "Title:"
11
+ msgstr "Tiu :"
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr "Tiu widget. trng nu khng c tiu ."
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 khch truy cp trang c th s dng lin h vi bn."
24
 
25
  #: includes/class-contact.php:162
26
  msgid "Phone:"
27
+ msgstr "in thoi:"
28
 
29
  #: includes/class-contact.php:164
30
  msgid "A phone number that website vistors can call if they have questions."
31
+ msgstr "S in thoi m khch truy cp trang c th gi nu h c thc mc."
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 khch truy cp trang c th s dng gi nhng ti liu quan trng."
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 thc t m khch truy cp trang c th n gp bn trc tip."
48
 
49
+ #: includes/class-contact.php:180 includes/class-social.php:219
50
  msgid "Display labels?"
51
+ msgstr "Hin th nhn?"
52
 
53
  #: includes/class-contact.php:190
54
  msgid "Display map of address?"
55
+ msgstr "Hin th bn a ch?"
56
 
57
  #: includes/class-social.php:20
58
+ msgid "Display custom social media profile links."
59
+ msgstr "Hin th lin kt truyn thng x hi ty chnh."
60
 
61
  #: includes/class-social.php:25
62
  msgid "Social"
63
+ msgstr "Mng x hi"
64
 
65
+ #: includes/class-social.php:167
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 cp %1$s trn %2$s"
72
 
73
  #: includes/social-networks.php:9
74
+ msgctxt "Must be lowercase and use url-safe characters"
75
  msgid "username"
76
+ msgstr "tn ngi dng"
77
 
78
  #: includes/social-networks.php:10
79
+ msgctxt "Must be lowercase and use url-safe characters"
80
  msgid "channel"
81
+ msgstr "knh"
82
 
83
  #: includes/social-networks.php:11
84
+ msgctxt "Must be lowercase and use url-safe characters"
85
  msgid "company"
86
+ msgstr "cng ty"
87
 
88
  #: includes/social-networks.php:12
89
+ msgctxt "Must be lowercase and use url-safe characters"
90
  msgid "board"
91
+ msgstr "din 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 "Phng tin"
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 lin h yu cu phin bn PHP %s tr ln. Hy tt trnh cm v lin h vi qun tr vin "
216
+ "h thng."
languages/contact-widgets-zh_CN.mo CHANGED
Binary file
languages/contact-widgets-zh_CN.po CHANGED
@@ -1,46 +1,18 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:07-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: zh_CN\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
  msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
  msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
@@ -74,7 +46,7 @@ msgstr ""
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
 
@@ -83,125 +55,132 @@ msgid "Display map of address?"
83
  msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
  msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
  msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
  msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
@@ -209,20 +188,27 @@ 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:208
10
  msgid "Title:"
11
  msgstr ""
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr " "
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
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:219
50
  msgid "Display labels?"
51
  msgstr ""
52
 
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:167
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"
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,46 +1,18 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:07-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: zh_HK\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
  msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
  msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
@@ -74,7 +46,7 @@ msgstr ""
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
 
@@ -83,125 +55,132 @@ msgid "Display map of address?"
83
  msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
  msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
  msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
  msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
@@ -213,16 +192,23 @@ 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:208
10
  msgid "Title:"
11
  msgstr ""
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr " "
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
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:219
50
  msgid "Display labels?"
51
  msgstr ""
52
 
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:167
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"
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,46 +1,18 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Contact Widgets\n"
4
- "POT-Creation-Date: 2016-02-23 18:07-0600\n"
5
- "PO-Revision-Date: \n"
6
- "Language-Team: \n"
7
- "MIME-Version: 1.0\n"
8
- "Content-Type: text/plain; charset=UTF-8\n"
9
- "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.7\n"
11
- "X-Poedit-SourceCharset: UTF-8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;"
14
- "_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;"
15
- "esc_html_x;_c;_nc\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=1; plural=0;\n"
18
- "Language: zh_TW\n"
19
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
20
- "X-Poedit-SearchPath-1: includes\n"
21
-
22
- #: contact-widgets.php:88
23
- #, php-format
24
- msgid ""
25
- "Contact widgets requires PHP version %s or higher. Please deactivate the "
26
- "plugin and contact your system administrator."
27
- msgstr ""
28
-
29
  #: includes/class-contact.php:20
30
- msgid "Custom contact links"
31
  msgstr ""
32
 
33
  #: includes/class-contact.php:25
34
  msgid "Contact"
35
  msgstr ""
36
 
37
- #: includes/class-contact.php:146 includes/class-social.php:203
38
  msgid "Title:"
39
  msgstr ""
40
 
41
- #: includes/class-contact.php:147 includes/class-social.php:204
42
  msgid "The title of widget. Leave empty for no title."
43
- msgstr ""
44
 
45
  #: includes/class-contact.php:152
46
  msgid "Email:"
@@ -74,7 +46,7 @@ msgstr ""
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
 
@@ -83,125 +55,132 @@ msgid "Display map of address?"
83
  msgstr ""
84
 
85
  #: includes/class-social.php:20
86
- msgid "Custom social links"
87
  msgstr ""
88
 
89
  #: includes/class-social.php:25
90
  msgid "Social"
91
  msgstr ""
92
 
93
- #: includes/class-social.php:163
94
  #, php-format
95
- msgid "Visit %s on %s"
96
- msgstr ""
 
 
 
97
 
98
  #: includes/social-networks.php:9
 
99
  msgid "username"
100
  msgstr ""
101
 
102
  #: includes/social-networks.php:10
 
103
  msgid "channel"
104
  msgstr ""
105
 
106
  #: includes/social-networks.php:11
 
107
  msgid "company"
108
  msgstr ""
109
 
110
  #: includes/social-networks.php:12
 
111
  msgid "board"
112
  msgstr ""
113
 
114
  #: includes/social-networks.php:17
115
  msgid "Facebook"
116
- msgstr ""
117
 
118
  #: includes/social-networks.php:22
119
  msgid "Twitter"
120
- msgstr ""
121
 
122
  #: includes/social-networks.php:28
123
  msgid "Google+"
124
- msgstr ""
125
 
126
  #: includes/social-networks.php:34
127
  msgid "LinkedIn"
128
- msgstr ""
129
 
130
  #: includes/social-networks.php:39
131
  msgid "Pinterest"
132
- msgstr ""
133
 
134
  #: includes/social-networks.php:44
135
  msgid "YouTube"
136
- msgstr ""
137
 
138
  #: includes/social-networks.php:49
139
  msgid "Vimeo"
140
- msgstr ""
141
 
142
  #: includes/social-networks.php:54
143
  msgid "Flickr"
144
- msgstr ""
145
 
146
  #: includes/social-networks.php:59
147
  msgid "Foursquare"
148
- msgstr ""
149
 
150
  #: includes/social-networks.php:64
151
  msgid "GitHub"
152
- msgstr ""
153
 
154
  #: includes/social-networks.php:69
155
  msgid "Slack"
156
- msgstr ""
157
 
158
  #: includes/social-networks.php:74
159
  msgid "Skype"
160
- msgstr ""
161
 
162
  #: includes/social-networks.php:80
163
  msgid "SoundCloud"
164
- msgstr ""
165
 
166
  #: includes/social-networks.php:85
167
  msgid "TripAdvisor"
168
- msgstr ""
169
 
170
  #: includes/social-networks.php:89
171
  msgid "WordPress"
172
- msgstr ""
173
 
174
  #: includes/social-networks.php:94
175
  msgid "Yelp"
176
- msgstr ""
177
 
178
  #: includes/social-networks.php:99
179
  msgid "Amazon"
180
- msgstr ""
181
 
182
  #: includes/social-networks.php:103
183
  msgid "Instagram"
184
- msgstr ""
185
 
186
  #: includes/social-networks.php:108
187
  msgid "Vine"
188
- msgstr ""
189
 
190
  #: includes/social-networks.php:113
191
  msgid "reddit"
192
- msgstr ""
193
 
194
  #: includes/social-networks.php:118
195
  msgid "XING"
196
- msgstr ""
197
 
198
  #: includes/social-networks.php:122
199
  msgid "Tumblr"
200
- msgstr ""
201
 
202
  #: includes/social-networks.php:127
203
  msgid "WhatsApp"
204
- msgstr ""
205
 
206
  #: includes/social-networks.php:131
207
  msgid "WeChat"
@@ -213,16 +192,23 @@ 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:208
10
  msgid "Title:"
11
  msgstr ""
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
+ msgstr " "
16
 
17
  #: includes/class-contact.php:152
18
  msgid "Email:"
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:219
50
  msgid "Display labels?"
51
  msgstr ""
52
 
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:167
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"
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,39 +1,16 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Contact Widgets\n"
5
- "POT-Creation-Date: 2016-02-23 10:49-0500\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
- "Language-Team: LANGUAGE <LL@li.org>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.7\n"
13
- "X-Poedit-SourceCharset: UTF-8\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext;_n;__ngettext_noop;_n_noop;_x;_nx;_nx_noop;_ex;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_c;_nc\n"
16
- "X-Poedit-SearchPath-0: contact-widgets.php\n"
17
- "X-Poedit-SearchPath-1: includes\n"
18
-
19
- #: contact-widgets.php:88
20
- #, php-format
21
- msgid "Contact widgets requires PHP version %s or higher. Please deactivate the plugin and contact your system administrator."
22
- msgstr ""
23
-
24
  #: includes/class-contact.php:20
25
- msgid "Custom contact links"
26
  msgstr ""
27
 
28
  #: includes/class-contact.php:25
29
  msgid "Contact"
30
  msgstr ""
31
 
32
- #: includes/class-contact.php:146 includes/class-social.php:203
33
  msgid "Title:"
34
  msgstr ""
35
 
36
- #: includes/class-contact.php:147 includes/class-social.php:204
37
  msgid "The title of widget. Leave empty for no title."
38
  msgstr ""
39
 
@@ -69,7 +46,7 @@ msgstr ""
69
  msgid "A physical address where website vistors can go to visit you in person."
70
  msgstr ""
71
 
72
- #: includes/class-contact.php:180 includes/class-social.php:214
73
  msgid "Display labels?"
74
  msgstr ""
75
 
@@ -78,31 +55,38 @@ msgid "Display map of address?"
78
  msgstr ""
79
 
80
  #: includes/class-social.php:20
81
- msgid "Custom social links"
82
  msgstr ""
83
 
84
  #: includes/class-social.php:25
85
  msgid "Social"
86
  msgstr ""
87
 
88
- #: includes/class-social.php:163
89
  #, php-format
90
- msgid "Visit %s on %s"
 
 
 
91
  msgstr ""
92
 
93
  #: includes/social-networks.php:9
 
94
  msgid "username"
95
  msgstr ""
96
 
97
  #: includes/social-networks.php:10
 
98
  msgid "channel"
99
  msgstr ""
100
 
101
  #: includes/social-networks.php:11
 
102
  msgid "company"
103
  msgstr ""
104
 
105
  #: includes/social-networks.php:12
 
106
  msgid "board"
107
  msgstr ""
108
 
@@ -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
6
  msgid "Contact"
7
  msgstr ""
8
 
9
+ #: includes/class-contact.php:146 includes/class-social.php:208
10
  msgid "Title:"
11
  msgstr ""
12
 
13
+ #: includes/class-contact.php:147 includes/class-social.php:209
14
  msgid "The title of widget. Leave empty for no title."
15
  msgstr ""
16
 
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:219
50
  msgid "Display labels?"
51
  msgstr ""
52
 
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:167
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
@@ -1,83 +1,93 @@
1
- === Contact Widgets ===
2
- Contributors: jonathanbardo, fjarrett
3
- Tags: widget, contact, social, sharing, share button, share buttons, share links, social icons, social media, facebook, twitter, google plus, instagram
4
- Requires at least: 4.4.2
5
- Tested up to: 4.4.2
6
- Stable tag: trunk
7
-
8
- Display contact information on your website beautifully with these simple widgets.
9
-
10
- == Description ==
11
-
12
- **Note: This plugin requires PHP 5.4 or higher to be activated.**
13
-
14
- This plugin adds 2 new widgets to your WordPress site. One for displaying social media links and another one to display contact information (email, phone numbers, address). Both widgets are compatible with the customizer and will refresh when changes are made.
15
-
16
- **Languages Supported:**
17
-
18
- * English
19
-
20
- **Improvement? Bugs?**
21
-
22
- Please fill out an issue [here](https://github.com/jonathanbardo/WP-Contact-Widgets/issues).
23
-
24
- == Screenshots ==
25
-
26
- 1. Contact widget
27
- 2. Social widget
28
- 2. Twenty Sixteen theme showing both widgets
29
-
30
-
31
- == Frequently Asked Questions ==
32
-
33
- ### How do I add additional fields to the contact widget?
34
-
35
- Adding additional fields to the contact widget is as simple as adding a WordPress filter.
36
-
37
- Here is an example:
38
- <pre lang="php">
39
- add_filter( 'wpcw_widget_contact_custom_fields', function( $fields, $instance ) {
40
-
41
- $fields['cellphone'] = [
42
- 'order' => 2,
43
- 'label' => __( 'Cellphone:', 'YOURTEXTDOMAIN' ),
44
- 'type' => 'text',
45
- 'description' => __( 'A cellphone number that website vistors can call if they have questions.', 'YOURTEXTDOMAIN' ),
46
- ];
47
-
48
- return $fields;
49
-
50
- }, 10, 2 );
51
- </pre>
52
-
53
- ### How do I add additional fields to the social widget?
54
-
55
- The social widget requires a different set of options but follows the same principle as above.
56
-
57
- Here is an example:
58
- <pre lang="php">
59
- add_filter( 'wpcw_widget_social_custom_fields', function( $fields, $instance ) {
60
-
61
- $fields['scribd'] = [
62
- 'icon' => 'scribd', //See font-awesome icon slug
63
- 'label' => __( 'Scribd', 'YOURTEXTDOMAIN' ),
64
- 'default' => 'https://www.scribd.com/username',
65
- 'select' => 'username',
66
- 'sanitizer' => 'esc_url_raw',
67
- 'escaper' => 'esc_url',
68
- 'social' => true,
69
- 'target' => '_blank',
70
- ];
71
-
72
- return $fields;
73
-
74
- }, 10, 2 );
75
- </pre>
76
-
77
- == Changelog ==
78
-
79
- = 1.0.1 - February 24, 2016 =
80
- Added possibility to add custom fields to contact and social widget
81
-
82
- = 1.0.0 - February 23, 2016 =
83
- Initial release. Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)
 
 
 
 
 
 
 
 
 
 
1
+ === Contact Widgets ===
2
+ Contributors: godaddy, jonathanbardo, fjarrett
3
+ Tags: widget, contact, social, sharing, share button, share buttons, share links, social icons, social media, facebook, twitter, google plus, instagram
4
+ Requires at least: 4.4.2
5
+ Tested up to: 4.4.2
6
+ Stable tag: 1.0.3
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
+
16
+ * Contact Information: Displays your contact information including email address, phone number, fax and physical address (including a map).
17
+ * Social Media Profiles: Displays your social media profiles in an attractive, intuitive way.
18
+
19
+ Both widgets are compatible with the WordPress Customizer and will automatically refresh when changes are made.
20
+
21
+ **Languages Supported:**
22
+
23
+ * English
24
+
25
+ **Improvement? Bugs?**
26
+
27
+ Please fill out an issue [here](https://github.com/godaddy/wp-contact-widgets/issues).
28
+
29
+ == Screenshots ==
30
+
31
+ 1. Contact widget
32
+ 2. Social widget
33
+ 3. Twenty Sixteen theme showing both widgets
34
+
35
+
36
+ == Frequently Asked Questions ==
37
+
38
+ ### How do I add additional fields to the contact widget?
39
+
40
+ Adding additional fields to the contact widget is as simple as adding a WordPress filter.
41
+
42
+ Here is an example:
43
+ <pre lang="php">
44
+ add_filter( 'wpcw_widget_contact_custom_fields', function( $fields, $instance ) {
45
+
46
+ $fields['cellphone'] = [
47
+ 'order' => 2,
48
+ 'label' => __( 'Cellphone:', 'YOURTEXTDOMAIN' ),
49
+ 'type' => 'text',
50
+ 'description' => __( 'A cellphone number that website vistors can call if they have questions.', 'YOURTEXTDOMAIN' ),
51
+ ];
52
+
53
+ return $fields;
54
+
55
+ }, 10, 2 );
56
+ </pre>
57
+
58
+ ### How do I add additional fields to the social widget?
59
+
60
+ The social widget requires a different set of options but follows the same principle as above.
61
+
62
+ Here is an example:
63
+ <pre lang="php">
64
+ add_filter( 'wpcw_widget_social_custom_fields', function( $fields, $instance ) {
65
+
66
+ $fields['scribd'] = [
67
+ 'icon' => 'scribd', //See font-awesome icon slug
68
+ 'label' => __( 'Scribd', 'YOURTEXTDOMAIN' ),
69
+ 'default' => 'https://www.scribd.com/username',
70
+ 'select' => 'username',
71
+ 'sanitizer' => 'esc_url_raw',
72
+ 'escaper' => 'esc_url',
73
+ 'social' => true,
74
+ 'target' => '_blank',
75
+ ];
76
+
77
+ return $fields;
78
+
79
+ }, 10, 2 );
80
+ </pre>
81
+
82
+ == Changelog ==
83
+ = 1.0.3 - March 9, 2016 =
84
+ Update locale ms_MY
85
+
86
+ = 1.0.2 - February 24, 2016 =
87
+ 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
88
+
89
+ = 1.0.1 - February 24, 2016 =
90
+ Added possibility to add custom fields to contact and social widget
91
+
92
+ = 1.0.0 - February 23, 2016 =
93
+ Initial release. Props [@jonathanbardo](https://github.com/jonathanbardo), [@fjarrett](https://github.com/fjarrett)