Widget Importer & Exporter - Version 1.5.3

Version Description

Download this release

Release Info

Developer stevengliebe
Plugin Icon 128x128 Widget Importer & Exporter
Version 1.5.3
Comparing to
See all releases

Code changes from version 1.5.2 to 1.5.3

css/style.css CHANGED
@@ -40,48 +40,6 @@
40
  height: 8px;
41
  }
42
 
43
- /* Project support box */
44
-
45
- .wie-box {
46
- position: relative;
47
- padding: 20px 24px;
48
- border: 1px solid #e5e5e5;
49
- background-color: #fff;
50
- }
51
-
52
- #wie-project {
53
- max-width: 520px;
54
- margin: 20px 0 30px 0;
55
- }
56
-
57
- #wie-project-logo {
58
- position: relative;
59
- top: -1px;
60
- right: -1px;
61
- margin-left: 20px;
62
- margin-bottom: 15px;
63
- float: right;
64
- }
65
-
66
- #wie-project p {
67
- margin-top: 0;
68
- margin-bottom: 18px;
69
- }
70
-
71
- #wie-project ul {
72
- margin-bottom: 0;
73
- }
74
-
75
- #wie-host-line a {
76
- font-weight: bold;
77
- }
78
-
79
- /* Help */
80
-
81
- #wie-help {
82
- font-style: italic;
83
- }
84
-
85
  /* Notices */
86
 
87
  #wie-notice-message {
40
  height: 8px;
41
  }
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  /* Notices */
44
 
45
  #wie-notice-message {
img/wp-ultimate-logo.png DELETED
Binary file
img/wp-ultimate-logo@2x.png DELETED
Binary file
includes/admin.php CHANGED
@@ -6,8 +6,8 @@
6
  *
7
  * @package Widget_Importer_Exporter
8
  * @subpackage Functions
9
- * @copyright Copyright (c) 2017, WP Ultimate
10
- * @link https://wpultimate.com/widget-importer-exporter
11
  * @license GPLv2 or later
12
  * @since 1.4
13
  */
6
  *
7
  * @package Widget_Importer_Exporter
8
  * @subpackage Functions
9
+ * @copyright Copyright (c) 2017, churchthemes.com
10
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
11
  * @license GPLv2 or later
12
  * @since 1.4
13
  */
includes/export.php CHANGED
@@ -4,8 +4,8 @@
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
- * @copyright Copyright (c) 2013 - 2017, WP Ultimate
8
- * @link https://wpultimate.com/widget-importer-exporter
9
  * @license GPLv2 or later
10
  * @since 0.1
11
  */
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
+ * @copyright Copyright (c) 2013 - 2017, churchthemes.com
8
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
9
  * @license GPLv2 or later
10
  * @since 0.1
11
  */
includes/import.php CHANGED
@@ -4,8 +4,8 @@
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
- * @copyright Copyright (c) 2013 - 2017, WP Ultimate
8
- * @link https://wpultimate.com/widget-importer-exporter
9
  * @license GPLv2 or later
10
  * @since 0.3
11
  */
@@ -287,7 +287,7 @@ function wie_import_data( $data ) {
287
  $sidebars_widgets = get_option( 'sidebars_widgets' );
288
 
289
  // Avoid rarely fatal error when the option is an empty string
290
- // https://github.com/stevengliebe/widget-importer-exporter/pull/11.
291
  if ( ! $sidebars_widgets ) {
292
  $sidebars_widgets = array();
293
  }
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
+ * @copyright Copyright (c) 2013 - 2017, churchthemes.com
8
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
9
  * @license GPLv2 or later
10
  * @since 0.3
11
  */
287
  $sidebars_widgets = get_option( 'sidebars_widgets' );
288
 
289
  // Avoid rarely fatal error when the option is an empty string
290
+ // https://github.com/churchthemes/widget-importer-exporter/pull/11.
291
  if ( ! $sidebars_widgets ) {
292
  $sidebars_widgets = array();
293
  }
includes/mime-types.php CHANGED
@@ -4,8 +4,8 @@
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
- * @copyright Copyright (c) 2013 - 2017, WP Ultimate
8
- * @link https://wpultimate.com/widget-importer-exporter
9
  * @license GPLv2 or later
10
  * @since 0.1
11
  */
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
+ * @copyright Copyright (c) 2013 - 2017, churchthemes.com
8
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
9
  * @license GPLv2 or later
10
  * @since 0.1
11
  */
includes/page.php CHANGED
@@ -4,8 +4,8 @@
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
- * @copyright Copyright (c) 2013 - 2017, WP Ultimate
8
- * @link https://wpultimate.com/widget-importer-exporter
9
  * @license GPLv2 or later
10
  * @since 0.1
11
  */
@@ -49,8 +49,6 @@ function wie_import_export_page_content() {
49
 
50
  <?php
51
 
52
- wie_header();
53
-
54
  // Show import results if have them.
55
  if ( wie_have_import_results() ) {
56
 
@@ -233,103 +231,3 @@ function wie_show_import_results() {
233
  </table>
234
  <?php
235
  }
236
-
237
- /**
238
- * Show header
239
- *
240
- * Outputs information on supporting the project
241
- */
242
- function wie_header() {
243
-
244
- // Logo URLs.
245
- $img_dir_url = WIE_URL . '/' . WIE_IMG_DIR;
246
- $logo_url = $img_dir_url . '/wp-ultimate-logo.png';
247
- $logo_hidpi_url = $img_dir_url . '/wp-ultimate-logo@2x.png';
248
-
249
- ?>
250
-
251
- <div id="wie-project" class="wie-box">
252
-
253
- <a href="https://wpultimate.com" target="_blank">
254
- <img src="<?php echo esc_url( $logo_url ); ?>" srcset="<?php echo esc_url( $logo_url ); ?> 1x, <?php echo esc_url( $logo_hidpi_url ); ?> 2x" id="wie-project-logo" width="40" height="40" alt="<?php esc_attr_e( 'WP Ultimate Logo', 'widget-importer-exporter' ); ?>">
255
- </a>
256
-
257
- <p>
258
-
259
- <?php
260
- echo wp_kses(
261
- __( '<b>Keep it Free</b> - There are costs to cover with 1,500,000+ downloads and free support. Keep this plugin going by trying our WordPress hosting.', 'widget-importer-exporter' ),
262
- array(
263
- 'b' => array(),
264
- )
265
- );
266
- ?>
267
-
268
- </p>
269
-
270
- <ul>
271
-
272
- <li id="wie-host-line">
273
- <?php
274
- printf(
275
- wp_kses(
276
- /* translators: %1$s is URL to WP Ultimate */
277
- __( '<a href="%1$s" target="_blank">Host with WP Ultimate</a> - Free trial. We\'ll move your site for free to make it easy.', 'widget-importer-exporter' ),
278
- array(
279
- 'b' => array(),
280
- 'a' => array(
281
- 'href' => array(),
282
- 'target' => array(),
283
- ),
284
- )
285
- ),
286
- 'https://wpultimate.com/'
287
- );
288
- ?>
289
- </li>
290
-
291
- <li>
292
- <?php
293
- printf(
294
- wp_kses(
295
- /* translators: %1$s is URL to add a review on WordPress.org */
296
- __( '<a href="%1$s" target="_blank">Add Your Review</a> - Share your experience with other users.', 'widget-importer-exporter' ),
297
- array(
298
- 'b' => array(),
299
- 'a' => array(
300
- 'href' => array(),
301
- 'target' => array(),
302
- ),
303
- )
304
- ),
305
- 'https://wordpress.org/support/plugin/widget-importer-exporter/reviews/?filter=5'
306
- );
307
- ?>
308
- </li>
309
-
310
- <li>
311
- <?php
312
- printf(
313
- wp_kses(
314
- /* translators: %1$s is URL to support forum on WordPress.org */
315
- __( '<a href="%1$s" target="_blank">Get Support</a> - Need help? Post a question on the support forum.', 'widget-importer-exporter' ),
316
- array(
317
- 'b' => array(),
318
- 'a' => array(
319
- 'href' => array(),
320
- 'target' => array(),
321
- ),
322
- )
323
- ),
324
- 'https://wordpress.org/support/plugin/widget-importer-exporter/'
325
- );
326
- ?>
327
- </li>
328
-
329
- </ul>
330
-
331
- </div>
332
-
333
- <?php
334
-
335
- }
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
+ * @copyright Copyright (c) 2013 - 2017, churchthemes.com
8
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
9
  * @license GPLv2 or later
10
  * @since 0.1
11
  */
49
 
50
  <?php
51
 
 
 
52
  // Show import results if have them.
53
  if ( wie_have_import_results() ) {
54
 
231
  </table>
232
  <?php
233
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/widgets.php CHANGED
@@ -4,8 +4,8 @@
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
- * @copyright Copyright (c) 2013 - 2017, WP Ultimate
8
- * @link https://wpultimate.com/widget-importer-exporter
9
  * @license GPLv2 or later
10
  * @since 0.4
11
  */
4
  *
5
  * @package Widget_Importer_Exporter
6
  * @subpackage Functions
7
+ * @copyright Copyright (c) 2013 - 2017, churchthemes.com
8
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
9
  * @license GPLv2 or later
10
  * @since 0.4
11
  */
languages/widget-importer-exporter-de_DE.mo CHANGED
Binary file
languages/widget-importer-exporter-de_DE.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
- "POT-Creation-Date: 2017-08-26 13:21-0500\n"
5
- "PO-Revision-Date: 2017-08-26 13:21-0500\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: \n"
8
  "Language: de_DE\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.11\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c\n"
@@ -62,101 +62,52 @@ msgstr "Nach \"inaktiv\" importiert"
62
  msgid "No Title"
63
  msgstr "Kein Titel"
64
 
65
- #: ../includes/notices.php:157
66
- #, php-format
67
- msgid ""
68
- "<b>PHP Security Warning:</b> Your version of PHP is %1$s which is outdated "
69
- "and insecure. <b><a href=\"%2$s\" target=\"_blank\">Fix This Now</a></b>"
70
- msgstr ""
71
-
72
- #: ../includes/notices.php:176 ../includes/notices.php:231
73
- msgid "Remind Later"
74
- msgstr ""
75
-
76
- #: ../includes/notices.php:213
77
- #, php-format
78
- msgid ""
79
- "<b>HTTP Security Warning:</b> Your website is not using HTTPS/SSL. This is a "
80
- "security risk. <b><a href=\"%1$s\" target=\"_blank\">Fix This Now</a></b>"
81
- msgstr ""
82
-
83
  #: ../includes/page.php:27 ../includes/page.php:28 ../includes/page.php:48
84
  msgid "Widget Importer & Exporter"
85
  msgstr "Widget Importer & Exporter"
86
 
87
- #: ../includes/page.php:66
88
  msgctxt "heading"
89
  msgid "Import Widgets"
90
  msgstr "Importiere Widgets"
91
 
92
- #: ../includes/page.php:73
93
  msgid "Please select a <b>.wie</b> file generated by this plugin."
94
  msgstr "Bitte eine von diesem Plugin erstellte <b>.wie</b>-Datei auswählen."
95
 
96
- #: ../includes/page.php:86
97
  msgctxt "button"
98
  msgid "Import Widgets"
99
  msgstr "Importiere Widgets"
100
 
101
- #: ../includes/page.php:96
102
  msgctxt "heading"
103
  msgid "Export Widgets"
104
  msgstr "Exportiere Widgets"
105
 
106
- #: ../includes/page.php:101
107
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
108
  msgstr ""
109
  "Unten klicken um eine <b>.wie</b>-Datei für alle aktiven Widgets zu "
110
  "erstellen."
111
 
112
- #: ../includes/page.php:112
113
  msgctxt "button"
114
  msgid "Export Widgets"
115
  msgstr "Exportiere Widgets"
116
 
117
- #: ../includes/page.php:156
118
  msgctxt "heading"
119
  msgid "Import Results"
120
  msgstr "Import-Ergebnis"
121
 
122
- #: ../includes/page.php:163
123
  #, php-format
124
  msgid ""
125
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
126
  "Back</a>."
127
  msgstr ""
128
 
129
- #: ../includes/page.php:254
130
- msgid "WP Ultimate Logo"
131
- msgstr ""
132
-
133
- #: ../includes/page.php:261
134
- msgid ""
135
- "<b>Keep it Free</b> - There are costs to cover with 1,000,000+ downloads and "
136
- "free support. Keep this plugin going by trying our WordPress hosting."
137
- msgstr ""
138
-
139
- #: ../includes/page.php:277
140
- #, php-format
141
- msgid ""
142
- "<a href=\"%1$s\" target=\"_blank\">Host with WP Ultimate</a> - Free trial. "
143
- "We'll move your site for free to make it easy."
144
- msgstr ""
145
-
146
- #: ../includes/page.php:296
147
- #, php-format
148
- msgid ""
149
- "<a href=\"%1$s\" target=\"_blank\">Add Your Review</a> - Share your "
150
- "experience with other users."
151
- msgstr ""
152
-
153
- #: ../includes/page.php:315
154
- #, php-format
155
- msgid ""
156
- "<a href=\"%1$s\" target=\"_blank\">Get Support</a> - Need help? Post a "
157
- "question on the support forum."
158
- msgstr ""
159
-
160
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
161
  #~ msgstr "Seitenleiste existiert nicht in diesem Theme (nutze \"inaktiv\")"
162
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
+ "POT-Creation-Date: 2018-01-19 14:03-0600\n"
5
+ "PO-Revision-Date: 2018-01-19 14:03-0600\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: \n"
8
  "Language: de_DE\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 2.0.4\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c\n"
62
  msgid "No Title"
63
  msgstr "Kein Titel"
64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  #: ../includes/page.php:27 ../includes/page.php:28 ../includes/page.php:48
66
  msgid "Widget Importer & Exporter"
67
  msgstr "Widget Importer & Exporter"
68
 
69
+ #: ../includes/page.php:64
70
  msgctxt "heading"
71
  msgid "Import Widgets"
72
  msgstr "Importiere Widgets"
73
 
74
+ #: ../includes/page.php:71
75
  msgid "Please select a <b>.wie</b> file generated by this plugin."
76
  msgstr "Bitte eine von diesem Plugin erstellte <b>.wie</b>-Datei auswählen."
77
 
78
+ #: ../includes/page.php:84
79
  msgctxt "button"
80
  msgid "Import Widgets"
81
  msgstr "Importiere Widgets"
82
 
83
+ #: ../includes/page.php:94
84
  msgctxt "heading"
85
  msgid "Export Widgets"
86
  msgstr "Exportiere Widgets"
87
 
88
+ #: ../includes/page.php:99
89
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
90
  msgstr ""
91
  "Unten klicken um eine <b>.wie</b>-Datei für alle aktiven Widgets zu "
92
  "erstellen."
93
 
94
+ #: ../includes/page.php:110
95
  msgctxt "button"
96
  msgid "Export Widgets"
97
  msgstr "Exportiere Widgets"
98
 
99
+ #: ../includes/page.php:154
100
  msgctxt "heading"
101
  msgid "Import Results"
102
  msgstr "Import-Ergebnis"
103
 
104
+ #: ../includes/page.php:161
105
  #, php-format
106
  msgid ""
107
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
108
  "Back</a>."
109
  msgstr ""
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
112
  #~ msgstr "Seitenleiste existiert nicht in diesem Theme (nutze \"inaktiv\")"
113
 
languages/widget-importer-exporter-es_ES.mo CHANGED
Binary file
languages/widget-importer-exporter-es_ES.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
- "POT-Creation-Date: 2017-08-26 13:21-0500\n"
5
- "PO-Revision-Date: 2017-08-26 13:21-0500\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: PNTE <blogs@educacion.navarra.es>\n"
8
  "Language: es_ES\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.11\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c;_c\n"
@@ -62,102 +62,53 @@ msgstr "Importado como inactivo"
62
  msgid "No Title"
63
  msgstr "Sin título"
64
 
65
- #: includes/notices.php:157
66
- #, php-format
67
- msgid ""
68
- "<b>PHP Security Warning:</b> Your version of PHP is %1$s which is outdated "
69
- "and insecure. <b><a href=\"%2$s\" target=\"_blank\">Fix This Now</a></b>"
70
- msgstr ""
71
-
72
- #: includes/notices.php:176 includes/notices.php:231
73
- msgid "Remind Later"
74
- msgstr ""
75
-
76
- #: includes/notices.php:213
77
- #, php-format
78
- msgid ""
79
- "<b>HTTP Security Warning:</b> Your website is not using HTTPS/SSL. This is a "
80
- "security risk. <b><a href=\"%1$s\" target=\"_blank\">Fix This Now</a></b>"
81
- msgstr ""
82
-
83
  #: includes/page.php:27 includes/page.php:28 includes/page.php:48
84
  msgid "Widget Importer & Exporter"
85
  msgstr "Widget Importer & Exporter"
86
 
87
- #: includes/page.php:66
88
  msgctxt "heading"
89
  msgid "Import Widgets"
90
  msgstr "Importar widgets"
91
 
92
- #: includes/page.php:73
93
  msgid "Please select a <b>.wie</b> file generated by this plugin."
94
  msgstr ""
95
  "Por favor, selecciona un fichero <b>.wie</b>, generado por este plugin."
96
 
97
- #: includes/page.php:86
98
  msgctxt "button"
99
  msgid "Import Widgets"
100
  msgstr "Importar widgets"
101
 
102
- #: includes/page.php:96
103
  msgctxt "heading"
104
  msgid "Export Widgets"
105
  msgstr "Exportar widgets"
106
 
107
- #: includes/page.php:101
108
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
109
  msgstr ""
110
  "Haz clic el el botón que tienes a continuación, para generar un fichero <b>."
111
  "wie</b>, para todos los widgets activos."
112
 
113
- #: includes/page.php:112
114
  msgctxt "button"
115
  msgid "Export Widgets"
116
  msgstr "Exportar widgets"
117
 
118
- #: includes/page.php:156
119
  msgctxt "heading"
120
  msgid "Import Results"
121
  msgstr "Resultados de la exportación"
122
 
123
- #: includes/page.php:163
124
  #, php-format
125
  msgid ""
126
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
127
  "Back</a>."
128
  msgstr ""
129
 
130
- #: includes/page.php:254
131
- msgid "WP Ultimate Logo"
132
- msgstr ""
133
-
134
- #: includes/page.php:261
135
- msgid ""
136
- "<b>Keep it Free</b> - There are costs to cover with 1,000,000+ downloads and "
137
- "free support. Keep this plugin going by trying our WordPress hosting."
138
- msgstr ""
139
-
140
- #: includes/page.php:277
141
- #, php-format
142
- msgid ""
143
- "<a href=\"%1$s\" target=\"_blank\">Host with WP Ultimate</a> - Free trial. "
144
- "We'll move your site for free to make it easy."
145
- msgstr ""
146
-
147
- #: includes/page.php:296
148
- #, php-format
149
- msgid ""
150
- "<a href=\"%1$s\" target=\"_blank\">Add Your Review</a> - Share your "
151
- "experience with other users."
152
- msgstr ""
153
-
154
- #: includes/page.php:315
155
- #, php-format
156
- msgid ""
157
- "<a href=\"%1$s\" target=\"_blank\">Get Support</a> - Need help? Post a "
158
- "question on the support forum."
159
- msgstr ""
160
-
161
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
162
  #~ msgstr ""
163
  #~ "La barra lateral no existe en el tema (sus widgets se importarán como "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
+ "POT-Creation-Date: 2018-01-19 14:03-0600\n"
5
+ "PO-Revision-Date: 2018-01-19 14:03-0600\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: PNTE <blogs@educacion.navarra.es>\n"
8
  "Language: es_ES\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 2.0.4\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c;_c\n"
62
  msgid "No Title"
63
  msgstr "Sin título"
64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  #: includes/page.php:27 includes/page.php:28 includes/page.php:48
66
  msgid "Widget Importer & Exporter"
67
  msgstr "Widget Importer & Exporter"
68
 
69
+ #: includes/page.php:64
70
  msgctxt "heading"
71
  msgid "Import Widgets"
72
  msgstr "Importar widgets"
73
 
74
+ #: includes/page.php:71
75
  msgid "Please select a <b>.wie</b> file generated by this plugin."
76
  msgstr ""
77
  "Por favor, selecciona un fichero <b>.wie</b>, generado por este plugin."
78
 
79
+ #: includes/page.php:84
80
  msgctxt "button"
81
  msgid "Import Widgets"
82
  msgstr "Importar widgets"
83
 
84
+ #: includes/page.php:94
85
  msgctxt "heading"
86
  msgid "Export Widgets"
87
  msgstr "Exportar widgets"
88
 
89
+ #: includes/page.php:99
90
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
91
  msgstr ""
92
  "Haz clic el el botón que tienes a continuación, para generar un fichero <b>."
93
  "wie</b>, para todos los widgets activos."
94
 
95
+ #: includes/page.php:110
96
  msgctxt "button"
97
  msgid "Export Widgets"
98
  msgstr "Exportar widgets"
99
 
100
+ #: includes/page.php:154
101
  msgctxt "heading"
102
  msgid "Import Results"
103
  msgstr "Resultados de la exportación"
104
 
105
+ #: includes/page.php:161
106
  #, php-format
107
  msgid ""
108
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
109
  "Back</a>."
110
  msgstr ""
111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
113
  #~ msgstr ""
114
  #~ "La barra lateral no existe en el tema (sus widgets se importarán como "
languages/widget-importer-exporter-nl_NL.mo CHANGED
Binary file
languages/widget-importer-exporter-nl_NL.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
- "POT-Creation-Date: 2017-08-26 13:21-0500\n"
5
- "PO-Revision-Date: 2017-08-26 13:21-0500\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\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.11\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c\n"
@@ -60,100 +60,51 @@ msgstr "Geïmporteerd naar inactief"
60
  msgid "No Title"
61
  msgstr "Geen titel"
62
 
63
- #: ../includes/notices.php:157
64
- #, php-format
65
- msgid ""
66
- "<b>PHP Security Warning:</b> Your version of PHP is %1$s which is outdated "
67
- "and insecure. <b><a href=\"%2$s\" target=\"_blank\">Fix This Now</a></b>"
68
- msgstr ""
69
-
70
- #: ../includes/notices.php:176 ../includes/notices.php:231
71
- msgid "Remind Later"
72
- msgstr ""
73
-
74
- #: ../includes/notices.php:213
75
- #, php-format
76
- msgid ""
77
- "<b>HTTP Security Warning:</b> Your website is not using HTTPS/SSL. This is a "
78
- "security risk. <b><a href=\"%1$s\" target=\"_blank\">Fix This Now</a></b>"
79
- msgstr ""
80
-
81
  #: ../includes/page.php:27 ../includes/page.php:28 ../includes/page.php:48
82
  msgid "Widget Importer & Exporter"
83
  msgstr "Widget Importeer & Exporteer"
84
 
85
- #: ../includes/page.php:66
86
  msgctxt "heading"
87
  msgid "Import Widgets"
88
  msgstr "Importeer Widgets"
89
 
90
- #: ../includes/page.php:73
91
  msgid "Please select a <b>.wie</b> file generated by this plugin."
92
  msgstr "Selecteer aub een <b>.wie</b> bestand gegenereerd door deze plugin."
93
 
94
- #: ../includes/page.php:86
95
  msgctxt "button"
96
  msgid "Import Widgets"
97
  msgstr "Importeer Widgets"
98
 
99
- #: ../includes/page.php:96
100
  msgctxt "heading"
101
  msgid "Export Widgets"
102
  msgstr "Exporteer Widgets"
103
 
104
- #: ../includes/page.php:101
105
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
106
  msgstr ""
107
  "Click hier beneden om een <b>.wie</b> te genereren voor alle actieve widgets."
108
 
109
- #: ../includes/page.php:112
110
  msgctxt "button"
111
  msgid "Export Widgets"
112
  msgstr "Exporteer Widgets"
113
 
114
- #: ../includes/page.php:156
115
  msgctxt "heading"
116
  msgid "Import Results"
117
  msgstr "Import Resultaten"
118
 
119
- #: ../includes/page.php:163
120
  #, php-format
121
  msgid ""
122
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
123
  "Back</a>."
124
  msgstr ""
125
 
126
- #: ../includes/page.php:254
127
- msgid "WP Ultimate Logo"
128
- msgstr ""
129
-
130
- #: ../includes/page.php:261
131
- msgid ""
132
- "<b>Keep it Free</b> - There are costs to cover with 1,000,000+ downloads and "
133
- "free support. Keep this plugin going by trying our WordPress hosting."
134
- msgstr ""
135
-
136
- #: ../includes/page.php:277
137
- #, php-format
138
- msgid ""
139
- "<a href=\"%1$s\" target=\"_blank\">Host with WP Ultimate</a> - Free trial. "
140
- "We'll move your site for free to make it easy."
141
- msgstr ""
142
-
143
- #: ../includes/page.php:296
144
- #, php-format
145
- msgid ""
146
- "<a href=\"%1$s\" target=\"_blank\">Add Your Review</a> - Share your "
147
- "experience with other users."
148
- msgstr ""
149
-
150
- #: ../includes/page.php:315
151
- #, php-format
152
- msgid ""
153
- "<a href=\"%1$s\" target=\"_blank\">Get Support</a> - Need help? Post a "
154
- "question on the support forum."
155
- msgstr ""
156
-
157
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
158
  #~ msgstr "Zijbalk container bestaat niet in deze Template (gebruik inactief)"
159
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
+ "POT-Creation-Date: 2018-01-19 14:03-0600\n"
5
+ "PO-Revision-Date: 2018-01-19 14:03-0600\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\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 2.0.4\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c\n"
60
  msgid "No Title"
61
  msgstr "Geen titel"
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  #: ../includes/page.php:27 ../includes/page.php:28 ../includes/page.php:48
64
  msgid "Widget Importer & Exporter"
65
  msgstr "Widget Importeer & Exporteer"
66
 
67
+ #: ../includes/page.php:64
68
  msgctxt "heading"
69
  msgid "Import Widgets"
70
  msgstr "Importeer Widgets"
71
 
72
+ #: ../includes/page.php:71
73
  msgid "Please select a <b>.wie</b> file generated by this plugin."
74
  msgstr "Selecteer aub een <b>.wie</b> bestand gegenereerd door deze plugin."
75
 
76
+ #: ../includes/page.php:84
77
  msgctxt "button"
78
  msgid "Import Widgets"
79
  msgstr "Importeer Widgets"
80
 
81
+ #: ../includes/page.php:94
82
  msgctxt "heading"
83
  msgid "Export Widgets"
84
  msgstr "Exporteer Widgets"
85
 
86
+ #: ../includes/page.php:99
87
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
88
  msgstr ""
89
  "Click hier beneden om een <b>.wie</b> te genereren voor alle actieve widgets."
90
 
91
+ #: ../includes/page.php:110
92
  msgctxt "button"
93
  msgid "Export Widgets"
94
  msgstr "Exporteer Widgets"
95
 
96
+ #: ../includes/page.php:154
97
  msgctxt "heading"
98
  msgid "Import Results"
99
  msgstr "Import Resultaten"
100
 
101
+ #: ../includes/page.php:161
102
  #, php-format
103
  msgid ""
104
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
105
  "Back</a>."
106
  msgstr ""
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
109
  #~ msgstr "Zijbalk container bestaat niet in deze Template (gebruik inactief)"
110
 
languages/widget-importer-exporter-sr_RS.mo CHANGED
Binary file
languages/widget-importer-exporter-sr_RS.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
- "POT-Creation-Date: 2017-08-26 13:21-0500\n"
5
- "PO-Revision-Date: 2017-08-26 13:21-0500\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: PNTE <blogs@educacion.navarra.es>\n"
8
  "Language: sr_RS\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.11\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c;_c\n"
@@ -60,102 +60,53 @@ msgstr "Uvezen u Neaktivne"
60
  msgid "No Title"
61
  msgstr "Nema naslova"
62
 
63
- #: includes/notices.php:157
64
- #, php-format
65
- msgid ""
66
- "<b>PHP Security Warning:</b> Your version of PHP is %1$s which is outdated "
67
- "and insecure. <b><a href=\"%2$s\" target=\"_blank\">Fix This Now</a></b>"
68
- msgstr ""
69
-
70
- #: includes/notices.php:176 includes/notices.php:231
71
- msgid "Remind Later"
72
- msgstr ""
73
-
74
- #: includes/notices.php:213
75
- #, php-format
76
- msgid ""
77
- "<b>HTTP Security Warning:</b> Your website is not using HTTPS/SSL. This is a "
78
- "security risk. <b><a href=\"%1$s\" target=\"_blank\">Fix This Now</a></b>"
79
- msgstr ""
80
-
81
  #: includes/page.php:27 includes/page.php:28 includes/page.php:48
82
  msgid "Widget Importer & Exporter"
83
  msgstr "Widget Importer & Exporter"
84
 
85
- #: includes/page.php:66
86
  msgctxt "heading"
87
  msgid "Import Widgets"
88
  msgstr "Uvezi widget-e"
89
 
90
- #: includes/page.php:73
91
  msgid "Please select a <b>.wie</b> file generated by this plugin."
92
  msgstr ""
93
  "Molimo vas, odaberite <b>.wie</b> datoteku koju je generisao ovaj plugin."
94
 
95
- #: includes/page.php:86
96
  msgctxt "button"
97
  msgid "Import Widgets"
98
  msgstr "Uvezi widget-e"
99
 
100
- #: includes/page.php:96
101
  msgctxt "heading"
102
  msgid "Export Widgets"
103
  msgstr "Izvezi widget-e"
104
 
105
- #: includes/page.php:101
106
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
107
  msgstr ""
108
  "Kliknite ispod da biste generisali <b>.wie</b> datoteku za sve aktivne "
109
  "widget-e."
110
 
111
- #: includes/page.php:112
112
  msgctxt "button"
113
  msgid "Export Widgets"
114
  msgstr "Izvezi widget-e."
115
 
116
- #: includes/page.php:156
117
  msgctxt "heading"
118
  msgid "Import Results"
119
  msgstr "Uvezi rezultate"
120
 
121
- #: includes/page.php:163
122
  #, php-format
123
  msgid ""
124
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
125
  "Back</a>."
126
  msgstr ""
127
 
128
- #: includes/page.php:254
129
- msgid "WP Ultimate Logo"
130
- msgstr ""
131
-
132
- #: includes/page.php:261
133
- msgid ""
134
- "<b>Keep it Free</b> - There are costs to cover with 1,000,000+ downloads and "
135
- "free support. Keep this plugin going by trying our WordPress hosting."
136
- msgstr ""
137
-
138
- #: includes/page.php:277
139
- #, php-format
140
- msgid ""
141
- "<a href=\"%1$s\" target=\"_blank\">Host with WP Ultimate</a> - Free trial. "
142
- "We'll move your site for free to make it easy."
143
- msgstr ""
144
-
145
- #: includes/page.php:296
146
- #, php-format
147
- msgid ""
148
- "<a href=\"%1$s\" target=\"_blank\">Add Your Review</a> - Share your "
149
- "experience with other users."
150
- msgstr ""
151
-
152
- #: includes/page.php:315
153
- #, php-format
154
- msgid ""
155
- "<a href=\"%1$s\" target=\"_blank\">Get Support</a> - Need help? Post a "
156
- "question on the support forum."
157
- msgstr ""
158
-
159
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
160
  #~ msgstr "Bočni meni ne postoji u temi (nije aktiviran)"
161
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Widget Importer & Exporter\n"
4
+ "POT-Creation-Date: 2018-01-19 14:03-0600\n"
5
+ "PO-Revision-Date: 2018-01-19 14:03-0600\n"
6
  "Last-Translator: churchthemes.com <contact@churchthemes.com>\n"
7
  "Language-Team: PNTE <blogs@educacion.navarra.es>\n"
8
  "Language: sr_RS\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 2.0.4\n"
13
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
14
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
15
  "_nx_noop:1,2,3c;_c\n"
60
  msgid "No Title"
61
  msgstr "Nema naslova"
62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  #: includes/page.php:27 includes/page.php:28 includes/page.php:48
64
  msgid "Widget Importer & Exporter"
65
  msgstr "Widget Importer & Exporter"
66
 
67
+ #: includes/page.php:64
68
  msgctxt "heading"
69
  msgid "Import Widgets"
70
  msgstr "Uvezi widget-e"
71
 
72
+ #: includes/page.php:71
73
  msgid "Please select a <b>.wie</b> file generated by this plugin."
74
  msgstr ""
75
  "Molimo vas, odaberite <b>.wie</b> datoteku koju je generisao ovaj plugin."
76
 
77
+ #: includes/page.php:84
78
  msgctxt "button"
79
  msgid "Import Widgets"
80
  msgstr "Uvezi widget-e"
81
 
82
+ #: includes/page.php:94
83
  msgctxt "heading"
84
  msgid "Export Widgets"
85
  msgstr "Izvezi widget-e"
86
 
87
+ #: includes/page.php:99
88
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
89
  msgstr ""
90
  "Kliknite ispod da biste generisali <b>.wie</b> datoteku za sve aktivne "
91
  "widget-e."
92
 
93
+ #: includes/page.php:110
94
  msgctxt "button"
95
  msgid "Export Widgets"
96
  msgstr "Izvezi widget-e."
97
 
98
+ #: includes/page.php:154
99
  msgctxt "heading"
100
  msgid "Import Results"
101
  msgstr "Uvezi rezultate"
102
 
103
+ #: includes/page.php:161
104
  #, php-format
105
  msgid ""
106
  "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
107
  "Back</a>."
108
  msgstr ""
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  #~ msgid "Sidebar does not exist in theme (using Inactive)"
111
  #~ msgstr "Bočni meni ne postoji u temi (nije aktiviran)"
112
 
languages/widget-importer-exporter.pot CHANGED
@@ -2,15 +2,15 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Widget Importer & Exporter\n"
5
- "POT-Creation-Date: 2017-08-26 13:21-0500\n"
6
  "PO-Revision-Date: 2015-02-23 09:31-0600\n"
7
- "Last-Translator: WP Ultimate\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.11\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:1,2,3c\n"
@@ -59,95 +59,46 @@ msgstr ""
59
  msgid "No Title"
60
  msgstr ""
61
 
62
- #: ../includes/notices.php:157
63
- #, php-format
64
- msgid ""
65
- "<b>PHP Security Warning:</b> Your version of PHP is %1$s which is outdated "
66
- "and insecure. <b><a href=\"%2$s\" target=\"_blank\">Fix This Now</a></b>"
67
- msgstr ""
68
-
69
- #: ../includes/notices.php:176 ../includes/notices.php:231
70
- msgid "Remind Later"
71
- msgstr ""
72
-
73
- #: ../includes/notices.php:213
74
- #, php-format
75
- msgid ""
76
- "<b>HTTP Security Warning:</b> Your website is not using HTTPS/SSL. This is a "
77
- "security risk. <b><a href=\"%1$s\" target=\"_blank\">Fix This Now</a></b>"
78
- msgstr ""
79
-
80
  #: ../includes/page.php:27 ../includes/page.php:28 ../includes/page.php:48
81
  msgid "Widget Importer & Exporter"
82
  msgstr ""
83
 
84
- #: ../includes/page.php:66
85
  msgctxt "heading"
86
  msgid "Import Widgets"
87
  msgstr ""
88
 
89
- #: ../includes/page.php:73
90
  msgid "Please select a <b>.wie</b> file generated by this plugin."
91
  msgstr ""
92
 
93
- #: ../includes/page.php:86
94
  msgctxt "button"
95
  msgid "Import Widgets"
96
  msgstr ""
97
 
98
- #: ../includes/page.php:96
99
  msgctxt "heading"
100
  msgid "Export Widgets"
101
  msgstr ""
102
 
103
- #: ../includes/page.php:101
104
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
105
  msgstr ""
106
 
107
- #: ../includes/page.php:112
108
  msgctxt "button"
109
  msgid "Export Widgets"
110
  msgstr ""
111
 
112
- #: ../includes/page.php:156
113
  msgctxt "heading"
114
  msgid "Import Results"
115
  msgstr ""
116
 
117
- #: ../includes/page.php:163
118
- #, php-format
119
- msgid ""
120
- "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go "
121
- "Back</a>."
122
- msgstr ""
123
-
124
- #: ../includes/page.php:254
125
- msgid "WP Ultimate Logo"
126
- msgstr ""
127
-
128
- #: ../includes/page.php:261
129
- msgid ""
130
- "<b>Keep it Free</b> - There are costs to cover with 1,000,000+ downloads and "
131
- "free support. Keep this plugin going by trying our WordPress hosting."
132
- msgstr ""
133
-
134
- #: ../includes/page.php:277
135
- #, php-format
136
- msgid ""
137
- "<a href=\"%1$s\" target=\"_blank\">Host with WP Ultimate</a> - Free trial. "
138
- "We'll move your site for free to make it easy."
139
- msgstr ""
140
-
141
- #: ../includes/page.php:296
142
- #, php-format
143
- msgid ""
144
- "<a href=\"%1$s\" target=\"_blank\">Add Your Review</a> - Share your "
145
- "experience with other users."
146
- msgstr ""
147
-
148
- #: ../includes/page.php:315
149
  #, php-format
150
  msgid ""
151
- "<a href=\"%1$s\" target=\"_blank\">Get Support</a> - Need help? Post a "
152
- "question on the support forum."
153
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Widget Importer & Exporter\n"
5
+ "POT-Creation-Date: 2018-01-19 14:03-0600\n"
6
  "PO-Revision-Date: 2015-02-23 09:31-0600\n"
7
+ "Last-Translator: churchthemes.com\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.0.4\n"
14
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_nx:1,2;_x:1,2c;_ex:1,2c;esc_attr__;"
15
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
16
  "_nx_noop:1,2,3c\n"
59
  msgid "No Title"
60
  msgstr ""
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  #: ../includes/page.php:27 ../includes/page.php:28 ../includes/page.php:48
63
  msgid "Widget Importer & Exporter"
64
  msgstr ""
65
 
66
+ #: ../includes/page.php:64
67
  msgctxt "heading"
68
  msgid "Import Widgets"
69
  msgstr ""
70
 
71
+ #: ../includes/page.php:71
72
  msgid "Please select a <b>.wie</b> file generated by this plugin."
73
  msgstr ""
74
 
75
+ #: ../includes/page.php:84
76
  msgctxt "button"
77
  msgid "Import Widgets"
78
  msgstr ""
79
 
80
+ #: ../includes/page.php:94
81
  msgctxt "heading"
82
  msgid "Export Widgets"
83
  msgstr ""
84
 
85
+ #: ../includes/page.php:99
86
  msgid "Click below to generate a <b>.wie</b> file for all active widgets."
87
  msgstr ""
88
 
89
+ #: ../includes/page.php:110
90
  msgctxt "button"
91
  msgid "Export Widgets"
92
  msgstr ""
93
 
94
+ #: ../includes/page.php:154
95
  msgctxt "heading"
96
  msgid "Import Results"
97
  msgstr ""
98
 
99
+ #: ../includes/page.php:161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  #, php-format
101
  msgid ""
102
+ "You can manage your <a href=\"%1$s\">Widgets</a> or <a href=\"%2$s\">Go Back</"
103
+ "a>."
104
  msgstr ""
readme.txt CHANGED
@@ -1,9 +1,10 @@
1
  === Widget Importer & Exporter ===
2
- Contributors: wpultimate, churchthemes, stevengliebe, mauryaratan, wido
3
  Tags: widgets, widget, importer, exporter, import, export, widget import, widget export, widget importer, widget exporter, backup, migration
4
  Requires at least: 3.5
5
- Tested up to: 4.9
6
- Stable tag: 1.5.2
 
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -11,7 +12,7 @@ Import and export your widgets.
11
 
12
  == Description ==
13
 
14
- Widget Importer & Exporter is useful for moving widgets from one WordPress site to another, backing up widgets and for theme developers to provide users with sample widgets. See the [details](https://wpultimate.com/widget-importer-exporter) on WP Ultimate.
15
 
16
  = Importing =
17
 
@@ -43,13 +44,13 @@ The following translations are available.
43
 
44
  The ``wie_before_import`` action fires after a file is uploaded but before the data is imported. ``wie_after_import`` fires after the data is imported. The ``wie_import_data`` filter can be used to filter data before it is imported. Other filters are used throughout. Submit an issue on GitHub if you need more hooks (pull requests encouraged).
45
 
46
- Please jump on [GitHub](https://github.com/stevengliebe/widget-importer-exporter) to report issues and follow development.
47
 
48
  = Follow us =
49
 
50
- * Visit [WP Ultimate](https://wpultimate.com)
51
- * We're on [Twitter](https://twitter.com/WPUltimateHQ), [Facebook](https://www.facebook.com/wpultimate) and have a [Newsletter](http://wpultimate.us5.list-manage.com/subscribe?u=a0fec2c146a67b2dc509154d1&id=47f3733a8e)
52
- * Lead developer: [stevengliebe.com](http://stevengliebe.com)
53
 
54
  == Installation ==
55
 
@@ -70,4 +71,4 @@ The export file contains JSON data that is not compatible with any other plugin.
70
 
71
  == Changelog ==
72
 
73
- See [releases](https://github.com/stevengliebe/widget-importer-exporter/releases) on GitHub.
1
  === Widget Importer & Exporter ===
2
+ Contributors: churchthemes, stevengliebe, mauryaratan, wido
3
  Tags: widgets, widget, importer, exporter, import, export, widget import, widget export, widget importer, widget exporter, backup, migration
4
  Requires at least: 3.5
5
+ Tested up to: 4.9.2
6
+ Requires PHP: 5.2.4
7
+ Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ Widget Importer & Exporter is useful for moving widgets from one WordPress site to another, backing up widgets and for theme developers to give users sample widgets. See the [details](https://churchthemes.com/plugins/widget-importer-exporter/) on churchthemes.com.
16
 
17
  = Importing =
18
 
44
 
45
  The ``wie_before_import`` action fires after a file is uploaded but before the data is imported. ``wie_after_import`` fires after the data is imported. The ``wie_import_data`` filter can be used to filter data before it is imported. Other filters are used throughout. Submit an issue on GitHub if you need more hooks (pull requests encouraged).
46
 
47
+ Please jump on [GitHub](https://github.com/churchthemes/widget-importer-exporter) to report issues and follow development.
48
 
49
  = Follow us =
50
 
51
+ * Visit [churchthemes.com](https://churchthemes.com)
52
+ * We're on [Twitter](https://twitter.com/churchthemes), [Facebook](https://www.facebook.com/churchthemescom) and have a [Newsletter](http://churchthemes.us5.list-manage.com/subscribe?u=a0fec2c146a67b2dc509154d1&id=8e1ec0c774)
53
+ * Developer: [stevengliebe.com](http://stevengliebe.com)
54
 
55
  == Installation ==
56
 
71
 
72
  == Changelog ==
73
 
74
+ See [releases](https://github.com/churchthemes/widget-importer-exporter/releases) on GitHub.
widget-importer-exporter.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
  /**
3
  * Plugin Name: Widget Importer & Exporter
4
- * Plugin URI: https://wpultimate.com/widget-importer-exporter
5
  * Description: Imports and exports widgets.
6
- * Version: 1.5.2
7
- * Author: WP Ultimate
8
- * Author URI: https://wpultimate.com
9
  * License: GPLv2 or later
10
  * Text Domain: widget-importer-exporter
11
  * Domain Path: /languages
12
  *
13
  * @package Widget_Importer_Exporter
14
- * @copyright Copyright (c) 2013 - 2017, WP Ultimate
15
- * @link https://wpultimate.com/widget-importer-exporter
16
  * @license GPLv2 or later
17
  */
18
 
1
  <?php
2
  /**
3
  * Plugin Name: Widget Importer & Exporter
4
+ * Plugin URI: https://churchthemes.com/plugins/widget-importer-exporter/
5
  * Description: Imports and exports widgets.
6
+ * Version: 1.5.3
7
+ * Author: churchthemes.com
8
+ * Author URI: https://churchthemes.com
9
  * License: GPLv2 or later
10
  * Text Domain: widget-importer-exporter
11
  * Domain Path: /languages
12
  *
13
  * @package Widget_Importer_Exporter
14
+ * @copyright Copyright (c) 2013 - 2017, churchthemes.com
15
+ * @link https://churchthemes.com/plugins/widget-importer-exporter/
16
  * @license GPLv2 or later
17
  */
18