Enhanced Media Library - Version 2.4

Version Description

Release Date - January 13, 2017

Download this release

Release Info

Developer webbistro
Plugin Icon 128x128 Enhanced Media Library
Version 2.4
Comparing to
See all releases

Code changes from version 2.3.6 to 2.4

core/taxonomies.php CHANGED
@@ -1260,4 +1260,95 @@ if ( ! function_exists('wpuxss_eml_pre_get_posts') ) {
1260
  }
1261
  }
1262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
  ?>
1260
  }
1261
  }
1262
 
1263
+
1264
+
1265
+ /**
1266
+ * wpuxss_eml_print_media_templates
1267
+ *
1268
+ * @since 2.4
1269
+ * @created 07/01/17
1270
+ */
1271
+
1272
+ add_action( 'print_media_templates', 'wpuxss_eml_print_media_templates' );
1273
+
1274
+ if ( ! function_exists( 'wpuxss_eml_print_media_templates' ) ) {
1275
+
1276
+ function wpuxss_eml_print_media_templates() {
1277
+
1278
+ global $wp_version;
1279
+
1280
+
1281
+ if ( version_compare( $wp_version, '4.3', '<' ) ) {
1282
+
1283
+ $remove_button = '<a class="close media-modal-icon" href="#" title="' . esc_attr__('Remove') . '"></a>';
1284
+
1285
+ $deselect_button = '<a class="check" href="#" title="' . esc_attr__('Deselect') . '" tabindex="-1"><div class="media-modal-icon"></div></a>';
1286
+
1287
+ }
1288
+ else {
1289
+
1290
+ $remove_button = '<button type="button" class="button-link attachment-close media-modal-icon"><span class="screen-reader-text">' . __( 'Remove' ) . '</span></button>';
1291
+
1292
+ $deselect_button = '<button type="button" class="button-link check" tabindex="-1"><span class="media-modal-icon"></span><span class="screen-reader-text">' . __( 'Deselect' ) . '</span></button>';
1293
+
1294
+ } ?>
1295
+
1296
+
1297
+ <script type="text/html" id="tmpl-attachment-grid-view">
1298
+
1299
+ <div class="attachment-preview js--select-attachment type-{{ data.type }} subtype-{{ data.subtype }} {{ data.orientation }}">
1300
+ <div class="eml-attacment-inline-toolbar">
1301
+ <# if ( data.can.save && data.buttons.edit ) { #>
1302
+ <i class="eml-icon dashicons dashicons-edit edit" data-name="edit"></i>
1303
+ <# } #>
1304
+ </div>
1305
+ <div class="thumbnail">
1306
+ <# if ( data.uploading ) { #>
1307
+ <div class="media-progress-bar"><div style="width: {{ data.percent }}%"></div></div>
1308
+ <# } else if ( 'image' === data.type && data.sizes ) { #>
1309
+ <div class="centered">
1310
+ <img src="{{ data.size.url }}" draggable="false" alt="" />
1311
+ </div>
1312
+ <# } else { #>
1313
+ <div class="centered">
1314
+ <# if ( data.image && data.image.src && data.image.src !== data.icon ) { #>
1315
+ <img src="{{ data.image.src }}" class="thumbnail" draggable="false" />
1316
+ <# } else { #>
1317
+ <img src="{{ data.icon }}" class="icon" draggable="false" />
1318
+ <# } #>
1319
+ </div>
1320
+ <div class="filename">
1321
+ <div>{{ data.filename }}</div>
1322
+ </div>
1323
+ <# } #>
1324
+ </div>
1325
+ <# if ( data.buttons.close ) { #>
1326
+ <?php echo $remove_button; ?>
1327
+ <# } #>
1328
+ </div>
1329
+ <# if ( data.buttons.check ) { #>
1330
+ <?php echo $deselect_button; ?>
1331
+ <# } #>
1332
+ <#
1333
+ var maybeReadOnly = data.can.save || data.allowLocalEdits ? '' : 'readonly';
1334
+ if ( data.describe ) {
1335
+ if ( 'image' === data.type ) { #>
1336
+ <input type="text" value="{{ data.caption }}" class="describe" data-setting="caption"
1337
+ placeholder="<?php esc_attr_e('Caption this image&hellip;'); ?>" {{ maybeReadOnly }} />
1338
+ <# } else { #>
1339
+ <input type="text" value="{{ data.title }}" class="describe" data-setting="title"
1340
+ <# if ( 'video' === data.type ) { #>
1341
+ placeholder="<?php esc_attr_e('Describe this video&hellip;'); ?>"
1342
+ <# } else if ( 'audio' === data.type ) { #>
1343
+ placeholder="<?php esc_attr_e('Describe this audio file&hellip;'); ?>"
1344
+ <# } else { #>
1345
+ placeholder="<?php esc_attr_e('Describe this media file&hellip;'); ?>"
1346
+ <# } #> {{ maybeReadOnly }} />
1347
+ <# }
1348
+ } #>
1349
+ </script>
1350
+
1351
+ <?php }
1352
+ }
1353
+
1354
  ?>
css/eml-admin-rtl.css ADDED
@@ -0,0 +1,639 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ /* == Attachment Fields == */
3
+
4
+ body.eml-media-css .term-list {
5
+ background-color: #fff;
6
+ border: 1px solid #dfdfdf;
7
+ border-radius: 3px;
8
+ padding: 10px 10px 5px;
9
+ margin: 0 0 10px;
10
+ }
11
+ body.eml-media-css .term-list li {
12
+ line-height: 22px;
13
+ }
14
+ body.eml-media-css .term-list li input[type="checkbox"] {
15
+ margin: -4px 0 0 10px !important;
16
+ }
17
+ body.eml-media-css .term-list li input[type=checkbox]:indeterminate:before {
18
+ float: right;
19
+ display: inline-block;
20
+ vertical-align: middle;
21
+ width: 16px;
22
+ font: normal 21px/1 'dashicons';
23
+ speak: none;
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+
27
+ content: '\f147';
28
+ margin: -3px -4px 0 0;
29
+ color: #CBCBCB;
30
+ }
31
+
32
+ body.eml-media-css .compat-item .eml-tax-label {
33
+ width: 100%;
34
+ float: none;
35
+ text-align: right;
36
+ }
37
+ body.eml-media-css .compat-item .eml-tax-label span {
38
+ text-align: right;
39
+ }
40
+ body.eml-media-css .compat-item .eml-tax-field {
41
+ width: 100%;
42
+ float: none;
43
+ }
44
+
45
+
46
+
47
+
48
+ /* == Grid Mode == */
49
+
50
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar-secondary {
51
+ max-width: none;
52
+ }
53
+
54
+ .media-frame.mode-eml-grid .media-toolbar select {
55
+ margin: 8px 0 8px 10px;
56
+ }
57
+
58
+ .media-frame.mode-eml-grid.mode-edit .media-toolbar-secondary .media-button {
59
+ margin: 8px 0 8px 10px;
60
+ vertical-align: middle;
61
+ }
62
+
63
+ .media-frame.mode-eml-grid.mode-edit .media-toolbar-secondary .search {
64
+ margin: 8px 0 8px 0;
65
+ padding: 3px 5px;
66
+ max-width: 100%;
67
+ font-size: 16px;
68
+ font-weight: 300;
69
+ line-height: 1.5;
70
+ vertical-align: middle;
71
+ }
72
+
73
+
74
+
75
+ /* == EML Grid == */
76
+
77
+ body.upload-php.eml-grid #wpfooter {
78
+ display: none;
79
+ }
80
+ body.upload-php.eml-grid #wpbody {
81
+ position: fixed;
82
+ top: 32px;
83
+ bottom: 0;
84
+ right: 165px;
85
+ left: 0;
86
+ height: auto;
87
+ }
88
+ body.upload-php.eml-grid.folded #wpbody {
89
+ right: 40px;
90
+ }
91
+ @media only screen and (max-width: 960px) {
92
+
93
+ body.upload-php.eml-grid.auto-fold #wpbody {
94
+ right: 40px;
95
+ }
96
+ }
97
+ @media only screen and (max-width: 782px) {
98
+
99
+ body.upload-php.eml-grid #wpbody,
100
+ body.upload-php.eml-grid.folded #wpbody,
101
+ body.upload-php.eml-grid.auto-fold #wpbody {
102
+ right: 0;
103
+ top: 46px;
104
+ }
105
+ }
106
+ body.upload-php.eml-grid #wpbody-content {
107
+ padding: 0;
108
+ float: none;
109
+ height: 100%;
110
+ }
111
+ @media only screen and (max-width: 960px) {
112
+
113
+ body.upload-php.eml-grid #wpbody-content {
114
+ float: right;
115
+ }
116
+ }
117
+ body.upload-php.eml-grid #wpbody-content > .wrap {
118
+ position: absolute;
119
+ right: 15px;
120
+ top: 0;
121
+ left: 0;
122
+ bottom: 0;
123
+ }
124
+
125
+
126
+ .media-frame.mode-eml-grid {
127
+ top: 50px;
128
+ z-index: 10;
129
+ }
130
+ .media-frame.mode-eml-grid .media-frame-title,
131
+ .media-frame.mode-eml-grid .media-frame-menu {
132
+ display: none;
133
+ }
134
+ .media-frame.mode-eml-grid .media-frame-content {
135
+ top: 0;
136
+ bottom: 10px;
137
+ border: none;
138
+ background: none;
139
+ overflow: hidden;
140
+ }
141
+ .media-frame.mode-eml-grid .attachments-browser {
142
+ position: absolute;
143
+ right: 0;
144
+ top: 71px;
145
+ left: 0;
146
+ bottom: 0;
147
+ width: auto;
148
+ height: auto;
149
+ border: 1px solid #ddd;
150
+ border-left: 0;
151
+ background: #fff;
152
+ overflow: visible;
153
+ }
154
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar {
155
+ right: -1px;
156
+ }
157
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar.wp-filter select {
158
+ font-size: 14px;
159
+ }
160
+ .media-frame.mode-eml-grid .attachments-browser .attachments,
161
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
162
+ top: 0;
163
+ }
164
+ .media-frame.mode-eml-grid .attachments-browser .attachments {
165
+ padding: 8px;
166
+
167
+ -webkit-transition: all 0.2s;
168
+ -moz-transition: all 0.2s;
169
+ -o-transition: all 0.2s;
170
+ -ms-transition: all 0.2s;
171
+ transition: all 0.2s;
172
+ }
173
+ .media-frame.mode-eml-grid .delete-attachment,
174
+ .media-frame.mode-eml-grid .trash-attachment,
175
+ .media-frame.mode-eml-grid .untrash-attachment {
176
+ color: #bc0b0b;
177
+ }
178
+ .media-frame.mode-eml-grid .delete-attachment:hover,
179
+ .media-frame.mode-eml-grid .delete-attachment:focus,
180
+ .media-frame.mode-eml-grid .trash-attachment:hover,
181
+ .media-frame.mode-eml-grid .trash-attachment:focus,
182
+ .media-frame.mode-eml-grid .untrash-attachment:hover,
183
+ .media-frame.mode-eml-grid .untrash-attachment:focus {
184
+ color: #ff0000;
185
+ }
186
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
187
+ position: absolute;
188
+ top: 10px;
189
+ left: 310px;
190
+ right: 10px;
191
+ bottom: auto;
192
+ padding: 0;
193
+ margin: 0;
194
+ border: 4px dashed #bbb;
195
+ background-color: #fff;
196
+ }
197
+ @media only screen and (max-width: 900px) {
198
+
199
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
200
+ left: 272px;
201
+ }
202
+ }
203
+ @media only screen and (max-width: 640px), screen and (max-height: 400px) {
204
+
205
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
206
+ left: 10px;
207
+ }
208
+ }
209
+ .media-frame.mode-eml-grid .uploader-inline-content {
210
+ position: static;
211
+ margin-top: 30px;
212
+ }
213
+ .media-frame.mode-eml-grid .attachments-browser .no-media {
214
+ text-align: center;
215
+ font-size: 20px;
216
+ line-height: 28px;
217
+ font-weight: 400;
218
+ padding: 40px 0 0;
219
+ margin: 0 0 0 300px;
220
+ color: #777;
221
+ }
222
+
223
+
224
+
225
+ /* == Single Attachment Inline Toolbar == */
226
+
227
+ .eml-attacment-inline-toolbar {
228
+ position: absolute;
229
+ z-index: 10;
230
+ right: 7px;
231
+ top: 7px;
232
+
233
+ -webkit-transition: all 0.2s;
234
+ -moz-transition: all 0.2s;
235
+ -o-transition: all 0.2s;
236
+ -ms-transition: all 0.2s;
237
+ transition: all 0.2s;
238
+
239
+ visibility: hidden;
240
+ opacity: 0;
241
+ }
242
+ .js--select-attachment:hover .eml-attacment-inline-toolbar {
243
+ visibility: visible;
244
+ opacity: 1;
245
+ }
246
+ .eml-attacment-inline-toolbar i {
247
+ margin: 0 0 0 5px;
248
+ padding: 2px;
249
+ width: 24px;
250
+ height: 24px;
251
+ box-shadow: 0 1px 3px rgba(0,0,0,0.5);
252
+ background-color: #000;
253
+ background-color: rgba(0,0,0,0.9);
254
+ cursor: pointer;
255
+ color: white;
256
+ font-size: 24px;
257
+ line-height: 24px;
258
+ }
259
+ .eml-attacment-inline-toolbar i:hover {
260
+ box-shadow: 0 1px 3px rgba(0,0,0,0.8);
261
+ background-color: #000;
262
+ color: #2ea2cc;
263
+ }
264
+
265
+
266
+
267
+
268
+ /* == Media Popup Positions == */
269
+
270
+ body.eml-media-css .attachments-browser .media-toolbar {
271
+ height: auto;
272
+ }
273
+
274
+ body.eml-media-css .attachments-browser .media-toolbar-secondary {
275
+ max-width: none;
276
+ width: auto;
277
+ }
278
+
279
+ body.eml-media-css .media-modal-content .media-frame select.attachment-filters {
280
+ width: auto;
281
+ max-width: calc(48% - 12px);
282
+ margin-left: 10px;
283
+ vertical-align: middle;
284
+ line-height: 28px;
285
+ height: 28px;
286
+ }
287
+
288
+ body.eml-media-css .attachments-browser .media-toolbar-secondary > .media-button {
289
+ margin: 10px 0 0 10px;
290
+ }
291
+
292
+ body.eml-media-css .media-modal-content .attachments-browser .search {
293
+ width: auto;
294
+ vertical-align: middle;
295
+ padding: 6px 8px;
296
+ margin-top: 10px;
297
+ }
298
+
299
+ @media only screen and (max-width: 900px) {
300
+
301
+ body.eml-media-css .media-modal-content .attachments-browser .search {
302
+ float: none;
303
+ }
304
+ }
305
+
306
+
307
+
308
+ /* == Spinners == */
309
+
310
+ body.eml-media-css .media-frame .spinner {
311
+ margin-top: 0;
312
+ }
313
+ .media-frame .attachments-browser .media-toolbar .spinner {
314
+ float: none;
315
+ position: absolute;
316
+ }
317
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar .spinner {
318
+ top: 15px;
319
+ left: 5px;
320
+ }
321
+ .media-modal-content .media-frame .attachments-browser .media-toolbar .spinner {
322
+ left: 10px;
323
+ top: 14px;
324
+ }
325
+
326
+
327
+
328
+ /* == Buttons Styles == */
329
+
330
+ .wpuxss-eml-button-remove {
331
+ display: inline-block;
332
+ text-align: center;
333
+ text-decoration: none;
334
+ line-height: 1em;
335
+ font-size: 18px;
336
+ font-family: Arial, Helvetica, sans-serif;
337
+ height: 20px;
338
+ width: 20px;
339
+ border-radius: 10px;
340
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
341
+ }
342
+ .wpuxss-eml-button-remove:hover {
343
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
344
+ }
345
+ .wpuxss-eml-button-container-right {
346
+ text-align: left;
347
+ margin: 20px 0 0;
348
+ }
349
+
350
+
351
+ #post-query-submit {
352
+ margin: 1px 5px 0 8px;
353
+ }
354
+ #eml-reset-filters-query-submit {
355
+ margin: 1px 0 0 8px;
356
+ }
357
+
358
+
359
+
360
+
361
+ /* == ui-dialog Styles == */
362
+
363
+ .eml-dialog-modal {
364
+ z-index: 300000 !important;
365
+ }
366
+
367
+
368
+
369
+
370
+ /* == Fullscreen Spinner Styles == */
371
+
372
+ .fullscreen-spinner-box {
373
+ background: rgba( 0, 86, 132, 0.9 );
374
+ position: fixed;
375
+ top: 0;
376
+ right: 0;
377
+ width: 100%;
378
+ height: 100%;
379
+ z-index: 300000;
380
+ text-align: center;
381
+ }
382
+ .fullscreen-spinner-inner-box {
383
+ border: 1px dashed #fff;
384
+ position: absolute;
385
+ top: 10px;
386
+ right: 10px;
387
+ left: 10px;
388
+ bottom: 10px;
389
+ }
390
+ .fullscreen-spinner-box .eml-spinner {
391
+ position: absolute;
392
+ top: 50%;
393
+ right: 0;
394
+
395
+ background: url(../images/spinner.gif) no-repeat center bottom;
396
+ width: 100%;
397
+ height: 120px;
398
+ margin: -60px 0 0 0;
399
+ text-align: center;
400
+ color: #fff;
401
+ font-size: 3em;
402
+ line-height: 1.3;
403
+ font-weight: bold;
404
+ }
405
+
406
+
407
+
408
+
409
+ /* == Option Page Generic Styles == */
410
+
411
+ #toplevel_page_media-library .wp-menu-image {
412
+ background-position: -119px -33px !important;
413
+ }
414
+
415
+ #wpuxss-eml-global-options-wrap .postbox {
416
+ background-image:none !important;
417
+ position: relative;
418
+ }
419
+ #wpuxss-eml-global-options-wrap .postbox ul {
420
+ margin-bottom: 25px;
421
+ }
422
+ #wpuxss-eml-global-options-wrap #poststuff .inside {
423
+ margin: 20px 0 0;
424
+ }
425
+
426
+ #wpuxss-eml-global-options-wrap .postbox#wpuxss-credits {
427
+ background-color: #fff !important;
428
+ }
429
+ #wpuxss-credits .author {
430
+ font-style: italic;
431
+ margin: 30px 0 0;
432
+ padding: 10px 0 5px;
433
+ border-top: 1px solid #e0e5e9;
434
+ }
435
+ #wpuxss-credits .logo-webbistro {
436
+ font-style: italic;
437
+ text-decoration: none;
438
+ }
439
+ #wpuxss-credits .icon-webbistro {
440
+ font-family: 'webbistro';
441
+ speak: none;
442
+ font-style: normal;
443
+ font-weight: normal;
444
+ font-variant: normal;
445
+ text-transform: none;
446
+ line-height: 1;
447
+ -webkit-font-smoothing: antialiased;
448
+ }
449
+ #wpuxss-credits h4 {
450
+ margin: 20px 0 4px;
451
+ }
452
+ #wpuxss-credits p,
453
+ #wpuxss-credits ul {
454
+ margin-top: 0;
455
+ }
456
+ #wpuxss-credits li {
457
+ list-style: disc;
458
+ margin-right: 1.4em;
459
+ }
460
+
461
+ @font-face {
462
+ font-family: 'webbistro';
463
+ src:url('../fonts/webbistro.eot');
464
+ src:url('../fonts/webbistro.eot?#iefix') format('embedded-opentype'),
465
+ url('../fonts/webbistro.woff') format('woff'),
466
+ url('../fonts/webbistro.ttf') format('truetype'),
467
+ url('../fonts/webbistro.svg#webbistro') format('svg');
468
+ font-weight: normal;
469
+ font-style: normal;
470
+ }
471
+
472
+ @media print,
473
+ (-webkit-min-device-pixel-ratio: 1.25),
474
+ (min-resolution: 120dpi) {
475
+
476
+ .fullscreen-spinner-box .eml-spinner {
477
+ background-image: url(../images/spinner-2x.gif);
478
+ }
479
+ }
480
+
481
+
482
+
483
+
484
+ /* == MIME types Option Page Styles == */
485
+
486
+ .wpuxss-eml-mime-type-list {
487
+ table-layout: fixed;
488
+ }
489
+ .wpuxss-eml-mime-type-list td {
490
+ padding: 8px 7px;
491
+ }
492
+ .wpuxss-eml-mime-type-list .checkbox_td {
493
+ text-align: center;
494
+ }
495
+ .wpuxss-eml-mime-type-list input[type="text"] {
496
+ width: 120px;
497
+ }
498
+ .wpuxss-eml-column-extension {
499
+ width: 130px;
500
+ }
501
+ .wpuxss-eml-column-singular,
502
+ .wpuxss-eml-column-plural {
503
+ width:120px;
504
+ }
505
+ .wpuxss-eml-column-filter {
506
+ width: 70px;
507
+ }
508
+ .wpuxss-eml-column-upload {
509
+ width: 90px;
510
+ }
511
+ .wpuxss-eml-column-delete {
512
+ width: 30px;
513
+ }
514
+ #eml-restore-mime-types-settings {
515
+ margin-right: 20px;
516
+ }
517
+
518
+
519
+
520
+
521
+ /* == Plugin Options Page Styles == */
522
+
523
+ .wp-core-ui #eml-settings-cleanup,
524
+ .wp-core-ui .button-primary.eml-warning-button {
525
+ background: #d54e21;
526
+ border-color: #EC5F30 #940B0B #940B0B;
527
+ -webkit-box-shadow: 0 1px 0 #940B0B;
528
+ box-shadow: 0 1px 0 #940B0B;
529
+ color: #fff;
530
+ text-decoration: none;
531
+ text-shadow: 0 -1px 1px #940B0B, -1px 0 1px #940B0B, 0 1px 1px #940B0B, 1px 0 1px #940B0B;
532
+ }
533
+ .wp-core-ui #eml-settings-cleanup:hover,
534
+ .wp-core-ui .button-primary.eml-warning-button:hover {
535
+ background: #E45728;
536
+ border-color: #940B0B;
537
+ color: #fff;
538
+ }
539
+ .wp-core-ui #eml-settings-cleanup:active,
540
+ .wp-core-ui .button-primary.eml-warning-button:active {
541
+ background: #D54E21;
542
+ border-color: #940B0B;
543
+ -webkit-box-shadow: inset 0 2px 0 #940B0B;
544
+ box-shadow: inset 0 2px 0 #940B0B;
545
+ color: #fff;
546
+ }
547
+ .wp-core-ui #eml-settings-cleanup:focus,
548
+ .wp-core-ui .button-primary.eml-warning-button:focus {
549
+ -webkit-box-shadow: 0 1px 0 #D54E21, 0 0 2px 1px #F17349;
550
+ box-shadow: 0 1px 0 #D54E21, 0 0 2px 1px #F17349;
551
+ }
552
+
553
+
554
+
555
+
556
+ /* == Taxonomies Option Page Styles == */
557
+
558
+ .wpuxss-eml-settings-list {
559
+ border-top: 1px solid #dfdfdf;
560
+ }
561
+ .wpuxss-eml-settings-list > li {
562
+ border-bottom: 1px solid #dfdfdf;
563
+ padding: 8px 7px;
564
+ margin: 0;
565
+ position: relative;
566
+ overflow: hidden;
567
+ }
568
+ .wpuxss-eml-settings-list > li > label {
569
+ font-size: 14px;
570
+ display: inline-block;
571
+ margin-left: 100px;
572
+ margin-right: 0;
573
+ }
574
+ .wpuxss-eml-settings-list input {
575
+ margin: 0;
576
+ }
577
+ .wpuxss-eml-settings-list > li .wpuxss-eml-button-edit {
578
+ position: absolute;
579
+ right: auto;
580
+ left: 40px;
581
+ top: 7px;
582
+ text-decoration: none;
583
+ height: 14px;
584
+ line-height: 14px;
585
+ border-radius: 10px;
586
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
587
+ padding: 3px 10px;
588
+ }
589
+ .wpuxss-eml-settings-list.wpuxss-eml-non-media-taxonomy-list > li .wpuxss-eml-button-edit {
590
+ left: 10px;
591
+ }
592
+ .wpuxss-eml-settings-list > li .wpuxss-eml-button-remove {
593
+ position: absolute;
594
+ right: auto;
595
+ left: 10px;
596
+ top: 7px;
597
+ }
598
+ .wpuxss-eml-settings-list .wpuxss-eml-assigned {
599
+ margin: 0 0 0 10px;
600
+ }
601
+
602
+ .wpuxss-eml-taxonomy-edit label {
603
+ display: inline-block;
604
+ width: 210px;
605
+ }
606
+ .wpuxss-eml-non-media-taxonomy-list .wpuxss-eml-taxonomy-edit label {
607
+ width: auto;
608
+ margin-right: 10px;
609
+ }
610
+ .wpuxss-eml-taxonomy-edit .wpuxss-eml-labels-edit {
611
+ float: right;
612
+ width: 48%;
613
+ margin-left: 1%;
614
+ }
615
+ .wpuxss-eml-taxonomy-edit .wpuxss-eml-settings-edit {
616
+ float: right;
617
+ width: 50%;
618
+ margin-right: 1%;
619
+ }
620
+ .wpuxss-eml-taxonomy-edit .wpuxss-eml-settings-edit li {
621
+ padding: 3px 0;
622
+ }
623
+ .wpuxss-eml-taxonomy-edit .wpuxss-eml-labels-edit label {
624
+ width: 100px;
625
+ }
626
+ .wpuxss-eml-taxonomy-edit input[type="text"] {
627
+ min-width: 150px;
628
+ }
629
+ .wpuxss-eml-taxonomy-edit .wpuxss-eml-settings-edit input[type="text"] {
630
+ width: 50%;
631
+ }
632
+ .wpuxss-eml-taxonomy-edit .wpuxss-eml-labels-edit input[type="text"] {
633
+ width: 70%;
634
+ }
635
+
636
+ #wpuxss-eml-global-options-wrap #poststuff h2 {
637
+ font-size: 23px;
638
+ font-weight: 400;
639
+ }
css/eml-admin.css CHANGED
@@ -12,7 +12,7 @@ body.eml-media-css .term-list li {
12
  line-height: 22px;
13
  }
14
  body.eml-media-css .term-list li input[type="checkbox"] {
15
- margin: -4px 4px 0 0 !important;
16
  }
17
  body.eml-media-css .term-list li input[type=checkbox]:indeterminate:before {
18
  float: left;
@@ -28,9 +28,6 @@ body.eml-media-css .term-list li input[type=checkbox]:indeterminate:before {
28
  margin: -3px 0 0 -4px;
29
  color: #CBCBCB;
30
  }
31
- body.eml-media-css .term-list .children {
32
- margin: 5px 0 0 20px;
33
- }
34
 
35
  body.eml-media-css .compat-item .eml-tax-label {
36
  width: 100%;
@@ -50,26 +47,219 @@ body.eml-media-css .compat-item .eml-tax-field {
50
 
51
  /* == Grid Mode == */
52
 
53
- .media-frame.mode-grid .attachments-browser .media-toolbar-secondary,
54
  .media-frame.mode-eml-grid .attachments-browser .media-toolbar-secondary {
55
  max-width: none;
56
  }
57
 
58
- .media-frame.mode-grid .media-toolbar select,
59
  .media-frame.mode-eml-grid .media-toolbar select {
60
  margin: 8px 10px 8px 0;
61
  }
62
 
63
- .media-frame.mode-grid.mode-edit .media-toolbar-secondary > #reset-all-filters,
64
- .media-frame.mode-eml-grid.mode-edit .media-toolbar-secondary > #reset-all-filters {
65
  margin: 8px 10px 8px 0;
66
  vertical-align: middle;
67
  }
68
 
69
- .media-frame.mode-grid .spinner,
70
- .media-frame.mode-eml-grid .spinner {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  float: none;
72
- margin-top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  }
74
 
75
 
@@ -83,24 +273,57 @@ body.eml-media-css .attachments-browser .media-toolbar {
83
 
84
  body.eml-media-css .attachments-browser .media-toolbar-secondary {
85
  max-width: none;
 
86
  }
87
 
88
  body.eml-media-css .media-modal-content .media-frame select.attachment-filters {
89
  width: auto;
90
  max-width: calc(48% - 12px);
91
  margin-right: 10px;
 
 
 
92
  }
93
 
94
  body.eml-media-css .attachments-browser .media-toolbar-secondary > .media-button {
95
  margin: 10px 10px 0 0;
96
  }
97
 
98
- body.eml-media-css .media-frame .spinner {
 
 
 
 
 
 
 
 
 
99
  float: none;
 
100
  }
101
 
102
 
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
 
105
  /* == Buttons Styles == */
106
 
@@ -123,9 +346,7 @@ body.eml-media-css .media-frame .spinner {
123
  text-align: right;
124
  margin: 20px 0 0;
125
  }
126
- body.rtl .wpuxss-eml-button-container-right {
127
- text-align: left;
128
- }
129
 
130
  #post-query-submit {
131
  margin: 1px 8px 0 5px;
@@ -350,10 +571,6 @@ body.rtl .wpuxss-eml-button-container-right {
350
  margin-right: 100px;
351
  margin-left: 0;
352
  }
353
- body.rtl .wpuxss-eml-settings-list > li > label {
354
- margin-left: 100px;
355
- margin-right: 0;
356
- }
357
  .wpuxss-eml-settings-list input {
358
  margin: 0;
359
  }
@@ -369,10 +586,6 @@ body.rtl .wpuxss-eml-settings-list > li > label {
369
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
370
  padding: 3px 10px;
371
  }
372
- body.rtl .wpuxss-eml-settings-list > li .wpuxss-eml-button-edit {
373
- left: 40px;
374
- right: auto;
375
- }
376
  .wpuxss-eml-settings-list.wpuxss-eml-non-media-taxonomy-list > li .wpuxss-eml-button-edit {
377
  right: 10px;
378
  }
@@ -382,16 +595,9 @@ body.rtl .wpuxss-eml-settings-list > li .wpuxss-eml-button-edit {
382
  right: 10px;
383
  top: 7px;
384
  }
385
- body.rtl .wpuxss-eml-settings-list > li .wpuxss-eml-button-remove {
386
- left: 10px;
387
- right: auto;
388
- }
389
  .wpuxss-eml-settings-list .wpuxss-eml-assigned {
390
  margin: 0 10px 0 0;
391
  }
392
- body.rtl .wpuxss-eml-settings-list .wpuxss-eml-assigned {
393
- margin: 0 0 0 10px;
394
- }
395
 
396
  .wpuxss-eml-taxonomy-edit label {
397
  display: inline-block;
@@ -401,10 +607,6 @@ body.rtl .wpuxss-eml-settings-list .wpuxss-eml-assigned {
401
  width: auto;
402
  margin-left: 10px;
403
  }
404
- body.rtl .wpuxss-eml-non-media-taxonomy-list .wpuxss-eml-taxonomy-edit label {
405
- margin-right: 10px;
406
- margin-left: 0;
407
- }
408
  .wpuxss-eml-taxonomy-edit .wpuxss-eml-labels-edit {
409
  float: left;
410
  width: 48%;
12
  line-height: 22px;
13
  }
14
  body.eml-media-css .term-list li input[type="checkbox"] {
15
+ margin: -4px 10px 0 0 !important;
16
  }
17
  body.eml-media-css .term-list li input[type=checkbox]:indeterminate:before {
18
  float: left;
28
  margin: -3px 0 0 -4px;
29
  color: #CBCBCB;
30
  }
 
 
 
31
 
32
  body.eml-media-css .compat-item .eml-tax-label {
33
  width: 100%;
47
 
48
  /* == Grid Mode == */
49
 
 
50
  .media-frame.mode-eml-grid .attachments-browser .media-toolbar-secondary {
51
  max-width: none;
52
  }
53
 
 
54
  .media-frame.mode-eml-grid .media-toolbar select {
55
  margin: 8px 10px 8px 0;
56
  }
57
 
58
+ .media-frame.mode-eml-grid.mode-edit .media-toolbar-secondary .media-button {
 
59
  margin: 8px 10px 8px 0;
60
  vertical-align: middle;
61
  }
62
 
63
+ .media-frame.mode-eml-grid.mode-edit .media-toolbar-secondary .search {
64
+ margin: 8px 0 8px 0;
65
+ padding: 3px 5px;
66
+ max-width: 100%;
67
+ font-size: 16px;
68
+ font-weight: 300;
69
+ line-height: 1.5;
70
+ vertical-align: middle;
71
+ }
72
+
73
+
74
+
75
+ /* == EML Grid == */
76
+
77
+ body.upload-php.eml-grid #wpfooter {
78
+ display: none;
79
+ }
80
+ body.upload-php.eml-grid #wpbody {
81
+ position: fixed;
82
+ top: 32px;
83
+ bottom: 0;
84
+ left: 165px;
85
+ right: 0;
86
+ height: auto;
87
+ }
88
+ body.upload-php.eml-grid.folded #wpbody {
89
+ left: 40px;
90
+ }
91
+ @media only screen and (max-width: 960px) {
92
+
93
+ body.upload-php.eml-grid.auto-fold #wpbody {
94
+ left: 40px;
95
+ }
96
+ }
97
+ @media only screen and (max-width: 782px) {
98
+
99
+ body.upload-php.eml-grid #wpbody,
100
+ body.upload-php.eml-grid.folded #wpbody,
101
+ body.upload-php.eml-grid.auto-fold #wpbody {
102
+ left: 0;
103
+ top: 46px;
104
+ }
105
+ }
106
+ body.upload-php.eml-grid #wpbody-content {
107
+ padding: 0;
108
  float: none;
109
+ height: 100%;
110
+ }
111
+ @media only screen and (max-width: 960px) {
112
+
113
+ body.upload-php.eml-grid #wpbody-content {
114
+ float: left;
115
+ }
116
+ }
117
+ body.upload-php.eml-grid #wpbody-content > .wrap {
118
+ position: absolute;
119
+ left: 15px;
120
+ top: 0;
121
+ right: 0;
122
+ bottom: 0;
123
+ }
124
+
125
+
126
+ .media-frame.mode-eml-grid {
127
+ top: 50px;
128
+ z-index: 10;
129
+ }
130
+ .media-frame.mode-eml-grid .media-frame-title,
131
+ .media-frame.mode-eml-grid .media-frame-menu {
132
+ display: none;
133
+ }
134
+ .media-frame.mode-eml-grid .media-frame-content {
135
+ top: 0;
136
+ bottom: 10px;
137
+ border: none;
138
+ background: none;
139
+ overflow: hidden;
140
+ }
141
+ .media-frame.mode-eml-grid .attachments-browser {
142
+ position: absolute;
143
+ left: 0;
144
+ top: 71px;
145
+ right: 0;
146
+ bottom: 0;
147
+ width: auto;
148
+ height: auto;
149
+ border: 1px solid #ddd;
150
+ border-right: 0;
151
+ background: #fff;
152
+ overflow: visible;
153
+ }
154
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar {
155
+ left: -1px;
156
+ }
157
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar.wp-filter select {
158
+ font-size: 14px;
159
+ }
160
+ .media-frame.mode-eml-grid .attachments-browser .attachments,
161
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
162
+ top: 0;
163
+ }
164
+ .media-frame.mode-eml-grid .attachments-browser .attachments {
165
+ padding: 8px;
166
+
167
+ -webkit-transition: all 0.2s;
168
+ -moz-transition: all 0.2s;
169
+ -o-transition: all 0.2s;
170
+ -ms-transition: all 0.2s;
171
+ transition: all 0.2s;
172
+ }
173
+ .media-frame.mode-eml-grid .delete-attachment,
174
+ .media-frame.mode-eml-grid .trash-attachment,
175
+ .media-frame.mode-eml-grid .untrash-attachment {
176
+ color: #bc0b0b;
177
+ }
178
+ .media-frame.mode-eml-grid .delete-attachment:hover,
179
+ .media-frame.mode-eml-grid .delete-attachment:focus,
180
+ .media-frame.mode-eml-grid .trash-attachment:hover,
181
+ .media-frame.mode-eml-grid .trash-attachment:focus,
182
+ .media-frame.mode-eml-grid .untrash-attachment:hover,
183
+ .media-frame.mode-eml-grid .untrash-attachment:focus {
184
+ color: #ff0000;
185
+ }
186
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
187
+ position: absolute;
188
+ top: 10px;
189
+ right: 310px;
190
+ left: 10px;
191
+ bottom: auto;
192
+ padding: 0;
193
+ margin: 0;
194
+ border: 4px dashed #bbb;
195
+ background-color: #fff;
196
+ }
197
+ @media only screen and (max-width: 900px) {
198
+
199
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
200
+ right: 272px;
201
+ }
202
+ }
203
+ @media only screen and (max-width: 640px), screen and (max-height: 400px) {
204
+
205
+ .media-frame.mode-eml-grid .attachments-browser .uploader-inline {
206
+ right: 10px;
207
+ }
208
+ }
209
+ .media-frame.mode-eml-grid .uploader-inline-content {
210
+ position: static;
211
+ margin-top: 30px;
212
+ }
213
+ .media-frame.mode-eml-grid .attachments-browser .no-media {
214
+ text-align: center;
215
+ font-size: 20px;
216
+ line-height: 28px;
217
+ font-weight: 400;
218
+ padding: 40px 0 0;
219
+ margin: 0 300px 0 0;
220
+ color: #777;
221
+ }
222
+
223
+
224
+
225
+ /* == Single Attachment Inline Toolbar == */
226
+
227
+ .eml-attacment-inline-toolbar {
228
+ position: absolute;
229
+ z-index: 10;
230
+ left: 7px;
231
+ top: 7px;
232
+
233
+ -webkit-transition: all 0.2s;
234
+ -moz-transition: all 0.2s;
235
+ -o-transition: all 0.2s;
236
+ -ms-transition: all 0.2s;
237
+ transition: all 0.2s;
238
+
239
+ visibility: hidden;
240
+ opacity: 0;
241
+ }
242
+ .js--select-attachment:hover .eml-attacment-inline-toolbar {
243
+ visibility: visible;
244
+ opacity: 1;
245
+ }
246
+ .eml-attacment-inline-toolbar i {
247
+ margin: 0 5px 0 0;
248
+ padding: 2px;
249
+ width: 24px;
250
+ height: 24px;
251
+ box-shadow: 0 1px 3px rgba(0,0,0,0.5);
252
+ background-color: #000;
253
+ background-color: rgba(0,0,0,0.9);
254
+ cursor: pointer;
255
+ color: white;
256
+ font-size: 24px;
257
+ line-height: 24px;
258
+ }
259
+ .eml-attacment-inline-toolbar i:hover {
260
+ box-shadow: 0 1px 3px rgba(0,0,0,0.8);
261
+ background-color: #000;
262
+ color: #2ea2cc;
263
  }
264
 
265
 
273
 
274
  body.eml-media-css .attachments-browser .media-toolbar-secondary {
275
  max-width: none;
276
+ width: auto;
277
  }
278
 
279
  body.eml-media-css .media-modal-content .media-frame select.attachment-filters {
280
  width: auto;
281
  max-width: calc(48% - 12px);
282
  margin-right: 10px;
283
+ vertical-align: middle;
284
+ line-height: 28px;
285
+ height: 28px;
286
  }
287
 
288
  body.eml-media-css .attachments-browser .media-toolbar-secondary > .media-button {
289
  margin: 10px 10px 0 0;
290
  }
291
 
292
+ body.eml-media-css .media-modal-content .attachments-browser .search {
293
+ width: auto;
294
+ vertical-align: middle;
295
+ padding: 6px 8px;
296
+ margin-top: 10px;
297
+ }
298
+
299
+ @media only screen and (max-width: 900px) {
300
+
301
+ body.eml-media-css .media-modal-content .attachments-browser .search {
302
  float: none;
303
+ }
304
  }
305
 
306
 
307
 
308
+ /* == Spinners == */
309
+
310
+ body.eml-media-css .media-frame .spinner {
311
+ margin-top: 0;
312
+ }
313
+ .media-frame .attachments-browser .media-toolbar .spinner {
314
+ float: none;
315
+ position: absolute;
316
+ }
317
+ .media-frame.mode-eml-grid .attachments-browser .media-toolbar .spinner {
318
+ top: 15px;
319
+ right: 5px;
320
+ }
321
+ .media-modal-content .media-frame .attachments-browser .media-toolbar .spinner {
322
+ right: 10px;
323
+ top: 14px;
324
+ }
325
+
326
+
327
 
328
  /* == Buttons Styles == */
329
 
346
  text-align: right;
347
  margin: 20px 0 0;
348
  }
349
+
 
 
350
 
351
  #post-query-submit {
352
  margin: 1px 8px 0 5px;
571
  margin-right: 100px;
572
  margin-left: 0;
573
  }
 
 
 
 
574
  .wpuxss-eml-settings-list input {
575
  margin: 0;
576
  }
586
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
587
  padding: 3px 10px;
588
  }
 
 
 
 
589
  .wpuxss-eml-settings-list.wpuxss-eml-non-media-taxonomy-list > li .wpuxss-eml-button-edit {
590
  right: 10px;
591
  }
595
  right: 10px;
596
  top: 7px;
597
  }
 
 
 
 
598
  .wpuxss-eml-settings-list .wpuxss-eml-assigned {
599
  margin: 0 10px 0 0;
600
  }
 
 
 
601
 
602
  .wpuxss-eml-taxonomy-edit label {
603
  display: inline-block;
607
  width: auto;
608
  margin-left: 10px;
609
  }
 
 
 
 
610
  .wpuxss-eml-taxonomy-edit .wpuxss-eml-labels-edit {
611
  float: left;
612
  width: 48%;
enhanced-media-library.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wpUXsolutions.com
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
- Version: 2.3.6
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
@@ -27,7 +27,7 @@ global $wp_version,
27
 
28
 
29
 
30
- $wpuxss_eml_version = '2.3.6';
31
 
32
 
33
 
@@ -310,6 +310,7 @@ if ( ! function_exists( 'wpuxss_eml_admin_enqueue_scripts' ) ) {
310
  $wpuxss_eml_version,
311
  'all'
312
  );
 
313
 
314
  wp_enqueue_style ( 'wp-jquery-ui-dialog' );
315
 
@@ -348,6 +349,20 @@ if ( ! function_exists( 'wpuxss_eml_admin_enqueue_scripts' ) ) {
348
  $media_list_l10n
349
  );
350
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
  }
352
  }
353
 
@@ -533,19 +548,6 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
533
  $enhanced_medialist_l10n
534
  );
535
  }
536
-
537
-
538
- // scripts for grid view :: /wp-admin/upload.php
539
- if ( isset( $current_screen ) && 'upload' === $current_screen->base && 'grid' === $media_library_mode ) {
540
-
541
- wp_enqueue_script(
542
- 'wpuxss-eml-media-grid-script',
543
- $wpuxss_eml_dir . 'js/eml-media-grid.js',
544
- array('media'),
545
- $wpuxss_eml_version,
546
- true
547
- );
548
- }
549
  }
550
  }
551
 
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wpUXsolutions.com
5
  Description: This plugin will be handy for those who need to manage a lot of media files.
6
+ Version: 2.4
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
27
 
28
 
29
 
30
+ $wpuxss_eml_version = '2.4';
31
 
32
 
33
 
310
  $wpuxss_eml_version,
311
  'all'
312
  );
313
+ wp_style_add_data( 'wpuxss-eml-admin-custom-style', 'rtl', 'replace' );
314
 
315
  wp_enqueue_style ( 'wp-jquery-ui-dialog' );
316
 
349
  $media_list_l10n
350
  );
351
  }
352
+
353
+
354
+ // scripts for grid view :: /wp-admin/upload.php
355
+ if ( isset( $current_screen ) && 'upload' === $current_screen->base && 'grid' === $media_library_mode ) {
356
+
357
+ wp_dequeue_script( 'media' );
358
+ wp_enqueue_script(
359
+ 'wpuxss-eml-media-grid-script',
360
+ $wpuxss_eml_dir . 'js/eml-media-grid.js',
361
+ array( 'wpuxss-eml-media-models-script', 'wpuxss-eml-media-views-script' ),
362
+ $wpuxss_eml_version,
363
+ true
364
+ );
365
+ }
366
  }
367
  }
368
 
548
  $enhanced_medialist_l10n
549
  );
550
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
551
  }
552
  }
553
 
js/eml-media-grid.js CHANGED
@@ -1,8 +1,253 @@
1
- ( function( $ ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  $( document ).ready( function() {
4
 
5
- $('.media-toolbar.wp-filter .media-grid-view-switch').after( $('.media-toolbar.wp-filter .select-mode-toggle-button') );
 
 
6
  });
7
 
8
- })( jQuery );
 
 
 
 
 
 
 
1
+ window.wp = window.wp || {};
2
+
3
+
4
+
5
+ ( function( $, _ ) {
6
+
7
+ var media = wp.media,
8
+ l10n = media.view.l10n,
9
+ original = {};
10
+
11
+
12
+
13
+
14
+ _.extend( media.view.Attachment.Library.prototype, {
15
+
16
+ buttons: {
17
+ check : true,
18
+ edit : true,
19
+ remove : false, // TODO: consider 'delete' button
20
+ attach : false // TODO: consider 'attach' button
21
+ }
22
+ });
23
+
24
+
25
+
26
+ var newEvents = { 'click .edit': 'emlEditAttachment' };
27
+ _.extend( newEvents, media.view.Attachment.prototype.events);
28
+
29
+ _.extend( media.view.Attachment.prototype, {
30
+
31
+ template: media.template('attachment-grid-view'),
32
+
33
+ events: newEvents,
34
+
35
+ emlEditAttachment: function( event ) {
36
+
37
+ if ( this.controller.isModeActive( 'eml-grid' ) ) {
38
+
39
+ this.controller.trigger( 'edit:attachment', this.model);
40
+
41
+ event.stopPropagation();
42
+ return;
43
+ }
44
+ }
45
+ });
46
+
47
+
48
+
49
+
50
+ _.extend( media.view.Attachment.Details.prototype, {
51
+
52
+ editAttachment: function( event ) {
53
+
54
+ if ( this.controller.isModeActive( 'eml-grid' ) ) {
55
+
56
+ event.preventDefault();
57
+ this.controller.trigger( 'edit:attachment', this.model);
58
+ }
59
+ }
60
+ });
61
+
62
+
63
+
64
+
65
+ media.view.MediaFrame.emlManage = media.view.MediaFrame.Select.extend({
66
+
67
+ initialize: function() {
68
+
69
+ var self = this;
70
+
71
+ _.defaults( this.options, {
72
+ title : '',
73
+ modal : false,
74
+ multiple : 'reset',
75
+ state : 'library',
76
+ mode : [ 'eml-grid', 'edit' ]
77
+ });
78
+
79
+ $( document ).on( 'click', '.page-title-action', _.bind( this.addNewClickHandler, this ) );
80
+
81
+ // Ensure core and media grid view UI is enabled.
82
+ this.$el.addClass('wp-core-ui');
83
+
84
+ this.gridRouter = new media.view.MediaFrame.Manage.Router();
85
+
86
+ // Call 'initialize' directly on the parent class.
87
+ media.view.MediaFrame.Select.prototype.initialize.apply( this, arguments );
88
+
89
+ // Append the frame view directly the supplied container.
90
+ this.$el.appendTo( this.options.container );
91
+
92
+ this.render();
93
+ },
94
+
95
+ createStates: function() {
96
+
97
+ var options = this.options;
98
+
99
+ if ( this.options.states ) {
100
+ return;
101
+ }
102
+
103
+ this.states.add([
104
+
105
+ new media.controller.Library({
106
+ library : media.query( options.library ),
107
+ title : options.title,
108
+ multiple : options.multiple,
109
+
110
+ content : 'browse',
111
+ toolbar : false,
112
+ menu : false,
113
+ router : false,
114
+
115
+ contentUserSetting : true,
116
+
117
+ searchable : true,
118
+ filterable : 'all',
119
+
120
+ autoSelect : true,
121
+ idealColumnWidth : $( window ).width() < 640 ? 135 : 150
122
+ })
123
+ ]);
124
+ },
125
+
126
+ bindHandlers: function() {
127
+
128
+ media.view.MediaFrame.Select.prototype.bindHandlers.apply( this, arguments );
129
+ this.on( 'edit:attachment', this.openEditAttachmentModal, this );
130
+ },
131
+
132
+ addNewClickHandler: function( event ) {
133
+
134
+ event.preventDefault();
135
+ this.trigger( 'toggle:upload:attachment' );
136
+ },
137
+
138
+ browseContent: function( contentRegion ) {
139
+
140
+ var state = this.state();
141
+
142
+ this.$el.removeClass('hide-toolbar');
143
+
144
+ // Browse our library of attachments.
145
+ this.browserView = contentRegion.view = new media.view.AttachmentsBrowser({
146
+ controller: this,
147
+ collection: state.get('library'),
148
+ selection: state.get('selection'),
149
+ model: state,
150
+ sortable: state.get('sortable'),
151
+ search: state.get('searchable'),
152
+ filters: state.get('filterable'),
153
+ date: state.get('date'), // ???
154
+ display: state.has('display') ? state.get('display') : state.get('displaySettings'),
155
+ dragInfo: state.get('dragInfo'),
156
+
157
+ idealColumnWidth: state.get('idealColumnWidth'),
158
+ suggestedWidth: state.get('suggestedWidth'),
159
+ suggestedHeight: state.get('suggestedHeight'),
160
+
161
+ AttachmentView: state.get('AttachmentView')
162
+ });
163
+
164
+ this.browserView.on( 'ready', _.bind( this.bindDeferred, this ) );
165
+ },
166
+
167
+ bindDeferred: function() {
168
+
169
+ if ( ! this.browserView.dfd ) {
170
+ return;
171
+ }
172
+ this.browserView.dfd.done( _.bind( this.startHistory, this ) );
173
+ },
174
+
175
+ startHistory: function() {
176
+
177
+ // Verify pushState support and activate
178
+ if ( window.history && window.history.pushState ) {
179
+ Backbone.history.start( {
180
+ root: _wpMediaGridSettings.adminUrl,
181
+ pushState: true
182
+ } );
183
+ }
184
+ },
185
+
186
+ openEditAttachmentModal: function( model ) {
187
+
188
+ wp.media( {
189
+ frame: 'edit-attachments',
190
+ controller: this,
191
+ library: this.state().get('library'),
192
+ model: model
193
+ } );
194
+ }
195
+ });
196
+
197
+
198
+
199
+
200
+ _.extend( media.view.UploaderInline.prototype, {
201
+
202
+ show: function() {
203
+
204
+ this.$el.removeClass( 'hidden' );
205
+ if ( this.controller.browserView ) {
206
+ this.controller.browserView.attachments.$el.css( 'top', this.$el.outerHeight() + 20 + 'px' );
207
+ }
208
+ },
209
+
210
+ hide: function() {
211
+
212
+ this.$el.addClass( 'hidden' );
213
+ if ( this.controller.browserView ) {
214
+ this.controller.browserView.attachments.$el.css( 'top', 0 );
215
+ }
216
+ }
217
+ });
218
+
219
+
220
+
221
+
222
+ original.controllerLibrary = {
223
+
224
+ beforeUpload: media.controller.Library.prototype.beforeUpload
225
+ };
226
+
227
+ _.extend( media.controller.Library.prototype, {
228
+
229
+ beforeUpload: function() {
230
+
231
+ original.controllerLibrary.beforeUpload.apply( this, arguments );
232
+ this.frame.browserView.uploader.hide();
233
+ }
234
+ });
235
+
236
+
237
+
238
 
239
  $( document ).ready( function() {
240
 
241
+ media.frame = new media.view.MediaFrame.emlManage({
242
+ container: $('#wp-media-grid')
243
+ });
244
  });
245
 
246
+
247
+
248
+
249
+ // TODO: move to PHP side
250
+ $('body').addClass('eml-grid');
251
+
252
+
253
+ })( jQuery, _ );
js/eml-media-views.js CHANGED
@@ -31,7 +31,7 @@ window.eml = window.eml || { l10n: {} };
31
 
32
  wp.Uploader.queue.on( 'add', this.beforeUpload, this );
33
  wp.Uploader.queue.on( 'reset', this.afterUpload, this );
34
- },
35
 
36
  beforeUpload: function() {
37
 
@@ -130,7 +130,8 @@ window.eml = window.eml || { l10n: {} };
130
 
131
 
132
  // TODO: find a better solution
133
- if ( this.controller.isModeActive( 'select' ) && 'edit-attachment' != this.controller.state().get('id') ) {
 
134
 
135
  $.each( eml.l10n.compat_taxonomies_to_hide, function( id, taxonomy ) {
136
  $compat_el.find( '.compat-field-'+taxonomy ).remove();
@@ -182,7 +183,7 @@ window.eml = window.eml || { l10n: {} };
182
  }
183
 
184
 
185
- if ( filter && media.view.settings.mediaTrash ) {
186
  this.controller.toolbar.get().$('.media-selection').toggleClass( 'trash', 'trash' === filter.props.status );
187
  }
188
 
@@ -196,28 +197,28 @@ window.eml = window.eml || { l10n: {} };
196
 
197
  select: function() {
198
 
199
- var model = this.model,
200
- value = 'all',
201
- props = model.toJSON();
202
 
203
 
204
  props = _.omit( props, 'orderby', 'order' );
205
 
206
- _.find( this.filters, function( filter, id ) {
207
 
208
  var filterProps = _.omit( filter.props, 'orderby', 'order' );
209
 
210
- var equal = _.all( filterProps, function( prop, key ) {
211
- return prop === ( _.isUndefined( props[ key ] ) ? null : props[ key ] );
212
- });
213
 
214
- if ( equal ) {
215
- return value = id;
216
- }
217
- });
218
 
219
- this.$el.val( value );
220
- }
221
  });
222
 
223
 
@@ -279,6 +280,24 @@ window.eml = window.eml || { l10n: {} };
279
  _.each( taxonomies, function( taxonomy ) {
280
  uncategorizedProps[taxonomy] = null;
281
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  }
283
  });
284
 
@@ -403,13 +422,13 @@ window.eml = window.eml || { l10n: {} };
403
  click: function( event ) {
404
 
405
  if ( '#' === this.attributes.href ) {
406
- event.preventDefault();
407
- }
408
 
409
  $('.attachment-filters:has(option[value!="all"]:selected)').each( function( index ) {
410
  $(this).val( 'all' ).change();
411
  });
412
- },
413
 
414
  toogleResetFilters: function() {
415
  this.$el.toggleClass( 'hidden' );
@@ -418,6 +437,162 @@ window.eml = window.eml || { l10n: {} };
418
 
419
 
420
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  /**
422
  * wp.media.view.AttachmentsBrowser
423
  *
@@ -483,21 +658,52 @@ window.eml = window.eml || { l10n: {} };
483
 
484
  createToolbar: function() {
485
 
486
- var filters = this.options.filters,
487
  self = this,
488
  i = 1;
489
 
 
 
 
 
 
 
490
 
491
- original.AttachmentsBrowser.createToolbar.apply( this, arguments );
 
 
 
 
 
 
 
 
 
 
 
 
492
 
493
 
494
  if ( -1 !== $.inArray( this.options.filters, [ 'uploaded', 'all' ] ) ||
495
- ( parseInt( eml.l10n.force_filters ) &&
496
- 'gallery-edit' !== this.controller._state &&
497
- 'playlist-edit' !== this.controller._state &&
498
- 'video-playlist-edit' !== this.controller._state ) ||
499
- 'customize' === eml.l10n.current_screen ) {
 
 
 
 
 
 
 
 
500
 
 
 
 
 
 
501
 
502
  this.toolbar.set( 'filtersLabel', new media.view.Label({
503
  value: l10n.filterByType,
@@ -523,8 +729,8 @@ window.eml = window.eml || { l10n: {} };
523
  this.toolbar.set( 'filters', Filters.render() );
524
  }
525
 
526
- if ( eml.l10n.wp_version >= '4.0' )
527
- {
528
  this.toolbar.set( 'dateFilterLabel', new media.view.Label({
529
  value: l10n.filterByDate,
530
  attributes: {
@@ -563,15 +769,250 @@ window.eml = window.eml || { l10n: {} };
563
  }
564
  });
565
 
566
-
567
  this.toolbar.set( 'resetFilterButton', new media.view.Button.resetFilters({
568
  controller: this.controller,
569
  text: eml.l10n.reset_filters,
570
  disabled: true,
571
- priority: -70 + i
572
  }).render() );
573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
  } // endif
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
575
  }
576
  });
577
 
@@ -634,11 +1075,25 @@ window.eml = window.eml || { l10n: {} };
634
  original.MediaFrame.Post.activate.apply( this, arguments );
635
 
636
  this.on( 'open', content.fixLayout, content );
 
637
  }
638
  });
639
 
640
 
641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  // TODO: move to the PHP side
643
  $('body').addClass('eml-media-css');
644
 
31
 
32
  wp.Uploader.queue.on( 'add', this.beforeUpload, this );
33
  wp.Uploader.queue.on( 'reset', this.afterUpload, this );
34
+ },
35
 
36
  beforeUpload: function() {
37
 
130
 
131
 
132
  // TODO: find a better solution
133
+ if ( this.controller.isModeActive( 'select' ) &&
134
+ 'edit-attachment' != this.controller.state().get('id') ) {
135
 
136
  $.each( eml.l10n.compat_taxonomies_to_hide, function( id, taxonomy ) {
137
  $compat_el.find( '.compat-field-'+taxonomy ).remove();
183
  }
184
 
185
 
186
+ if ( filter && media.view.settings.mediaTrash && ! _.isUndefined( this.controller.toolbar ) ) {
187
  this.controller.toolbar.get().$('.media-selection').toggleClass( 'trash', 'trash' === filter.props.status );
188
  }
189
 
197
 
198
  select: function() {
199
 
200
+ var model = this.model,
201
+ value = 'all',
202
+ props = model.toJSON();
203
 
204
 
205
  props = _.omit( props, 'orderby', 'order' );
206
 
207
+ _.find( this.filters, function( filter, id ) {
208
 
209
  var filterProps = _.omit( filter.props, 'orderby', 'order' );
210
 
211
+ var equal = _.all( filterProps, function( prop, key ) {
212
+ return prop === ( _.isUndefined( props[ key ] ) ? null : props[ key ] );
213
+ });
214
 
215
+ if ( equal ) {
216
+ return value = id;
217
+ }
218
+ });
219
 
220
+ this.$el.val( value );
221
+ }
222
  });
223
 
224
 
280
  _.each( taxonomies, function( taxonomy ) {
281
  uncategorizedProps[taxonomy] = null;
282
  });
283
+
284
+
285
+ if ( media.view.settings.mediaTrash &&
286
+ ( this.controller.isModeActive( 'grid' ) ||
287
+ this.controller.isModeActive( 'eml-grid' ) ) ) {
288
+
289
+ this.filters.trash = {
290
+ text: l10n.trash,
291
+ props: {
292
+ uploadedTo : null,
293
+ status : 'trash',
294
+ type : null,
295
+ orderby : 'date',
296
+ order : 'DESC'
297
+ },
298
+ priority: 70
299
+ };
300
+ }
301
  }
302
  });
303
 
422
  click: function( event ) {
423
 
424
  if ( '#' === this.attributes.href ) {
425
+ event.preventDefault();
426
+ }
427
 
428
  $('.attachment-filters:has(option[value!="all"]:selected)').each( function( index ) {
429
  $(this).val( 'all' ).change();
430
  });
431
+ },
432
 
433
  toogleResetFilters: function() {
434
  this.$el.toggleClass( 'hidden' );
437
 
438
 
439
 
440
+ media.view.Button.DeleteSelected = media.view.Button.extend({
441
+
442
+ initialize: function() {
443
+
444
+ media.view.Button.prototype.initialize.apply( this, arguments );
445
+ if ( this.options.filters ) {
446
+ this.options.filters.model.on( 'change', this.filterChange, this );
447
+ }
448
+ this.controller.state().get( 'selection' ).on( 'add remove reset', this.toggleDisabled, this );
449
+ },
450
+
451
+ filterChange: function( model ) {
452
+ if ( 'trash' === model.get( 'status' ) ) {
453
+ this.model.set( 'text', l10n.untrashSelected );
454
+ } else if ( wp.media.view.settings.mediaTrash ) {
455
+ this.model.set( 'text', l10n.trashSelected );
456
+ } else {
457
+ this.model.set( 'text', l10n.deleteSelected );
458
+ }
459
+ },
460
+
461
+ toggleDisabled: function() {
462
+ this.model.set( 'disabled', ! this.controller.state().get( 'selection' ).length );
463
+ },
464
+
465
+ render: function() {
466
+ media.view.Button.prototype.render.apply( this, arguments );
467
+ this.toggleDisabled();
468
+ return this;
469
+ },
470
+
471
+ click: function() {
472
+
473
+ var changed = [], removed = [],
474
+ selection = this.controller.state().get( 'selection' ),
475
+ library = this.controller.state().get( 'library' );
476
+
477
+ if ( ! selection.length ) {
478
+ return;
479
+ }
480
+
481
+ if ( ! media.view.settings.mediaTrash && ! window.confirm( l10n.warnBulkDelete ) ) {
482
+ return;
483
+ }
484
+
485
+ if ( media.view.settings.mediaTrash &&
486
+ 'trash' !== selection.at( 0 ).get( 'status' ) &&
487
+ ! window.confirm( l10n.warnBulkTrash ) ) {
488
+
489
+ return;
490
+ }
491
+
492
+ selection.each( function( model ) {
493
+ if ( ! model.get( 'nonces' )['delete'] ) {
494
+ removed.push( model );
495
+ return;
496
+ }
497
+
498
+ if ( media.view.settings.mediaTrash && 'trash' === model.get( 'status' ) ) {
499
+ model.set( 'status', 'inherit' );
500
+ changed.push( model.save() );
501
+ removed.push( model );
502
+ } else if ( media.view.settings.mediaTrash ) {
503
+ model.set( 'status', 'trash' );
504
+ changed.push( model.save() );
505
+ removed.push( model );
506
+ } else {
507
+ model.destroy({wait: true});
508
+ }
509
+ } );
510
+
511
+ if ( changed.length ) {
512
+ selection.remove( removed );
513
+
514
+ $.when.apply( null, changed ).then( _.bind( function() {
515
+ library._requery( true );
516
+ this.controller.trigger( 'selection:action:done' );
517
+ }, this ) );
518
+ } else {
519
+ this.controller.trigger( 'selection:action:done' );
520
+ }
521
+ }
522
+ });
523
+
524
+
525
+
526
+ media.view.Button.DeleteSelectedPermanently = media.view.Button.DeleteSelected.extend({
527
+
528
+ filterChange: function( model ) {
529
+
530
+ this.canShow = ( 'trash' === model.get( 'status' ) );
531
+ this.$el.toggleClass( 'hidden', ! this.canShow );
532
+ this.controller.browserView.fixLayout();
533
+ },
534
+
535
+ render: function() {
536
+
537
+ media.view.Button.prototype.render.apply( this, arguments );
538
+ this.$el.toggleClass( 'hidden', ! this.canShow );
539
+ return this;
540
+ },
541
+
542
+ click: function() {
543
+
544
+ var removed = [], selection = this.controller.state().get( 'selection' ),
545
+ library = this.controller.state().get( 'library' );
546
+
547
+ if ( ! selection.length || ! window.confirm( l10n.warnBulkDelete ) ) {
548
+ return;
549
+ }
550
+
551
+ selection.each( function( model ) {
552
+
553
+ if ( ! model.get( 'nonces' )['delete'] ) {
554
+ removed.push( model );
555
+ return;
556
+ }
557
+
558
+ model.destroy({wait: true});
559
+ } );
560
+
561
+ this.controller.trigger( 'selection:action:done' );
562
+ }
563
+ });
564
+
565
+
566
+
567
+ media.view.Button.Deselect = media.view.Button.extend({
568
+
569
+ initialize: function() {
570
+
571
+ media.view.Button.prototype.initialize.apply( this, arguments );
572
+ this.controller.state().get( 'selection' ).on( 'add remove reset', this.toggleDisabled, this );
573
+ },
574
+
575
+ toggleDisabled: function() {
576
+ this.model.set( 'disabled', ! this.controller.state().get( 'selection' ).length );
577
+ },
578
+
579
+ click: function( event ) {
580
+
581
+ event.preventDefault();
582
+
583
+ var selection = this.controller.state().get( 'selection' );
584
+
585
+ selection.reset();
586
+
587
+ // Keep focus inside media modal
588
+ if ( this.controller.modal ) {
589
+ this.controller.modal.focusManager.focus();
590
+ }
591
+ }
592
+ });
593
+
594
+
595
+
596
  /**
597
  * wp.media.view.AttachmentsBrowser
598
  *
658
 
659
  createToolbar: function() {
660
 
661
+ var LibraryViewSwitcher, Filters, toolbarOptions,
662
  self = this,
663
  i = 1;
664
 
665
+ toolbarOptions = {
666
+ controller: this.controller
667
+ };
668
+
669
+ if ( this.controller.isModeActive( 'grid' ) ||
670
+ this.controller.isModeActive( 'eml-grid' ) ) {
671
 
672
+ toolbarOptions.className = 'media-toolbar wp-filter';
673
+ }
674
+
675
+ /**
676
+ * @member {wp.media.view.Toolbar}
677
+ */
678
+ this.toolbar = new media.view.Toolbar( toolbarOptions );
679
+
680
+ this.views.add( this.toolbar );
681
+
682
+ this.toolbar.set( 'spinner', new media.view.Spinner({
683
+ priority: -40
684
+ }) );
685
 
686
 
687
  if ( -1 !== $.inArray( this.options.filters, [ 'uploaded', 'all' ] ) ||
688
+ ( parseInt( eml.l10n.force_filters ) &&
689
+ 'gallery-edit' !== this.controller._state &&
690
+ 'playlist-edit' !== this.controller._state &&
691
+ 'video-playlist-edit' !== this.controller._state ) ||
692
+ 'customize' === eml.l10n.current_screen ) {
693
+
694
+ if ( this.controller.isModeActive( 'grid' ) ||
695
+ this.controller.isModeActive( 'eml-grid' ) ) {
696
+
697
+ LibraryViewSwitcher = media.View.extend({
698
+ className: 'view-switch media-grid-view-switch',
699
+ template: media.template( 'media-library-view-switcher')
700
+ });
701
 
702
+ this.toolbar.set( 'libraryViewSwitcher', new LibraryViewSwitcher({
703
+ controller: this.controller,
704
+ priority: -90
705
+ }).render() );
706
+ }
707
 
708
  this.toolbar.set( 'filtersLabel', new media.view.Label({
709
  value: l10n.filterByType,
729
  this.toolbar.set( 'filters', Filters.render() );
730
  }
731
 
732
+ if ( eml.l10n.wp_version >= '4.0' ) {
733
+
734
  this.toolbar.set( 'dateFilterLabel', new media.view.Label({
735
  value: l10n.filterByDate,
736
  attributes: {
769
  }
770
  });
771
 
 
772
  this.toolbar.set( 'resetFilterButton', new media.view.Button.resetFilters({
773
  controller: this.controller,
774
  text: eml.l10n.reset_filters,
775
  disabled: true,
776
+ priority: -70 + i++
777
  }).render() );
778
 
779
+ if ( this.controller.isModeActive( 'eml-grid' ) ) {
780
+
781
+ this.toolbar.set( 'deselectButton', new media.view.Button.Deselect ({
782
+ controller: this.controller,
783
+ text: l10n.cancelSelection,
784
+ disabled: true,
785
+ priority: -70 + i++
786
+ }).render() );
787
+
788
+ this.toolbar.set( 'emlDeleteSelectedButton', new media.view.Button.DeleteSelected({
789
+ filters: Filters,
790
+ style: 'primary',
791
+ // className: 'delete-selected-button',
792
+ disabled: true,
793
+ text: media.view.settings.mediaTrash ? l10n.trashSelected : l10n.deleteSelected,
794
+ controller: this.controller,
795
+ priority: -70 + i++
796
+ }).render() );
797
+
798
+ if ( media.view.settings.mediaTrash ) {
799
+ this.toolbar.set( 'emlDeleteSelectedPermanentlyButton', new media.view.Button.DeleteSelectedPermanently({
800
+ filters: Filters,
801
+ style: 'primary',
802
+ disabled: true,
803
+ text: l10n.deleteSelected,
804
+ controller: this.controller,
805
+ priority: -55
806
+ }).render() );
807
+ }
808
+ }
809
+
810
  } // endif
811
+
812
+
813
+ // in case it is not eml-grid but the original grid somewhere
814
+ if ( this.controller.isModeActive( 'grid' ) ) {
815
+
816
+ // BulkSelection is a <div> with subviews, including screen reader text
817
+ this.toolbar.set( 'selectModeToggleButton', new media.view.SelectModeToggleButton({
818
+ text: l10n.bulkSelect,
819
+ controller: this.controller,
820
+ priority: -70
821
+ }).render() );
822
+
823
+ this.toolbar.set( 'deleteSelectedButton', new media.view.DeleteSelectedButton({
824
+ filters: Filters,
825
+ style: 'primary',
826
+ disabled: true,
827
+ text: media.view.settings.mediaTrash ? l10n.trashSelected : l10n.deleteSelected,
828
+ controller: this.controller,
829
+ priority: -60,
830
+ click: function() {
831
+ var changed = [], removed = [],
832
+ selection = this.controller.state().get( 'selection' ),
833
+ library = this.controller.state().get( 'library' );
834
+
835
+ if ( ! selection.length ) {
836
+ return;
837
+ }
838
+
839
+ if ( ! mediaTrash && ! window.confirm( l10n.warnBulkDelete ) ) {
840
+ return;
841
+ }
842
+
843
+ if ( mediaTrash &&
844
+ 'trash' !== selection.at( 0 ).get( 'status' ) &&
845
+ ! window.confirm( l10n.warnBulkTrash ) ) {
846
+
847
+ return;
848
+ }
849
+
850
+ selection.each( function( model ) {
851
+ if ( ! model.get( 'nonces' )['delete'] ) {
852
+ removed.push( model );
853
+ return;
854
+ }
855
+
856
+ if ( mediaTrash && 'trash' === model.get( 'status' ) ) {
857
+ model.set( 'status', 'inherit' );
858
+ changed.push( model.save() );
859
+ removed.push( model );
860
+ } else if ( mediaTrash ) {
861
+ model.set( 'status', 'trash' );
862
+ changed.push( model.save() );
863
+ removed.push( model );
864
+ } else {
865
+ model.destroy({wait: true});
866
+ }
867
+ } );
868
+
869
+ if ( changed.length ) {
870
+ selection.remove( removed );
871
+
872
+ $.when.apply( null, changed ).then( _.bind( function() {
873
+ library._requery( true );
874
+ this.controller.trigger( 'selection:action:done' );
875
+ }, this ) );
876
+ } else {
877
+ this.controller.trigger( 'selection:action:done' );
878
+ }
879
+ }
880
+ }).render() );
881
+
882
+ if ( media.view.settings.mediaTrash ) {
883
+ this.toolbar.set( 'deleteSelectedPermanentlyButton', new wp.media.view.DeleteSelectedPermanentlyButton({
884
+ filters: Filters,
885
+ style: 'primary',
886
+ disabled: true,
887
+ text: l10n.deleteSelected,
888
+ controller: this.controller,
889
+ priority: -55,
890
+ click: function() {
891
+ var removed = [], selection = this.controller.state().get( 'selection' );
892
+
893
+ if ( ! selection.length || ! window.confirm( l10n.warnBulkDelete ) ) {
894
+ return;
895
+ }
896
+
897
+ selection.each( function( model ) {
898
+ if ( ! model.get( 'nonces' )['delete'] ) {
899
+ removed.push( model );
900
+ return;
901
+ }
902
+
903
+ model.destroy({wait: true});
904
+ } );
905
+
906
+ this.controller.trigger( 'selection:action:done' );
907
+ }
908
+ }).render() );
909
+ }
910
+ }
911
+
912
+ if ( this.options.search ) {
913
+
914
+ this.toolbar.set( 'searchLabel', new media.view.Label({
915
+ value: l10n.searchMediaLabel,
916
+ attributes: {
917
+ 'for': 'media-search-input'
918
+ },
919
+ priority: -50
920
+ }).render() );
921
+ this.toolbar.set( 'search', new media.view.Search({
922
+ controller: this.controller,
923
+ model: this.collection.props,
924
+ priority: -50
925
+ }).render() );
926
+ }
927
+
928
+ if ( this.options.dragInfo ) {
929
+ this.toolbar.set( 'dragInfo', new media.View({
930
+ el: $( '<div class="instructions">' + l10n.dragInfo + '</div>' )[0],
931
+ priority: -40
932
+ }) );
933
+ }
934
+ },
935
+
936
+ updateContent: function() {
937
+
938
+ var view = this,
939
+ noItemsView;
940
+
941
+ if ( this.controller.isModeActive( 'grid' ) ||
942
+ this.controller.isModeActive( 'eml-grid' ) ) {
943
+ noItemsView = view.attachmentsNoResults;
944
+ } else {
945
+ noItemsView = view.uploader;
946
+ }
947
+
948
+ if ( ! this.collection.length ) {
949
+
950
+ this.toolbar.get( 'spinner' ).show();
951
+
952
+ this.dfd = this.collection.more().done( function() {
953
+
954
+ if ( ! view.collection.length ) {
955
+ noItemsView.$el.removeClass( 'hidden' );
956
+ } else {
957
+ noItemsView.$el.addClass( 'hidden' );
958
+ }
959
+ view.toolbar.get( 'spinner' ).hide();
960
+ } );
961
+
962
+ } else {
963
+
964
+ noItemsView.$el.addClass( 'hidden' );
965
+ view.toolbar.get( 'spinner' ).hide();
966
+ }
967
+ },
968
+
969
+ createUploader: function() {
970
+
971
+ this.uploader = new media.view.UploaderInline({
972
+ controller: this.controller,
973
+ status: false,
974
+ message: this.controller.isModeActive( 'grid' ) || this.controller.isModeActive( 'eml-grid' ) ? '' : l10n.noItemsFound,
975
+ canClose: this.controller.isModeActive( 'grid' ) || this.controller.isModeActive( 'eml-grid' )
976
+ });
977
+
978
+ this.uploader.hide();
979
+ this.views.add( this.uploader );
980
+ },
981
+
982
+ createAttachments: function() {
983
+ this.attachments = new media.view.Attachments({
984
+ controller: this.controller,
985
+ collection: this.collection,
986
+ selection: this.options.selection,
987
+ model: this.model,
988
+ sortable: this.options.sortable,
989
+ scrollElement: this.options.scrollElement,
990
+ idealColumnWidth: this.options.idealColumnWidth,
991
+
992
+ // The single `Attachment` view to be used in the `Attachments` view.
993
+ AttachmentView: this.options.AttachmentView
994
+ });
995
+
996
+ // Add keydown listener to the instance of the Attachments view
997
+ this.attachments.listenTo( this.controller, 'attachment:keydown:arrow', this.attachments.arrowEvent );
998
+ this.attachments.listenTo( this.controller, 'attachment:details:shift-tab', this.attachments.restoreFocus );
999
+
1000
+ this.views.add( this.attachments );
1001
+
1002
+
1003
+ if ( this.controller.isModeActive( 'grid' ) ||
1004
+ this.controller.isModeActive( 'eml-grid' ) ) {
1005
+
1006
+ this.attachmentsNoResults = new media.View({
1007
+ controller: this.controller,
1008
+ tagName: 'p'
1009
+ });
1010
+
1011
+ this.attachmentsNoResults.$el.addClass( 'hidden no-media' );
1012
+ this.attachmentsNoResults.$el.html( l10n.noItemsFound );
1013
+
1014
+ this.views.add( this.attachmentsNoResults );
1015
+ }
1016
  }
1017
  });
1018
 
1075
  original.MediaFrame.Post.activate.apply( this, arguments );
1076
 
1077
  this.on( 'open', content.fixLayout, content );
1078
+ $( document ).on( 'click', '.acf-expand-details', _.debounce( _.bind( content.fixLayout, content ), 250 ) );
1079
  }
1080
  });
1081
 
1082
 
1083
 
1084
+ $( document ).ready( function() {
1085
+
1086
+ // TODO: find a better place for this
1087
+ $( document ).on( 'mousedown', '.media-frame .attachments-browser .attachments li', function ( event ) {
1088
+
1089
+ if ( event.ctrlKey || event.shiftKey ) {
1090
+ event.preventDefault();
1091
+ }
1092
+ });
1093
+ });
1094
+
1095
+
1096
+
1097
  // TODO: move to the PHP side
1098
  $('body').addClass('eml-media-css');
1099
 
languages/enhanced-media-library-de_DE.mo CHANGED
Binary file
languages/enhanced-media-library-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:37+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:37+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: German (Germany)\n"
9
  "Language: de_DE\n"
@@ -31,13 +31,14 @@ msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
  msgstr[1] ""
33
 
34
- #: core/options-pages.php:97 core/options-pages.php:239
35
- #: core/options-pages.php:1006 core/options-pages.php:1130
36
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
37
  msgid "Media Settings"
38
  msgstr "Medien-Einstellungen"
39
 
40
- #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "Mediathek"
43
 
@@ -45,282 +46,282 @@ msgstr "Mediathek"
45
  msgid "Taxonomies"
46
  msgstr "Taxonomien"
47
 
48
- #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "MIME Types"
51
 
 
52
  #: core/options-pages.php:135 core/options-pages.php:136
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
- #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr ""
59
 
60
- #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "Media Taxonomien"
63
 
64
- #: core/options-pages.php:236 core/options-pages.php:548
65
- #: core/options-pages.php:1002 core/options-pages.php:1127
66
- #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr ""
69
 
70
- #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr ""
73
 
74
- #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
78
  msgstr ""
79
 
80
- #: core/options-pages.php:255
81
  msgid "Thumbnail size"
82
  msgstr ""
83
 
84
- #: core/options-pages.php:257
85
  msgid "Width"
86
  msgstr ""
87
 
88
- #: core/options-pages.php:259
89
  msgid "Height"
90
  msgstr ""
91
 
92
- #: core/options-pages.php:262
93
  msgid ""
94
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:267 core/options-pages.php:268
98
  msgid "Medium size"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:269 core/options-pages.php:279
102
  msgid "Max Width"
103
  msgstr ""
104
 
105
- #: core/options-pages.php:271 core/options-pages.php:281
106
  msgid "Max Height"
107
  msgstr ""
108
 
109
- #: core/options-pages.php:277 core/options-pages.php:278
110
  msgid "Large size"
111
  msgstr ""
112
 
113
- #: core/options-pages.php:294
114
  msgid "Embeds"
115
  msgstr ""
116
 
117
- #: core/options-pages.php:301
118
  msgid "Uploading Files"
119
  msgstr ""
120
 
121
- #: core/options-pages.php:308
122
  msgid "Store uploads in this folder"
123
  msgstr ""
124
 
125
- #: core/options-pages.php:312
126
  #, php-format
127
  msgid "Default is %s"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:318
131
  msgid "Full URL path to files"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:320
135
  msgid "Configuring this is optional. By default, it should be blank."
136
  msgstr ""
137
 
138
- #: core/options-pages.php:328
139
  msgid "Organize my uploads into month- and year-based folders"
140
  msgstr ""
141
 
142
- #: core/options-pages.php:400 core/options-pages.php:1175
143
- #: core/options-pages.php:1190 core/options-pages.php:1253
144
- #: core/options-pages.php:1325
145
  msgid "Edit"
146
  msgstr "Bearbeiten"
147
 
148
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
149
  msgid "Close"
150
  msgstr "Schließen"
151
 
152
- #: core/options-pages.php:402 core/options-pages.php:1191
153
- #: core/options-pages.php:1254
154
  msgid "View"
155
  msgstr "Anzeigen"
156
 
157
- #: core/options-pages.php:403 core/options-pages.php:1192
158
- #: core/options-pages.php:1255
159
  msgid "Update"
160
  msgstr "Aktualisieren"
161
 
162
- #: core/options-pages.php:404 core/options-pages.php:1193
163
- #: core/options-pages.php:1256
164
  msgid "Add New"
165
  msgstr ""
166
 
167
- #: core/options-pages.php:405 core/options-pages.php:1194
168
- #: core/options-pages.php:1257
169
  msgid "New"
170
  msgstr ""
171
 
172
- #: core/options-pages.php:406
173
  msgid "Name"
174
  msgstr ""
175
 
176
- #: core/options-pages.php:407 core/options-pages.php:1195
177
- #: core/options-pages.php:1258
178
  msgid "Parent"
179
  msgstr ""
180
 
181
- #: core/options-pages.php:408 core/options-pages.php:644
182
- #: core/options-pages.php:1189 core/options-pages.php:1252
183
- #: core/taxonomies.php:340 enhanced-media-library.php:503
184
  msgid "All"
185
  msgstr "Alle"
186
 
187
- #: core/options-pages.php:409 core/options-pages.php:1196
188
- #: core/options-pages.php:1259
189
  msgid "Search"
190
  msgstr "Durchsuchen"
191
 
192
- #: core/options-pages.php:411 core/options-pages.php:1240
193
  msgid "New Taxonomy"
194
  msgstr ""
195
 
196
- #: core/options-pages.php:413
197
  msgid "Remove Taxonomy"
198
  msgstr ""
199
 
200
- #: core/options-pages.php:414
201
  msgid "Taxonomy will be removed."
202
  msgstr ""
203
 
204
- #: core/options-pages.php:415
205
  msgid ""
206
  "Taxonomy terms (categories) will remain intact in the database. If you "
207
  "create a taxonomy with the same name in the future, its terms (categories) "
208
  "will be available again."
209
  msgstr ""
210
 
211
- #: core/options-pages.php:416
212
  msgid "Media items will remain intact."
213
  msgstr ""
214
 
215
- #: core/options-pages.php:417
216
  msgid "Are you still sure?"
217
  msgstr ""
218
 
219
- #: core/options-pages.php:418
220
  msgid "Yes, remove taxonomy"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:420
224
  msgid "Duplicate"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:421
228
  msgid "Taxonomy with the same name already exists. Please chose other one."
229
  msgstr ""
230
 
231
- #: core/options-pages.php:423
232
  msgid "Empty Fields"
233
  msgstr ""
234
 
235
- #: core/options-pages.php:424
236
  msgid "Please choose Singular and Plural names for all new taxomonies."
237
  msgstr ""
238
 
239
- #: core/options-pages.php:425
240
  msgid "Please choose Singular name for all new taxomonies."
241
  msgstr ""
242
 
243
- #: core/options-pages.php:426
244
  msgid "Please choose Plural Name for all new taxomonies."
245
  msgstr ""
246
 
247
- #: core/options-pages.php:428
248
  msgid "Ok"
249
  msgstr ""
250
 
251
- #: core/options-pages.php:429 core/options-pages.php:434
252
- #: core/options-pages.php:478 core/options-pages.php:523
253
- #: pro/enhanced-media-library-pro.php:133
254
  msgid "Cancel"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:431 pro/core/options-pages.php:185
258
  msgid "Synchronize Now"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:432 core/options-pages.php:520
262
  msgid "This operation cannot be canceled! Are you still sure?"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:433
266
  msgid "Synchronize"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:435
270
  msgid "Synchronizing..."
271
  msgstr ""
272
 
273
- #: core/options-pages.php:473 core/options-pages.php:1579
274
  msgid "Restore WordPress default MIME Types"
275
  msgstr ""
276
 
277
- #: core/options-pages.php:474
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr ""
280
 
281
- #: core/options-pages.php:475
282
  msgid "Restore Defaults"
283
  msgstr ""
284
 
285
- #: core/options-pages.php:476
286
  msgid "Restoring..."
287
  msgstr ""
288
 
289
- #: core/options-pages.php:480
290
  msgid "Please fill into all fields."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:481
294
  msgid "Duplicate extensions or MIME types. Please chose other one."
295
  msgstr ""
296
 
297
- #: core/options-pages.php:518 core/options-pages.php:635
298
  msgid "Complete Cleanup"
299
  msgstr ""
300
 
301
- #: core/options-pages.php:519
302
  msgid ""
303
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
  "plugin data</strong> from the database including backups."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:521
308
  msgid "Yes, delete all data"
309
  msgstr ""
310
 
311
- #: core/options-pages.php:522
312
  msgid "Cleaning..."
313
  msgstr ""
314
 
315
- #: core/options-pages.php:553
316
  msgid "Enhanced Media Library Settings"
317
  msgstr ""
318
 
319
- #: core/options-pages.php:563
320
  msgid "Export"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:567
324
  msgid ""
325
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -328,15 +329,15 @@ msgid ""
328
  "another website."
329
  msgstr ""
330
 
331
- #: core/options-pages.php:572
332
  msgid "Export Plugin Settings"
333
  msgstr ""
334
 
335
- #: core/options-pages.php:582
336
  msgid "Import"
337
  msgstr ""
338
 
339
- #: core/options-pages.php:586
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -344,173 +345,168 @@ msgid ""
344
  "another website using the export button above."
345
  msgstr ""
346
 
347
- #: core/options-pages.php:587
348
  msgid ""
349
  "All plugin settings will be overridden by the import. You will have a chance "
350
  "to restore current data from an automatic backup in case you are not "
351
  "satisfied with the result of the import."
352
  msgstr ""
353
 
354
- #: core/options-pages.php:594
355
  msgid "Import Plugin Settings"
356
  msgstr ""
357
 
358
- #: core/options-pages.php:606
359
  msgid "Restore"
360
  msgstr ""
361
 
362
- #: core/options-pages.php:612
363
  msgid "No backup available at the moment."
364
  msgstr ""
365
 
366
- #: core/options-pages.php:614
367
  msgid "Backup will be created automatically before any import operation."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:618
371
  msgid ""
372
  "The backup has been automatically created before the latest import operation."
373
  msgstr ""
374
 
375
- #: core/options-pages.php:622
376
  msgid "Restore Settings from the Backup"
377
  msgstr ""
378
 
379
- #: core/options-pages.php:642
380
  msgid "What will be deleted:"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:647
384
  msgid "All plugin options"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:648
388
  msgid "All plugin backups stored in database"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:652
392
  msgid "What will remain intact:"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:653
396
  msgid "All media items"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:654
400
  msgid "All taxonomies not listed above"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:657
404
  msgid ""
405
  "The plugin cannot delete itself because of security reason. Please delete it "
406
  "manually from plugin list after cleanup."
407
  msgstr ""
408
 
409
- #: core/options-pages.php:659
410
  msgid ""
411
  "If you are not sure about this operation please create a backup of your "
412
  "database prior to cleanup!"
413
  msgstr ""
414
 
415
- #: core/options-pages.php:665
416
  msgid "Delete All Data & Deactivate"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:765
420
  msgid "Please upload a file to import settings."
421
  msgstr ""
422
 
423
- #: core/options-pages.php:791
424
  msgid "Plugin settings imported."
425
  msgstr ""
426
 
427
- #: core/options-pages.php:838
428
  msgid "Plugin settings restored from the backup."
429
  msgstr ""
430
 
431
- #: core/options-pages.php:1027
432
  msgid "Media Items Order"
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1034
436
  msgid "Order media items by"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1037 pro/core/medialist.php:28
440
- #: pro/core/medialist.php:73
441
  msgid "Date"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:1038 pro/core/medialist.php:31
445
- #: pro/core/medialist.php:76
446
  msgid "Title"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:1039 pro/core/medialist.php:34
450
- #: pro/core/medialist.php:79
451
  msgid "Custom Order"
452
  msgstr ""
453
 
454
- #: core/options-pages.php:1041 core/options-pages.php:1053
455
  msgid "For media library and media popups"
456
  msgstr ""
457
 
458
- #: core/options-pages.php:1042
459
  msgid "Option allows to change order by drag and drop with Custom Order value."
460
  msgstr ""
461
 
462
- #: core/options-pages.php:1047
463
  msgid "Sort order"
464
  msgstr ""
465
 
466
- #: core/options-pages.php:1050 pro/core/medialist.php:47
467
- #: pro/core/medialist.php:92
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1051 pro/core/medialist.php:50
472
- #: pro/core/medialist.php:95
473
  msgid "Descending"
474
  msgstr ""
475
 
476
- #: core/options-pages.php:1066
477
  msgid "Media Shortcodes"
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1073 core/options-pages.php:1076
481
  msgid "Enhanced media shortcodes"
482
  msgstr ""
483
 
484
- #: core/options-pages.php:1077
485
  msgid ""
486
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
487
  "upload date, and media items number limit"
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1078
491
  msgid "Gallery example:"
492
  msgstr ""
493
 
494
- #: core/options-pages.php:1079
495
  msgid "Audio playlist example:"
496
  msgstr ""
497
 
498
- #: core/options-pages.php:1080
499
  msgid "Video playlist example:"
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1082
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr ""
507
 
508
- #: core/options-pages.php:1084
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr ""
512
 
513
- #: core/options-pages.php:1086
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
@@ -518,240 +514,240 @@ msgid ""
518
  "%s."
519
  msgstr ""
520
 
521
- #: core/options-pages.php:1155 core/options-pages.php:1302
522
  msgid "Assign following taxonomies to Media Library:"
523
  msgstr "Folgende Taxonomien der Mediathek zuweisen:"
524
 
525
- #: core/options-pages.php:1174 core/options-pages.php:1240
526
- #: core/options-pages.php:1324
527
  msgid "Assign Taxonomy"
528
  msgstr "Taxonomie zuweisen"
529
 
530
- #: core/options-pages.php:1175 core/options-pages.php:1325
531
  msgid "Edit Taxonomy"
532
  msgstr "Taxonomie bearbeiten"
533
 
534
- #: core/options-pages.php:1179 core/options-pages.php:1242
535
  msgid "Delete Taxonomy"
536
  msgstr "Taxonomie löschen"
537
 
538
- #: core/options-pages.php:1184 core/options-pages.php:1247
539
  msgid "Labels"
540
  msgstr ""
541
 
542
- #: core/options-pages.php:1186 core/options-pages.php:1249
543
  msgid "Singular"
544
  msgstr ""
545
 
546
- #: core/options-pages.php:1187 core/options-pages.php:1250
547
  msgid "Plural"
548
  msgstr ""
549
 
550
- #: core/options-pages.php:1188 core/options-pages.php:1251
551
  msgid "Menu Name"
552
  msgstr "Menü Name"
553
 
554
- #: core/options-pages.php:1201 core/options-pages.php:1224
555
- #: core/options-pages.php:1264 core/options-pages.php:1328
556
  msgid "Settings"
557
  msgstr "Einstellungen"
558
 
559
- #: core/options-pages.php:1203 core/options-pages.php:1266
560
  msgid "Taxonomy Name"
561
  msgstr "Taxonomie Name"
562
 
563
- #: core/options-pages.php:1204 core/options-pages.php:1267
564
  msgid "Hierarchical"
565
  msgstr "Hierarchisch"
566
 
567
- #: core/options-pages.php:1205 core/options-pages.php:1268
568
  msgid "Column for List View"
569
  msgstr ""
570
 
571
- #: core/options-pages.php:1206 core/options-pages.php:1226
572
- #: core/options-pages.php:1269 core/options-pages.php:1330
573
  msgid "Filter for List View"
574
  msgstr ""
575
 
576
- #: core/options-pages.php:1207 core/options-pages.php:1227
577
- #: core/options-pages.php:1270 core/options-pages.php:1331
578
  msgid "Filter for Grid View / Media Popup"
579
  msgstr ""
580
 
581
- #: core/options-pages.php:1208 core/options-pages.php:1228
582
- #: core/options-pages.php:1271 core/options-pages.php:1332
583
  msgid "Edit in Media Popup"
584
  msgstr ""
585
 
586
- #: core/options-pages.php:1209 core/options-pages.php:1272
587
  msgid "Show in Nav Menu"
588
  msgstr ""
589
 
590
- #: core/options-pages.php:1210 core/options-pages.php:1273
591
  msgid "Remember Terms Order (sort)"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1211 core/options-pages.php:1274
595
  msgid "Show in REST"
596
  msgstr ""
597
 
598
- #: core/options-pages.php:1212 core/options-pages.php:1275
599
  msgid "Rewrite Slug"
600
  msgstr ""
601
 
602
- #: core/options-pages.php:1213 core/options-pages.php:1276
603
  msgid "Slug with Front"
604
  msgstr ""
605
 
606
- #: core/options-pages.php:1288
607
  msgid "Add New Taxonomy"
608
  msgstr "Neue Taxonomie hinzufügen"
609
 
610
- #: core/options-pages.php:1298
611
  msgid "Non-Media Taxonomies"
612
  msgstr "Nicht-Medien Taxonimien"
613
 
614
- #: core/options-pages.php:1361
615
  msgid "Options"
616
  msgstr "Optionen"
617
 
618
- #: core/options-pages.php:1371 core/options-pages.php:1374
619
  msgid "Taxonomy archive pages"
620
  msgstr "Taxonomie Archiv Seiten"
621
 
622
- #: core/options-pages.php:1375
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr "Medien Taxonomie Archive auf der Website aktivieren"
625
 
626
- #: core/options-pages.php:1376
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr ""
630
  "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
631
  "greift."
632
 
633
- #: core/options-pages.php:1382 core/options-pages.php:1385
634
  msgid "Assign all like hierarchical"
635
  msgstr "Alle als hierarchisch zuweisen"
636
 
637
- #: core/options-pages.php:1386
638
  msgid ""
639
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
640
  msgstr ""
641
  "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
642
  "Popups als hierarchisch an"
643
 
644
- #: core/options-pages.php:1392 core/options-pages.php:1395
645
  msgid "Force filters"
646
  msgstr "Filter erzwingen"
647
 
648
- #: core/options-pages.php:1396
649
  msgid "Show media filters for ANY Media Popup"
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1397
653
  msgid "Try this if filters are not shown for third-party plugins or themes."
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1403 core/options-pages.php:1406
657
  msgid "Show count"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1407
661
  msgid "Show item count per category for media filters"
662
  msgstr ""
663
 
664
- #: core/options-pages.php:1461
665
  msgid "Add New MIME Type"
666
  msgstr "Neuen MIME Type hinzufügen"
667
 
668
- #: core/options-pages.php:1481 core/options-pages.php:1536
669
  msgid "Extension"
670
  msgstr "Dateiendung"
671
 
672
- #: core/options-pages.php:1482 core/options-pages.php:1537
673
  msgid "MIME Type"
674
  msgstr "MIME Type"
675
 
676
- #: core/options-pages.php:1483 core/options-pages.php:1538
677
  msgid "Singular Label"
678
  msgstr "Singular Beschriftung"
679
 
680
- #: core/options-pages.php:1484 core/options-pages.php:1539
681
  msgid "Plural Label"
682
  msgstr "Plural Beschriftung"
683
 
684
- #: core/options-pages.php:1485 core/options-pages.php:1515
685
- #: core/options-pages.php:1528 core/options-pages.php:1540
686
  msgid "Add Filter"
687
  msgstr "Filter hinzufügen"
688
 
689
- #: core/options-pages.php:1486 core/options-pages.php:1516
690
- #: core/options-pages.php:1529 core/options-pages.php:1541
691
  msgid "Allow Upload"
692
  msgstr "Upload erlauben"
693
 
694
- #: core/options-pages.php:1517 core/options-pages.php:1530
695
  msgid "Delete MIME Type"
696
  msgstr "MIME Type löschen"
697
 
698
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
699
  msgid "Save Changes"
700
  msgstr "Änderungen speichern"
701
 
702
- #: core/options-pages.php:1607
703
  msgid "Changelog"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1608
707
  msgid "What's new in"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1608
711
  msgid "version"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1611
715
  msgid "More features under the hood"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1613
719
  msgid "Support"
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1614
723
  msgid "Feel free to ask for help on"
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1614
727
  msgid "Support is free for both versions of the plugin."
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1616
731
  msgid "Plugin rating"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1617
735
  msgid "Please"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1617
739
  msgid "vote for the plugin"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1617
743
  msgid "Thanks!"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1619
747
  msgid "Other plugins you may find useful"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1658
751
  msgid "Utility"
752
  msgstr ""
753
 
754
- #: core/options-pages.php:1681
755
  msgid "Vote!"
756
  msgstr ""
757
 
@@ -764,359 +760,96 @@ msgid "Media Library settings saved."
764
  msgstr ""
765
 
766
  #: core/taxonomies.php:333 core/taxonomies.php:339
767
- #: enhanced-media-library.php:502
768
  msgid "Filter by"
769
  msgstr "Filtern nach"
770
 
771
- #: core/taxonomies.php:341 enhanced-media-library.php:504
772
  msgid "Not in a"
773
  msgstr "Nicht in"
774
 
775
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
776
- msgid "All Uncategorized"
777
- msgstr "Alle unkategorisierten"
778
-
779
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
780
- msgid "Reset All Filters"
781
- msgstr "Alle Filter zurücksetzen"
782
-
783
- #: enhanced-media-library.php:535
784
- msgid "Uploaded to post #"
785
- msgstr ""
786
-
787
- #: enhanced-media-library.php:536
788
- msgid "Based On"
789
- msgstr ""
790
-
791
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
792
- msgid "Media Categories"
793
- msgstr ""
794
-
795
- #: enhanced-media-library.php:582
796
- msgid "Media Category"
797
- msgstr ""
798
-
799
- #: enhanced-media-library.php:584
800
- msgid "All Media Categories"
801
- msgstr ""
802
-
803
- #: enhanced-media-library.php:585
804
- msgid "Edit Media Category"
805
- msgstr ""
806
-
807
- #: enhanced-media-library.php:586
808
- msgid "View Media Category"
809
- msgstr ""
810
-
811
- #: enhanced-media-library.php:587
812
- msgid "Update Media Category"
813
- msgstr ""
814
-
815
- #: enhanced-media-library.php:588
816
- msgid "Add New Media Category"
817
- msgstr ""
818
-
819
- #: enhanced-media-library.php:589
820
- msgid "New Media Category Name"
821
- msgstr ""
822
-
823
- #: enhanced-media-library.php:590
824
- msgid "Parent Media Category"
825
- msgstr ""
826
-
827
- #: enhanced-media-library.php:591
828
- msgid "Parent Media Category:"
829
- msgstr ""
830
-
831
- #: enhanced-media-library.php:592
832
- msgid "Search Media Categories"
833
- msgstr ""
834
-
835
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
836
  msgid "Remove"
837
  msgstr "Entfernen"
838
 
839
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
840
  msgid "Deselect"
841
  msgstr "Auswahl entfernen"
842
 
843
- #: pro/core/bulk-edit.php:105
844
  msgid "Caption this image&hellip;"
845
  msgstr "Beschrifte dieses Bild&hellip;"
846
 
847
- #: pro/core/bulk-edit.php:109
848
  msgid "Describe this video&hellip;"
849
  msgstr "Beschreibe diese Video-Datei&hellip;"
850
 
851
- #: pro/core/bulk-edit.php:111
852
  msgid "Describe this audio file&hellip;"
853
  msgstr "Beschreibe diese Audio-Datei&hellip;"
854
 
855
- #: pro/core/bulk-edit.php:113
856
  msgid "Describe this media file&hellip;"
857
  msgstr "Beschreibe diese Medien-Datei&hellip;"
858
 
859
- #: pro/core/bulk-edit.php:122
860
- msgid "Attachments Details"
861
- msgstr "Mediendetails"
862
-
863
- #: pro/core/bulk-edit.php:175
864
- msgid "Select All"
865
- msgstr "Alle auswählen"
866
-
867
- #: pro/core/bulk-edit.php:176
868
- msgid "Deselect All"
869
- msgstr "Auswahl aller entfernen"
870
-
871
- #: pro/core/bulk-edit.php:177
872
- msgid "Delete Selected"
873
- msgstr "Ausgewählte löschen"
874
-
875
- #: pro/core/bulk-edit.php:178
876
- msgid "Trash Selected"
877
- msgstr ""
878
-
879
- #: pro/core/bulk-edit.php:179
880
- msgid "Restore Selected"
881
- msgstr ""
882
-
883
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
884
- msgid "Delete Selected Permanently"
885
- msgstr ""
886
-
887
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
888
- msgid "Order By"
889
- msgstr ""
890
-
891
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
892
- msgid "Random"
893
- msgstr ""
894
-
895
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
896
- msgid "Order"
897
- msgstr ""
898
-
899
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
900
- msgid "Limit"
901
- msgstr ""
902
-
903
- #: pro/core/options-pages.php:78
904
- msgid "Your license has been deactivated."
905
- msgstr ""
906
-
907
- #: pro/core/options-pages.php:88
908
- msgid "Please check if your license key is correct and try again."
909
- msgstr ""
910
-
911
- #: pro/core/options-pages.php:104
912
- #, php-format
913
- msgid ""
914
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
915
- "authors</a>."
916
- msgstr ""
917
-
918
- #: pro/core/options-pages.php:119
919
- #, php-format
920
- msgid ""
921
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
922
- "plugin authors</a>."
923
- msgstr ""
924
-
925
- #: pro/core/options-pages.php:130
926
- msgid "You license has been activated."
927
- msgstr ""
928
-
929
- #: pro/core/options-pages.php:184
930
- #, php-format
931
- msgid "Auto-assign media items to parent %s %s on upload"
932
- msgstr ""
933
-
934
- #: pro/core/options-pages.php:185
935
- #, php-format
936
- msgid ""
937
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
938
- "attached to a %s will be assigned to %s of their parent %s. Currently "
939
- "assigned %s will not be saved. Media items that are not attached to any %s "
940
- "will not be affected."
941
- msgstr ""
942
-
943
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
944
- msgid "Bulk Edit"
945
- msgstr "Massenbearbeitung"
946
-
947
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
948
- msgid "Turn off 'Save Changes' button"
949
- msgstr "'Änderungen speichern'-Button deaktivieren"
950
-
951
- #: pro/core/options-pages.php:220
952
- msgid "Save changes on the fly"
953
- msgstr "Änderungen sofort speichern"
954
-
955
- #: pro/core/options-pages.php:221
956
- msgid ""
957
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
958
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
959
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
960
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
961
- "files / taxonomies with this option turned on."
962
- msgstr ""
963
-
964
- #: pro/core/options-pages.php:222
965
- msgid ""
966
- "Strongly NOT recommended option if you work with more than hundred of files "
967
- "at a time."
968
- msgstr ""
969
- "NICHT empfohlene Option, wenn du mit mehr als hundert Dateien auf einmal "
970
- "arbeitest."
971
-
972
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
973
- msgid "License Key"
974
- msgstr "Lizenzschlüssel"
975
-
976
- #: pro/core/options-pages.php:273
977
- #, php-format
978
- msgid ""
979
- "To unlock updates please enter your license key below. You can get your "
980
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
981
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
982
- msgstr ""
983
-
984
- #: pro/core/options-pages.php:283
985
- msgid "Activate License"
986
- msgstr "Linzenz aktivieren"
987
-
988
- #: pro/core/options-pages.php:290
989
- msgid "Your license is active!"
990
- msgstr "Deine Lizenz ist aktiv!"
991
-
992
- #: pro/core/options-pages.php:294
993
- msgid "Deactivate License"
994
- msgstr ""
995
-
996
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
997
- msgid ""
998
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
999
- "this server&#8217;s configuration. If you continue to have problems, please "
1000
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1001
- msgstr ""
1002
- "Ein unerwarteter Fehler ist aufgetreten. Der Fehler kann bei WordPress.org "
1003
- "oder der Konfiguration dieses Servers liegen. Wenn du weiterhin Probleme "
1004
- "hast, kannst du im <a href=\"https://wordpress.org/support/\">Support Forum</"
1005
- "a> um Hilfe bitten."
1006
-
1007
- #: pro/core/update.php:113
1008
- msgid ""
1009
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1010
- "contact your server administrator.)"
1011
- msgstr ""
1012
- "(WordPress konnte keine sichere Verbindung zu WordPress.org aufbauen. Bitte "
1013
- "kontaktiere deinen Serveradministrator.)"
1014
-
1015
- #: pro/core/update.php:181
1016
- #, php-format
1017
- msgid ""
1018
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1019
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1020
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1021
- msgstr ""
1022
-
1023
- #: pro/enhanced-media-library-pro.php:119
1024
- msgid "ALL files belong to this item"
1025
- msgstr "ALLE Dateien gehören zu diesem Eintrag"
1026
-
1027
- #: pro/enhanced-media-library-pro.php:120
1028
- msgid "SOME files belong to this item"
1029
- msgstr "EINIGE Dateien gehören zu diesem Eintrag"
1030
-
1031
- #: pro/enhanced-media-library-pro.php:121
1032
- msgid "NO files belong to this item"
1033
- msgstr "KEINE Dateien gehören zu diesem Eintrag"
1034
-
1035
- #: pro/enhanced-media-library-pro.php:122
1036
- msgid "Changes saved."
1037
- msgstr "Änderungen gespeichert."
1038
-
1039
- #: pro/enhanced-media-library-pro.php:123
1040
- msgid "Something went wrong."
1041
- msgstr "Etwas ist schiefgelaufen."
1042
-
1043
- #: pro/enhanced-media-library-pro.php:126
1044
- msgid "Edit Media Files"
1045
- msgstr "Medien bearbeiten"
1046
 
1047
- #: pro/enhanced-media-library-pro.php:129
1048
- msgid "Selecting"
1049
- msgstr ""
1050
 
1051
- #: pro/enhanced-media-library-pro.php:131
1052
- msgid "You are about to permanently delete all selected items."
1053
  msgstr ""
1054
 
1055
- #: pro/enhanced-media-library-pro.php:132
1056
- msgid "Delete"
1057
  msgstr ""
1058
 
1059
- #: pro/enhanced-media-library-pro.php:134
1060
- msgid "Moving to Trash"
1061
  msgstr ""
1062
 
1063
- #: pro/enhanced-media-library-pro.php:135
1064
- msgid "Restoring"
1065
  msgstr ""
1066
 
1067
- #: pro/enhanced-media-library-pro.php:136
1068
- msgid "Deleting"
1069
  msgstr ""
1070
 
1071
- #: pro/enhanced-media-library-pro.php:160
1072
- msgid "Create a filter-based gallery"
1073
  msgstr ""
1074
 
1075
- #: pro/enhanced-media-library-pro.php:161
1076
- msgid "Create a filter-based playlist"
1077
  msgstr ""
1078
 
1079
- #: pro/enhanced-media-library-pro.php:162
1080
- msgid "Create a filter-based video playlist"
1081
  msgstr ""
1082
 
1083
- #: pro/enhanced-media-library-pro.php:240
1084
- msgid ""
1085
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1086
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1087
- "will remain intact."
1088
  msgstr ""
1089
 
1090
- #: pro/enhanced-media-library-pro.php:240
1091
- msgid "Return to Plugins"
1092
- msgstr "zu Plugins zurückkehren"
1093
-
1094
- #: pro/enhanced-media-library-pro.php:291
1095
- msgid ""
1096
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1097
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1098
- "be active. Please network deactivate and delete the free versions of the "
1099
- "plugin. All your data will remain intact."
1100
  msgstr ""
1101
 
1102
- #: pro/enhanced-media-library-pro.php:308
1103
- msgid ""
1104
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1105
- "be active. Please deactivate and delete the free version of the plugin. All "
1106
- "your data will remain intact."
1107
  msgstr ""
1108
 
1109
- #: pro/enhanced-media-library-pro.php:324
1110
- msgid ""
1111
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1112
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1113
- "version to be active. Please deactivate (or network deactivate) and delete "
1114
- "the free version of the plugin for this site. All your data will remail "
1115
- "intact."
1116
  msgstr ""
1117
 
1118
- #. Plugin Name of the plugin/theme
1119
- msgid "Enhanced Media Library PRO"
1120
  msgstr ""
1121
 
1122
  #. Plugin URI of the plugin/theme
@@ -1132,6 +865,3 @@ msgstr "Dieses Plugin ist nützlich für alle, die viele Medien verwalten."
1132
  #. Author of the plugin/theme
1133
  msgid "wpUXsolutions"
1134
  msgstr ""
1135
-
1136
- #~ msgid "Not in"
1137
- #~ msgstr "Nicht in"
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-13 03:05+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:05+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: German (Germany)\n"
9
  "Language: de_DE\n"
31
  msgstr[0] ""
32
  msgstr[1] ""
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:220
35
+ #: core/options-pages.php:313 core/options-pages.php:1080
36
+ #: core/options-pages.php:1204 core/options-pages.php:1529
37
+ #: core/options-pages.php:1729
38
  msgid "Media Settings"
39
  msgstr "Medien-Einstellungen"
40
 
41
+ #: core/options-pages.php:106 core/options-pages.php:285
42
  msgid "Media Library"
43
  msgstr "Mediathek"
44
 
46
  msgid "Taxonomies"
47
  msgstr "Taxonomien"
48
 
49
+ #: core/options-pages.php:124 core/options-pages.php:287
50
  msgid "MIME Types"
51
  msgstr "MIME Types"
52
 
53
+ #. Plugin Name of the plugin/theme
54
  #: core/options-pages.php:135 core/options-pages.php:136
55
  msgid "Enhanced Media Library"
56
  msgstr "Enhanced Media Library"
57
 
58
+ #: core/options-pages.php:284
59
  msgid "General"
60
  msgstr ""
61
 
62
+ #: core/options-pages.php:286 core/options-pages.php:1225
63
  msgid "Media Taxonomies"
64
  msgstr "Media Taxonomien"
65
 
66
+ #: core/options-pages.php:310 core/options-pages.php:622
67
+ #: core/options-pages.php:1076 core/options-pages.php:1201
68
+ #: core/options-pages.php:1525
69
  msgid "You do not have sufficient permissions to access this page."
70
  msgstr ""
71
 
72
+ #: core/options-pages.php:324
73
  msgid "Image sizes"
74
  msgstr ""
75
 
76
+ #: core/options-pages.php:325
77
  msgid ""
78
  "The sizes listed below determine the maximum dimensions in pixels to use "
79
  "when adding an image to the Media Library."
80
  msgstr ""
81
 
82
+ #: core/options-pages.php:329
83
  msgid "Thumbnail size"
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:331
87
  msgid "Width"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:333
91
  msgid "Height"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:336
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
 
99
+ #: core/options-pages.php:341 core/options-pages.php:342
100
  msgid "Medium size"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:343 core/options-pages.php:353
104
  msgid "Max Width"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:345 core/options-pages.php:355
108
  msgid "Max Height"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:351 core/options-pages.php:352
112
  msgid "Large size"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:368
116
  msgid "Embeds"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:375
120
  msgid "Uploading Files"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:382
124
  msgid "Store uploads in this folder"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:386
128
  #, php-format
129
  msgid "Default is %s"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:392
133
  msgid "Full URL path to files"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:394
137
  msgid "Configuring this is optional. By default, it should be blank."
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:402
141
  msgid "Organize my uploads into month- and year-based folders"
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:474 core/options-pages.php:1249
145
+ #: core/options-pages.php:1264 core/options-pages.php:1327
146
+ #: core/options-pages.php:1399
147
  msgid "Edit"
148
  msgstr "Bearbeiten"
149
 
150
+ #: core/options-pages.php:475
151
  msgid "Close"
152
  msgstr "Schließen"
153
 
154
+ #: core/options-pages.php:476 core/options-pages.php:1265
155
+ #: core/options-pages.php:1328
156
  msgid "View"
157
  msgstr "Anzeigen"
158
 
159
+ #: core/options-pages.php:477 core/options-pages.php:1266
160
+ #: core/options-pages.php:1329
161
  msgid "Update"
162
  msgstr "Aktualisieren"
163
 
164
+ #: core/options-pages.php:478 core/options-pages.php:1267
165
+ #: core/options-pages.php:1330
166
  msgid "Add New"
167
  msgstr ""
168
 
169
+ #: core/options-pages.php:479 core/options-pages.php:1268
170
+ #: core/options-pages.php:1331
171
  msgid "New"
172
  msgstr ""
173
 
174
+ #: core/options-pages.php:480
175
  msgid "Name"
176
  msgstr ""
177
 
178
+ #: core/options-pages.php:481 core/options-pages.php:1269
179
+ #: core/options-pages.php:1332
180
  msgid "Parent"
181
  msgstr ""
182
 
183
+ #: core/options-pages.php:482 core/options-pages.php:718
184
+ #: core/options-pages.php:1263 core/options-pages.php:1326
185
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
186
  msgid "All"
187
  msgstr "Alle"
188
 
189
+ #: core/options-pages.php:483 core/options-pages.php:1270
190
+ #: core/options-pages.php:1333
191
  msgid "Search"
192
  msgstr "Durchsuchen"
193
 
194
+ #: core/options-pages.php:485 core/options-pages.php:1314
195
  msgid "New Taxonomy"
196
  msgstr ""
197
 
198
+ #: core/options-pages.php:487
199
  msgid "Remove Taxonomy"
200
  msgstr ""
201
 
202
+ #: core/options-pages.php:488
203
  msgid "Taxonomy will be removed."
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:489
207
  msgid ""
208
  "Taxonomy terms (categories) will remain intact in the database. If you "
209
  "create a taxonomy with the same name in the future, its terms (categories) "
210
  "will be available again."
211
  msgstr ""
212
 
213
+ #: core/options-pages.php:490
214
  msgid "Media items will remain intact."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:491
218
  msgid "Are you still sure?"
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:492
222
  msgid "Yes, remove taxonomy"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:494
226
  msgid "Duplicate"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:495
230
  msgid "Taxonomy with the same name already exists. Please chose other one."
231
  msgstr ""
232
 
233
+ #: core/options-pages.php:497
234
  msgid "Empty Fields"
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:498
238
  msgid "Please choose Singular and Plural names for all new taxomonies."
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:499
242
  msgid "Please choose Singular name for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:500
246
  msgid "Please choose Plural Name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:502
250
  msgid "Ok"
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:503 core/options-pages.php:508
254
+ #: core/options-pages.php:552 core/options-pages.php:597
 
255
  msgid "Cancel"
256
  msgstr ""
257
 
258
+ #: core/options-pages.php:505
259
  msgid "Synchronize Now"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:506 core/options-pages.php:594
263
  msgid "This operation cannot be canceled! Are you still sure?"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:507
267
  msgid "Synchronize"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:509
271
  msgid "Synchronizing..."
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:547 core/options-pages.php:1653
275
  msgid "Restore WordPress default MIME Types"
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:548
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr ""
281
 
282
+ #: core/options-pages.php:549
283
  msgid "Restore Defaults"
284
  msgstr ""
285
 
286
+ #: core/options-pages.php:550
287
  msgid "Restoring..."
288
  msgstr ""
289
 
290
+ #: core/options-pages.php:554
291
  msgid "Please fill into all fields."
292
  msgstr ""
293
 
294
+ #: core/options-pages.php:555
295
  msgid "Duplicate extensions or MIME types. Please chose other one."
296
  msgstr ""
297
 
298
+ #: core/options-pages.php:592 core/options-pages.php:709
299
  msgid "Complete Cleanup"
300
  msgstr ""
301
 
302
+ #: core/options-pages.php:593
303
  msgid ""
304
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
305
  "plugin data</strong> from the database including backups."
306
  msgstr ""
307
 
308
+ #: core/options-pages.php:595
309
  msgid "Yes, delete all data"
310
  msgstr ""
311
 
312
+ #: core/options-pages.php:596
313
  msgid "Cleaning..."
314
  msgstr ""
315
 
316
+ #: core/options-pages.php:627
317
  msgid "Enhanced Media Library Settings"
318
  msgstr ""
319
 
320
+ #: core/options-pages.php:637
321
  msgid "Export"
322
  msgstr ""
323
 
324
+ #: core/options-pages.php:641
325
  msgid ""
326
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
327
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
329
  "another website."
330
  msgstr ""
331
 
332
+ #: core/options-pages.php:646
333
  msgid "Export Plugin Settings"
334
  msgstr ""
335
 
336
+ #: core/options-pages.php:656
337
  msgid "Import"
338
  msgstr ""
339
 
340
+ #: core/options-pages.php:660
341
  msgid ""
342
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
345
  "another website using the export button above."
346
  msgstr ""
347
 
348
+ #: core/options-pages.php:661
349
  msgid ""
350
  "All plugin settings will be overridden by the import. You will have a chance "
351
  "to restore current data from an automatic backup in case you are not "
352
  "satisfied with the result of the import."
353
  msgstr ""
354
 
355
+ #: core/options-pages.php:668
356
  msgid "Import Plugin Settings"
357
  msgstr ""
358
 
359
+ #: core/options-pages.php:680
360
  msgid "Restore"
361
  msgstr ""
362
 
363
+ #: core/options-pages.php:686
364
  msgid "No backup available at the moment."
365
  msgstr ""
366
 
367
+ #: core/options-pages.php:688
368
  msgid "Backup will be created automatically before any import operation."
369
  msgstr ""
370
 
371
+ #: core/options-pages.php:692
372
  msgid ""
373
  "The backup has been automatically created before the latest import operation."
374
  msgstr ""
375
 
376
+ #: core/options-pages.php:696
377
  msgid "Restore Settings from the Backup"
378
  msgstr ""
379
 
380
+ #: core/options-pages.php:716
381
  msgid "What will be deleted:"
382
  msgstr ""
383
 
384
+ #: core/options-pages.php:721
385
  msgid "All plugin options"
386
  msgstr ""
387
 
388
+ #: core/options-pages.php:722
389
  msgid "All plugin backups stored in database"
390
  msgstr ""
391
 
392
+ #: core/options-pages.php:726
393
  msgid "What will remain intact:"
394
  msgstr ""
395
 
396
+ #: core/options-pages.php:727
397
  msgid "All media items"
398
  msgstr ""
399
 
400
+ #: core/options-pages.php:728
401
  msgid "All taxonomies not listed above"
402
  msgstr ""
403
 
404
+ #: core/options-pages.php:731
405
  msgid ""
406
  "The plugin cannot delete itself because of security reason. Please delete it "
407
  "manually from plugin list after cleanup."
408
  msgstr ""
409
 
410
+ #: core/options-pages.php:733
411
  msgid ""
412
  "If you are not sure about this operation please create a backup of your "
413
  "database prior to cleanup!"
414
  msgstr ""
415
 
416
+ #: core/options-pages.php:739
417
  msgid "Delete All Data & Deactivate"
418
  msgstr ""
419
 
420
+ #: core/options-pages.php:839
421
  msgid "Please upload a file to import settings."
422
  msgstr ""
423
 
424
+ #: core/options-pages.php:865
425
  msgid "Plugin settings imported."
426
  msgstr ""
427
 
428
+ #: core/options-pages.php:912
429
  msgid "Plugin settings restored from the backup."
430
  msgstr ""
431
 
432
+ #: core/options-pages.php:1101
433
  msgid "Media Items Order"
434
  msgstr ""
435
 
436
+ #: core/options-pages.php:1108
437
  msgid "Order media items by"
438
  msgstr ""
439
 
440
+ #: core/options-pages.php:1111
 
441
  msgid "Date"
442
  msgstr ""
443
 
444
+ #: core/options-pages.php:1112
 
445
  msgid "Title"
446
  msgstr ""
447
 
448
+ #: core/options-pages.php:1113
 
449
  msgid "Custom Order"
450
  msgstr ""
451
 
452
+ #: core/options-pages.php:1115 core/options-pages.php:1127
453
  msgid "For media library and media popups"
454
  msgstr ""
455
 
456
+ #: core/options-pages.php:1116
457
  msgid "Option allows to change order by drag and drop with Custom Order value."
458
  msgstr ""
459
 
460
+ #: core/options-pages.php:1121
461
  msgid "Sort order"
462
  msgstr ""
463
 
464
+ #: core/options-pages.php:1124
 
465
  msgid "Ascending"
466
  msgstr ""
467
 
468
+ #: core/options-pages.php:1125
 
469
  msgid "Descending"
470
  msgstr ""
471
 
472
+ #: core/options-pages.php:1140
473
  msgid "Media Shortcodes"
474
  msgstr ""
475
 
476
+ #: core/options-pages.php:1147 core/options-pages.php:1150
477
  msgid "Enhanced media shortcodes"
478
  msgstr ""
479
 
480
+ #: core/options-pages.php:1151
481
  msgid ""
482
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
483
  "upload date, and media items number limit"
484
  msgstr ""
485
 
486
+ #: core/options-pages.php:1152
487
  msgid "Gallery example:"
488
  msgstr ""
489
 
490
+ #: core/options-pages.php:1153
491
  msgid "Audio playlist example:"
492
  msgstr ""
493
 
494
+ #: core/options-pages.php:1154
495
  msgid "Video playlist example:"
496
  msgstr ""
497
 
498
+ #: core/options-pages.php:1156
499
  #, php-format
500
  msgid ""
501
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
502
  msgstr ""
503
 
504
+ #: core/options-pages.php:1158
505
  #, php-format
506
  msgid "%sLearn more%s."
507
  msgstr ""
508
 
509
+ #: core/options-pages.php:1160
510
  #, php-format
511
  msgid ""
512
  "Please check out your gallery front-end and back-end functionality once this "
514
  "%s."
515
  msgstr ""
516
 
517
+ #: core/options-pages.php:1229 core/options-pages.php:1376
518
  msgid "Assign following taxonomies to Media Library:"
519
  msgstr "Folgende Taxonomien der Mediathek zuweisen:"
520
 
521
+ #: core/options-pages.php:1248 core/options-pages.php:1314
522
+ #: core/options-pages.php:1398
523
  msgid "Assign Taxonomy"
524
  msgstr "Taxonomie zuweisen"
525
 
526
+ #: core/options-pages.php:1249 core/options-pages.php:1399
527
  msgid "Edit Taxonomy"
528
  msgstr "Taxonomie bearbeiten"
529
 
530
+ #: core/options-pages.php:1253 core/options-pages.php:1316
531
  msgid "Delete Taxonomy"
532
  msgstr "Taxonomie löschen"
533
 
534
+ #: core/options-pages.php:1258 core/options-pages.php:1321
535
  msgid "Labels"
536
  msgstr ""
537
 
538
+ #: core/options-pages.php:1260 core/options-pages.php:1323
539
  msgid "Singular"
540
  msgstr ""
541
 
542
+ #: core/options-pages.php:1261 core/options-pages.php:1324
543
  msgid "Plural"
544
  msgstr ""
545
 
546
+ #: core/options-pages.php:1262 core/options-pages.php:1325
547
  msgid "Menu Name"
548
  msgstr "Menü Name"
549
 
550
+ #: core/options-pages.php:1275 core/options-pages.php:1298
551
+ #: core/options-pages.php:1338 core/options-pages.php:1402
552
  msgid "Settings"
553
  msgstr "Einstellungen"
554
 
555
+ #: core/options-pages.php:1277 core/options-pages.php:1340
556
  msgid "Taxonomy Name"
557
  msgstr "Taxonomie Name"
558
 
559
+ #: core/options-pages.php:1278 core/options-pages.php:1341
560
  msgid "Hierarchical"
561
  msgstr "Hierarchisch"
562
 
563
+ #: core/options-pages.php:1279 core/options-pages.php:1342
564
  msgid "Column for List View"
565
  msgstr ""
566
 
567
+ #: core/options-pages.php:1280 core/options-pages.php:1300
568
+ #: core/options-pages.php:1343 core/options-pages.php:1404
569
  msgid "Filter for List View"
570
  msgstr ""
571
 
572
+ #: core/options-pages.php:1281 core/options-pages.php:1301
573
+ #: core/options-pages.php:1344 core/options-pages.php:1405
574
  msgid "Filter for Grid View / Media Popup"
575
  msgstr ""
576
 
577
+ #: core/options-pages.php:1282 core/options-pages.php:1302
578
+ #: core/options-pages.php:1345 core/options-pages.php:1406
579
  msgid "Edit in Media Popup"
580
  msgstr ""
581
 
582
+ #: core/options-pages.php:1283 core/options-pages.php:1346
583
  msgid "Show in Nav Menu"
584
  msgstr ""
585
 
586
+ #: core/options-pages.php:1284 core/options-pages.php:1347
587
  msgid "Remember Terms Order (sort)"
588
  msgstr ""
589
 
590
+ #: core/options-pages.php:1285 core/options-pages.php:1348
591
  msgid "Show in REST"
592
  msgstr ""
593
 
594
+ #: core/options-pages.php:1286 core/options-pages.php:1349
595
  msgid "Rewrite Slug"
596
  msgstr ""
597
 
598
+ #: core/options-pages.php:1287 core/options-pages.php:1350
599
  msgid "Slug with Front"
600
  msgstr ""
601
 
602
+ #: core/options-pages.php:1362
603
  msgid "Add New Taxonomy"
604
  msgstr "Neue Taxonomie hinzufügen"
605
 
606
+ #: core/options-pages.php:1372
607
  msgid "Non-Media Taxonomies"
608
  msgstr "Nicht-Medien Taxonimien"
609
 
610
+ #: core/options-pages.php:1435
611
  msgid "Options"
612
  msgstr "Optionen"
613
 
614
+ #: core/options-pages.php:1445 core/options-pages.php:1448
615
  msgid "Taxonomy archive pages"
616
  msgstr "Taxonomie Archiv Seiten"
617
 
618
+ #: core/options-pages.php:1449
619
  msgid "Turn on media taxonomy archive pages on the front-end"
620
  msgstr "Medien Taxonomie Archive auf der Website aktivieren"
621
 
622
+ #: core/options-pages.php:1450
623
  msgid ""
624
  "Re-save your permalink settings after this option change to make it work."
625
  msgstr ""
626
  "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
627
  "greift."
628
 
629
+ #: core/options-pages.php:1456 core/options-pages.php:1459
630
  msgid "Assign all like hierarchical"
631
  msgstr "Alle als hierarchisch zuweisen"
632
 
633
+ #: core/options-pages.php:1460
634
  msgid ""
635
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
636
  msgstr ""
637
  "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
638
  "Popups als hierarchisch an"
639
 
640
+ #: core/options-pages.php:1466 core/options-pages.php:1469
641
  msgid "Force filters"
642
  msgstr "Filter erzwingen"
643
 
644
+ #: core/options-pages.php:1470
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr ""
647
 
648
+ #: core/options-pages.php:1471
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1477 core/options-pages.php:1480
653
  msgid "Show count"
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1481
657
  msgid "Show item count per category for media filters"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1535
661
  msgid "Add New MIME Type"
662
  msgstr "Neuen MIME Type hinzufügen"
663
 
664
+ #: core/options-pages.php:1555 core/options-pages.php:1610
665
  msgid "Extension"
666
  msgstr "Dateiendung"
667
 
668
+ #: core/options-pages.php:1556 core/options-pages.php:1611
669
  msgid "MIME Type"
670
  msgstr "MIME Type"
671
 
672
+ #: core/options-pages.php:1557 core/options-pages.php:1612
673
  msgid "Singular Label"
674
  msgstr "Singular Beschriftung"
675
 
676
+ #: core/options-pages.php:1558 core/options-pages.php:1613
677
  msgid "Plural Label"
678
  msgstr "Plural Beschriftung"
679
 
680
+ #: core/options-pages.php:1559 core/options-pages.php:1589
681
+ #: core/options-pages.php:1602 core/options-pages.php:1614
682
  msgid "Add Filter"
683
  msgstr "Filter hinzufügen"
684
 
685
+ #: core/options-pages.php:1560 core/options-pages.php:1590
686
+ #: core/options-pages.php:1603 core/options-pages.php:1615
687
  msgid "Allow Upload"
688
  msgstr "Upload erlauben"
689
 
690
+ #: core/options-pages.php:1591 core/options-pages.php:1604
691
  msgid "Delete MIME Type"
692
  msgstr "MIME Type löschen"
693
 
694
+ #: core/options-pages.php:1651
695
  msgid "Save Changes"
696
  msgstr "Änderungen speichern"
697
 
698
+ #: core/options-pages.php:1681
699
  msgid "Changelog"
700
  msgstr ""
701
 
702
+ #: core/options-pages.php:1682
703
  msgid "What's new in"
704
  msgstr ""
705
 
706
+ #: core/options-pages.php:1682
707
  msgid "version"
708
  msgstr ""
709
 
710
+ #: core/options-pages.php:1685
711
  msgid "More features under the hood"
712
  msgstr ""
713
 
714
+ #: core/options-pages.php:1687
715
  msgid "Support"
716
  msgstr ""
717
 
718
+ #: core/options-pages.php:1688
719
  msgid "Feel free to ask for help on"
720
  msgstr ""
721
 
722
+ #: core/options-pages.php:1688
723
  msgid "Support is free for both versions of the plugin."
724
  msgstr ""
725
 
726
+ #: core/options-pages.php:1690
727
  msgid "Plugin rating"
728
  msgstr ""
729
 
730
+ #: core/options-pages.php:1691
731
  msgid "Please"
732
  msgstr ""
733
 
734
+ #: core/options-pages.php:1691
735
  msgid "vote for the plugin"
736
  msgstr ""
737
 
738
+ #: core/options-pages.php:1691
739
  msgid "Thanks!"
740
  msgstr ""
741
 
742
+ #: core/options-pages.php:1693
743
  msgid "Other plugins you may find useful"
744
  msgstr ""
745
 
746
+ #: core/options-pages.php:1732
747
  msgid "Utility"
748
  msgstr ""
749
 
750
+ #: core/options-pages.php:1755
751
  msgid "Vote!"
752
  msgstr ""
753
 
760
  msgstr ""
761
 
762
  #: core/taxonomies.php:333 core/taxonomies.php:339
763
+ #: enhanced-media-library.php:508
764
  msgid "Filter by"
765
  msgstr "Filtern nach"
766
 
767
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
768
  msgid "Not in a"
769
  msgstr "Nicht in"
770
 
771
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  msgid "Remove"
773
  msgstr "Entfernen"
774
 
775
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
776
  msgid "Deselect"
777
  msgstr "Auswahl entfernen"
778
 
779
+ #: core/taxonomies.php:1337
780
  msgid "Caption this image&hellip;"
781
  msgstr "Beschrifte dieses Bild&hellip;"
782
 
783
+ #: core/taxonomies.php:1341
784
  msgid "Describe this video&hellip;"
785
  msgstr "Beschreibe diese Video-Datei&hellip;"
786
 
787
+ #: core/taxonomies.php:1343
788
  msgid "Describe this audio file&hellip;"
789
  msgstr "Beschreibe diese Audio-Datei&hellip;"
790
 
791
+ #: core/taxonomies.php:1345
792
  msgid "Describe this media file&hellip;"
793
  msgstr "Beschreibe diese Medien-Datei&hellip;"
794
 
795
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
796
+ msgid "All Uncategorized"
797
+ msgstr "Alle unkategorisierten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
798
 
799
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
800
+ msgid "Reset All Filters"
801
+ msgstr "Alle Filter zurücksetzen"
802
 
803
+ #: enhanced-media-library.php:541
804
+ msgid "Uploaded to post #"
805
  msgstr ""
806
 
807
+ #: enhanced-media-library.php:542
808
+ msgid "Based On"
809
  msgstr ""
810
 
811
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
812
+ msgid "Media Categories"
813
  msgstr ""
814
 
815
+ #: enhanced-media-library.php:575
816
+ msgid "Media Category"
817
  msgstr ""
818
 
819
+ #: enhanced-media-library.php:577
820
+ msgid "All Media Categories"
821
  msgstr ""
822
 
823
+ #: enhanced-media-library.php:578
824
+ msgid "Edit Media Category"
825
  msgstr ""
826
 
827
+ #: enhanced-media-library.php:579
828
+ msgid "View Media Category"
829
  msgstr ""
830
 
831
+ #: enhanced-media-library.php:580
832
+ msgid "Update Media Category"
833
  msgstr ""
834
 
835
+ #: enhanced-media-library.php:581
836
+ msgid "Add New Media Category"
 
 
 
837
  msgstr ""
838
 
839
+ #: enhanced-media-library.php:582
840
+ msgid "New Media Category Name"
 
 
 
 
 
 
 
 
841
  msgstr ""
842
 
843
+ #: enhanced-media-library.php:583
844
+ msgid "Parent Media Category"
 
 
 
845
  msgstr ""
846
 
847
+ #: enhanced-media-library.php:584
848
+ msgid "Parent Media Category:"
 
 
 
 
 
849
  msgstr ""
850
 
851
+ #: enhanced-media-library.php:585
852
+ msgid "Search Media Categories"
853
  msgstr ""
854
 
855
  #. Plugin URI of the plugin/theme
865
  #. Author of the plugin/theme
866
  msgid "wpUXsolutions"
867
  msgstr ""
 
 
 
languages/enhanced-media-library-fr_FR.mo ADDED
Binary file
languages/enhanced-media-library-fr_FR.po ADDED
@@ -0,0 +1,921 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Enhanced Media Library (Free & PRO) in French (France)
2
+ # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
+ "POT-Creation-Date: 2017-01-13 03:03+0200\n"
7
+ "PO-Revision-Date: 2017-01-13 03:03+0200\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: fr\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
+ "X-Generator: Poedit 1.8.11\n"
16
+
17
+ #: core/mime-types.php:30
18
+ msgid "MIME Types settings restored."
19
+ msgstr "Réglages des types de MIME restaurés."
20
+
21
+ #: core/mime-types.php:39
22
+ msgid "MIME Types settings saved."
23
+ msgstr "Réglages des types de MIME enregistrés."
24
+
25
+ #: core/mime-types.php:116
26
+ #, php-format
27
+ msgid " <span class=\"count\">(%s)</span>"
28
+ msgid_plural " <span class=\"count\">(%s)</span>"
29
+ msgstr[0] ""
30
+ msgstr[1] ""
31
+
32
+ #: core/options-pages.php:97 core/options-pages.php:220
33
+ #: core/options-pages.php:313 core/options-pages.php:1080
34
+ #: core/options-pages.php:1204 core/options-pages.php:1529
35
+ #: core/options-pages.php:1729
36
+ msgid "Media Settings"
37
+ msgstr "Réglages de média"
38
+
39
+ #: core/options-pages.php:106 core/options-pages.php:285
40
+ msgid "Media Library"
41
+ msgstr "Bibliothèque des Médias"
42
+
43
+ #: core/options-pages.php:115
44
+ msgid "Taxonomies"
45
+ msgstr "Taxinomies"
46
+
47
+ #: core/options-pages.php:124 core/options-pages.php:287
48
+ msgid "MIME Types"
49
+ msgstr "Types de MIME"
50
+
51
+ #. Plugin Name of the plugin/theme
52
+ #: core/options-pages.php:135 core/options-pages.php:136
53
+ msgid "Enhanced Media Library"
54
+ msgstr "Enhanced Media Library"
55
+
56
+ #: core/options-pages.php:284
57
+ msgid "General"
58
+ msgstr "Général"
59
+
60
+ #: core/options-pages.php:286 core/options-pages.php:1225
61
+ msgid "Media Taxonomies"
62
+ msgstr "Taxinomies des médias"
63
+
64
+ #: core/options-pages.php:310 core/options-pages.php:622
65
+ #: core/options-pages.php:1076 core/options-pages.php:1201
66
+ #: core/options-pages.php:1525
67
+ msgid "You do not have sufficient permissions to access this page."
68
+ msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page."
69
+
70
+ #: core/options-pages.php:324
71
+ msgid "Image sizes"
72
+ msgstr "Tailles d'image"
73
+
74
+ #: core/options-pages.php:325
75
+ msgid ""
76
+ "The sizes listed below determine the maximum dimensions in pixels to use "
77
+ "when adding an image to the Media Library."
78
+ msgstr ""
79
+ "Les tailles listées ci-dessous déterminent les dimensions maximales en "
80
+ "pixels à utiliser quand vous ajoutez une image dans la bibliothèque des "
81
+ "médias."
82
+
83
+ #: core/options-pages.php:329
84
+ msgid "Thumbnail size"
85
+ msgstr "Taille de miniature"
86
+
87
+ #: core/options-pages.php:331
88
+ msgid "Width"
89
+ msgstr "Largeur"
90
+
91
+ #: core/options-pages.php:333
92
+ msgid "Height"
93
+ msgstr "Hauteur"
94
+
95
+ #: core/options-pages.php:336
96
+ msgid ""
97
+ "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
98
+ msgstr ""
99
+ "Recadrer les images pour parvenir aux dimensions exactes (normalement, les "
100
+ "miniatures sont proportionnelles)"
101
+
102
+ #: core/options-pages.php:341 core/options-pages.php:342
103
+ msgid "Medium size"
104
+ msgstr "Taille moyenne"
105
+
106
+ #: core/options-pages.php:343 core/options-pages.php:353
107
+ msgid "Max Width"
108
+ msgstr "Largeur maximum"
109
+
110
+ #: core/options-pages.php:345 core/options-pages.php:355
111
+ msgid "Max Height"
112
+ msgstr "Hauteur maximum"
113
+
114
+ #: core/options-pages.php:351 core/options-pages.php:352
115
+ msgid "Large size"
116
+ msgstr "Grande taille"
117
+
118
+ #: core/options-pages.php:368
119
+ msgid "Embeds"
120
+ msgstr "Intégration"
121
+
122
+ #: core/options-pages.php:375
123
+ msgid "Uploading Files"
124
+ msgstr "Mise en ligne des fichiers"
125
+
126
+ #: core/options-pages.php:382
127
+ msgid "Store uploads in this folder"
128
+ msgstr "Stocker les fichiers dans ce répertoire"
129
+
130
+ #: core/options-pages.php:386
131
+ #, php-format
132
+ msgid "Default is %s"
133
+ msgstr "La valeur par défaut est&nbsp;: %s"
134
+
135
+ #: core/options-pages.php:392
136
+ msgid "Full URL path to files"
137
+ msgstr "URL complète pour les fichiers"
138
+
139
+ #: core/options-pages.php:394
140
+ msgid "Configuring this is optional. By default, it should be blank."
141
+ msgstr "Configurer ceci est optionnel. Par défaut cela doit être vide."
142
+
143
+ #: core/options-pages.php:402
144
+ msgid "Organize my uploads into month- and year-based folders"
145
+ msgstr "Organiser mes fichiers envoyés dans des dossiers mensuels et annuels."
146
+
147
+ #: core/options-pages.php:474 core/options-pages.php:1249
148
+ #: core/options-pages.php:1264 core/options-pages.php:1327
149
+ #: core/options-pages.php:1399
150
+ msgid "Edit"
151
+ msgstr "Modifier"
152
+
153
+ #: core/options-pages.php:475
154
+ msgid "Close"
155
+ msgstr "Fermer"
156
+
157
+ #: core/options-pages.php:476 core/options-pages.php:1265
158
+ #: core/options-pages.php:1328
159
+ msgid "View"
160
+ msgstr "Afficher"
161
+
162
+ #: core/options-pages.php:477 core/options-pages.php:1266
163
+ #: core/options-pages.php:1329
164
+ msgid "Update"
165
+ msgstr "Mise à jour"
166
+
167
+ #: core/options-pages.php:478 core/options-pages.php:1267
168
+ #: core/options-pages.php:1330
169
+ msgid "Add New"
170
+ msgstr "Ajouter"
171
+
172
+ #: core/options-pages.php:479 core/options-pages.php:1268
173
+ #: core/options-pages.php:1331
174
+ msgid "New"
175
+ msgstr "Nouveau"
176
+
177
+ #: core/options-pages.php:480
178
+ msgid "Name"
179
+ msgstr "Nom"
180
+
181
+ #: core/options-pages.php:481 core/options-pages.php:1269
182
+ #: core/options-pages.php:1332
183
+ msgid "Parent"
184
+ msgstr "Parent"
185
+
186
+ #: core/options-pages.php:482 core/options-pages.php:718
187
+ #: core/options-pages.php:1263 core/options-pages.php:1326
188
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
189
+ msgid "All"
190
+ msgstr "Tous"
191
+
192
+ #: core/options-pages.php:483 core/options-pages.php:1270
193
+ #: core/options-pages.php:1333
194
+ msgid "Search"
195
+ msgstr "Rechercher"
196
+
197
+ #: core/options-pages.php:485 core/options-pages.php:1314
198
+ msgid "New Taxonomy"
199
+ msgstr "Nouvelle taxinomie"
200
+
201
+ #: core/options-pages.php:487
202
+ msgid "Remove Taxonomy"
203
+ msgstr "Retirer la taxinomie"
204
+
205
+ #: core/options-pages.php:488
206
+ msgid "Taxonomy will be removed."
207
+ msgstr "La taxinomie va être supprimée."
208
+
209
+ #: core/options-pages.php:489
210
+ msgid ""
211
+ "Taxonomy terms (categories) will remain intact in the database. If you "
212
+ "create a taxonomy with the same name in the future, its terms (categories) "
213
+ "will be available again."
214
+ msgstr ""
215
+ "Les termes (catégories) de la taxinomie resteront inchangés dans la base de "
216
+ "données. Si vous créez une taxinomie portant le même nom plus tard, ses "
217
+ "termes (catégories) seront de nouveau disponibles."
218
+
219
+ #: core/options-pages.php:490
220
+ msgid "Media items will remain intact."
221
+ msgstr "Les éléments média resteront inchangés."
222
+
223
+ #: core/options-pages.php:491
224
+ msgid "Are you still sure?"
225
+ msgstr "Confirmez-vous&nbsp;?"
226
+
227
+ #: core/options-pages.php:492
228
+ msgid "Yes, remove taxonomy"
229
+ msgstr "Oui, supprimer la taxinomie"
230
+
231
+ #: core/options-pages.php:494
232
+ msgid "Duplicate"
233
+ msgstr "Dupliquer"
234
+
235
+ #: core/options-pages.php:495
236
+ msgid "Taxonomy with the same name already exists. Please chose other one."
237
+ msgstr ""
238
+ "Une taxinomie avec le même nom existe déjà. Veuillez en choisir un autre."
239
+
240
+ #: core/options-pages.php:497
241
+ msgid "Empty Fields"
242
+ msgstr "Champs vides"
243
+
244
+ #: core/options-pages.php:498
245
+ msgid "Please choose Singular and Plural names for all new taxomonies."
246
+ msgstr ""
247
+ "Merci de choisir les noms singuliers et pluriels de toutes vos nouvelles "
248
+ "taxinomies."
249
+
250
+ #: core/options-pages.php:499
251
+ msgid "Please choose Singular name for all new taxomonies."
252
+ msgstr ""
253
+ "Veuillez choisir un nom au singulier pour toutes vos nouvelles taxinomies."
254
+
255
+ #: core/options-pages.php:500
256
+ msgid "Please choose Plural Name for all new taxomonies."
257
+ msgstr ""
258
+ "Merci de choisir un nom au pluriel pour toutes vos nouvelles taxinomies."
259
+
260
+ #: core/options-pages.php:502
261
+ msgid "Ok"
262
+ msgstr "OK"
263
+
264
+ #: core/options-pages.php:503 core/options-pages.php:508
265
+ #: core/options-pages.php:552 core/options-pages.php:597
266
+ msgid "Cancel"
267
+ msgstr "Annuler"
268
+
269
+ #: core/options-pages.php:505
270
+ msgid "Synchronize Now"
271
+ msgstr "Synchroniser maintenant"
272
+
273
+ #: core/options-pages.php:506 core/options-pages.php:594
274
+ msgid "This operation cannot be canceled! Are you still sure?"
275
+ msgstr "Cette opération ne peut pas être annulée&nbsp;! Êtes vous sûr&nbsp;?"
276
+
277
+ #: core/options-pages.php:507
278
+ msgid "Synchronize"
279
+ msgstr "Synchroniser"
280
+
281
+ #: core/options-pages.php:509
282
+ msgid "Synchronizing..."
283
+ msgstr "Synchronisation..."
284
+
285
+ #: core/options-pages.php:547 core/options-pages.php:1653
286
+ msgid "Restore WordPress default MIME Types"
287
+ msgstr "Restaurer les types de MIME par défaut de WordPress"
288
+
289
+ #: core/options-pages.php:548
290
+ msgid "Warning! All your custom MIME Types will be deleted by this operation."
291
+ msgstr ""
292
+ "Attention ! Tous les types de MIME personnalisés seront effacés par cette "
293
+ "opération."
294
+
295
+ #: core/options-pages.php:549
296
+ msgid "Restore Defaults"
297
+ msgstr "Restaurer les réglages par défaut."
298
+
299
+ #: core/options-pages.php:550
300
+ msgid "Restoring..."
301
+ msgstr "Restauration&hellip;"
302
+
303
+ #: core/options-pages.php:554
304
+ msgid "Please fill into all fields."
305
+ msgstr "Merci de remplir tous les champs."
306
+
307
+ #: core/options-pages.php:555
308
+ msgid "Duplicate extensions or MIME types. Please chose other one."
309
+ msgstr ""
310
+ "Duplication de l'extension ou du type MIME. Merci d'en spécifier un autre."
311
+
312
+ #: core/options-pages.php:592 core/options-pages.php:709
313
+ msgid "Complete Cleanup"
314
+ msgstr "Nettoyage complet"
315
+
316
+ #: core/options-pages.php:593
317
+ msgid ""
318
+ "You are about to <strong style=\"text-transform:uppercase\">delete all "
319
+ "plugin data</strong> from the database including backups."
320
+ msgstr ""
321
+ "Vous allez <strong style=\"text-transform:uppercase\">supprimer toutes les "
322
+ "données de l'extension</strong> de la base de données, sauvegardes incluses."
323
+
324
+ #: core/options-pages.php:595
325
+ msgid "Yes, delete all data"
326
+ msgstr "Oui, supprimer toutes les données"
327
+
328
+ #: core/options-pages.php:596
329
+ msgid "Cleaning..."
330
+ msgstr "Nettoyage..."
331
+
332
+ #: core/options-pages.php:627
333
+ msgid "Enhanced Media Library Settings"
334
+ msgstr "Réglages pour Enhanced Media Library"
335
+
336
+ #: core/options-pages.php:637
337
+ msgid "Export"
338
+ msgstr "Exportation"
339
+
340
+ #: core/options-pages.php:641
341
+ msgid ""
342
+ "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
+ "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
344
+ "configuration file. It allows you to easily import the configuration into "
345
+ "another website."
346
+ msgstr ""
347
+ "Les réglages de l’extension <strong>Réglages média</strong>, "
348
+ "<strong>Taxinomies</strong> et <strong>Types MIME</strong> seront exportés "
349
+ "dans un fichier de configuration. Cela vous permettra d’importer facilement "
350
+ "la configuration dans un autre site."
351
+
352
+ #: core/options-pages.php:646
353
+ msgid "Export Plugin Settings"
354
+ msgstr "Exporter les réglages de l'extension"
355
+
356
+ #: core/options-pages.php:656
357
+ msgid "Import"
358
+ msgstr "Importation"
359
+
360
+ #: core/options-pages.php:660
361
+ msgid ""
362
+ "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
363
+ "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
364
+ "configuration file which can be obtained by exporting the settings on "
365
+ "another website using the export button above."
366
+ msgstr ""
367
+ "Les réglages de l&rsquo;extension <strong>Réglages média</strong>, <strong> "
368
+ "Taxonomies</strong> et <strong>Types de MIME</strong> seront importés à "
369
+ "partir d&rsquo;un fichier de configuration qui peut être obtenu en exportant "
370
+ "les réglages d&rsquo;un autre site en utilisant le bouton d&rsquo;"
371
+ "exportation ci-dessus."
372
+
373
+ #: core/options-pages.php:661
374
+ msgid ""
375
+ "All plugin settings will be overridden by the import. You will have a chance "
376
+ "to restore current data from an automatic backup in case you are not "
377
+ "satisfied with the result of the import."
378
+ msgstr ""
379
+ "Tous les réglages de l’extension seront remplacés lors de l’importation. "
380
+ "Vous aurez une chance de restaurer les données actuelles à partir de la "
381
+ "sauvegarde automatique dans le cas où vous ne seriez pas satisfait du "
382
+ "résultat de l’importation."
383
+
384
+ #: core/options-pages.php:668
385
+ msgid "Import Plugin Settings"
386
+ msgstr "Importer les réglages de l'extension"
387
+
388
+ #: core/options-pages.php:680
389
+ msgid "Restore"
390
+ msgstr "Restaurer"
391
+
392
+ #: core/options-pages.php:686
393
+ msgid "No backup available at the moment."
394
+ msgstr "Aucune sauvegarde disponible en ce moment."
395
+
396
+ #: core/options-pages.php:688
397
+ msgid "Backup will be created automatically before any import operation."
398
+ msgstr ""
399
+ "Une sauvegarde sera créée automatiquement avant toute opération "
400
+ "d'importation. "
401
+
402
+ #: core/options-pages.php:692
403
+ msgid ""
404
+ "The backup has been automatically created before the latest import operation."
405
+ msgstr ""
406
+ "La sauvegarde a été créée automatiquement avant la dernière opération "
407
+ "d’importation."
408
+
409
+ #: core/options-pages.php:696
410
+ msgid "Restore Settings from the Backup"
411
+ msgstr "Restaurer les réglages à partir de la sauvegarde"
412
+
413
+ #: core/options-pages.php:716
414
+ msgid "What will be deleted:"
415
+ msgstr "Ce qui sera supprimé&nbsp;:"
416
+
417
+ #: core/options-pages.php:721
418
+ msgid "All plugin options"
419
+ msgstr "Toutes les options de l'extension"
420
+
421
+ #: core/options-pages.php:722
422
+ msgid "All plugin backups stored in database"
423
+ msgstr "Toutes les sauvegardes de l'extension stockées dans la base de données"
424
+
425
+ #: core/options-pages.php:726
426
+ msgid "What will remain intact:"
427
+ msgstr "Ce qui restera intact&nbsp;:"
428
+
429
+ #: core/options-pages.php:727
430
+ msgid "All media items"
431
+ msgstr "Tous les éléments média"
432
+
433
+ #: core/options-pages.php:728
434
+ msgid "All taxonomies not listed above"
435
+ msgstr "Toutes les taxonomies non listées ci-dessus"
436
+
437
+ #: core/options-pages.php:731
438
+ msgid ""
439
+ "The plugin cannot delete itself because of security reason. Please delete it "
440
+ "manually from plugin list after cleanup."
441
+ msgstr ""
442
+ "L'extension en peut pas se supprimer elle même pour des raisons de sécurité. "
443
+ "Veuillez la supprimer manuellement de la liste des extensions après le "
444
+ "nettoyage."
445
+
446
+ #: core/options-pages.php:733
447
+ msgid ""
448
+ "If you are not sure about this operation please create a backup of your "
449
+ "database prior to cleanup!"
450
+ msgstr ""
451
+ "Si vous n’êtes pas certain de cette opération, veuillez d’abord créer une "
452
+ "sauvegarde de votre base de données avant le nettoyage&nbsp;!"
453
+
454
+ #: core/options-pages.php:739
455
+ msgid "Delete All Data & Deactivate"
456
+ msgstr "Supprimer toutes les données et désactiver"
457
+
458
+ #: core/options-pages.php:839
459
+ msgid "Please upload a file to import settings."
460
+ msgstr "Merci d'envoyer un ficher pour importer les réglages."
461
+
462
+ #: core/options-pages.php:865
463
+ msgid "Plugin settings imported."
464
+ msgstr "Réglages de l'extension importés."
465
+
466
+ #: core/options-pages.php:912
467
+ msgid "Plugin settings restored from the backup."
468
+ msgstr "Réglages de l'extension restaurés à partir de la sauvegarde."
469
+
470
+ #: core/options-pages.php:1101
471
+ msgid "Media Items Order"
472
+ msgstr "Ordre des éléments média"
473
+
474
+ #: core/options-pages.php:1108
475
+ msgid "Order media items by"
476
+ msgstr "Ordonner les éléments média par"
477
+
478
+ #: core/options-pages.php:1111
479
+ msgid "Date"
480
+ msgstr "Date"
481
+
482
+ #: core/options-pages.php:1112
483
+ msgid "Title"
484
+ msgstr "Titre"
485
+
486
+ #: core/options-pages.php:1113
487
+ msgid "Custom Order"
488
+ msgstr "Tri personnalisé"
489
+
490
+ #: core/options-pages.php:1115 core/options-pages.php:1127
491
+ msgid "For media library and media popups"
492
+ msgstr "Pour la bibliothèque et les popups média"
493
+
494
+ #: core/options-pages.php:1116
495
+ msgid "Option allows to change order by drag and drop with Custom Order value."
496
+ msgstr ""
497
+ "Option permettant de changer l'ordre en glisser / déposer avec une valeur "
498
+ "d'ordre personnalisé."
499
+
500
+ #: core/options-pages.php:1121
501
+ msgid "Sort order"
502
+ msgstr "Ordre de tri"
503
+
504
+ #: core/options-pages.php:1124
505
+ msgid "Ascending"
506
+ msgstr "Croissant"
507
+
508
+ #: core/options-pages.php:1125
509
+ msgid "Descending"
510
+ msgstr "Décroissant"
511
+
512
+ #: core/options-pages.php:1140
513
+ msgid "Media Shortcodes"
514
+ msgstr "Codes courts de média"
515
+
516
+ #: core/options-pages.php:1147 core/options-pages.php:1150
517
+ msgid "Enhanced media shortcodes"
518
+ msgstr "Codes courts améliorés de média"
519
+
520
+ #: core/options-pages.php:1151
521
+ msgid ""
522
+ "Enhance WordPress media shortcodes to make them understand media taxonomies, "
523
+ "upload date, and media items number limit"
524
+ msgstr ""
525
+ "Améliorer les codes courts de média WordPress pour prendre en compte les "
526
+ "taxinomies, date de téléchargement et limite d’affichage des éléments médias."
527
+
528
+ #: core/options-pages.php:1152
529
+ msgid "Gallery example:"
530
+ msgstr "Exemple de galerie&nbsp;:"
531
+
532
+ #: core/options-pages.php:1153
533
+ msgid "Audio playlist example:"
534
+ msgstr "Exemple de liste de lecture audio&nbsp;:"
535
+
536
+ #: core/options-pages.php:1154
537
+ msgid "Video playlist example:"
538
+ msgstr "Exemple de liste de lecture vidéo&nbsp;:"
539
+
540
+ #: core/options-pages.php:1156
541
+ #, php-format
542
+ msgid ""
543
+ "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
544
+ msgstr ""
545
+ "%sAvertissement :%s Incompatibilité possible avec d’autres extensions/"
546
+ "thèmes !"
547
+
548
+ #: core/options-pages.php:1158
549
+ #, php-format
550
+ msgid "%sLearn more%s."
551
+ msgstr "%sEn savoir plus%s"
552
+
553
+ #: core/options-pages.php:1160
554
+ #, php-format
555
+ msgid ""
556
+ "Please check out your gallery front-end and back-end functionality once this "
557
+ "option activated. If you find an issue please inform plugin authors at %s or "
558
+ "%s."
559
+ msgstr ""
560
+ "Veuillez vérifier les fonctionnalités sur l’interface publique et "
561
+ "l’interface d’administration une fois cette option activée. Si vous "
562
+ "rencontrez un problème, veuillez en informer les auteurs de l’extension sur "
563
+ "%s ou %s."
564
+
565
+ #: core/options-pages.php:1229 core/options-pages.php:1376
566
+ msgid "Assign following taxonomies to Media Library:"
567
+ msgstr "Assigner les taxinomies suivantes à la Bibliothèque des Médias&nbsp;:"
568
+
569
+ #: core/options-pages.php:1248 core/options-pages.php:1314
570
+ #: core/options-pages.php:1398
571
+ msgid "Assign Taxonomy"
572
+ msgstr "Assigner la taxinomie"
573
+
574
+ #: core/options-pages.php:1249 core/options-pages.php:1399
575
+ msgid "Edit Taxonomy"
576
+ msgstr "Modifier la taxinomie"
577
+
578
+ #: core/options-pages.php:1253 core/options-pages.php:1316
579
+ msgid "Delete Taxonomy"
580
+ msgstr "Supprimer la taxinomie"
581
+
582
+ #: core/options-pages.php:1258 core/options-pages.php:1321
583
+ msgid "Labels"
584
+ msgstr "Libellés"
585
+
586
+ #: core/options-pages.php:1260 core/options-pages.php:1323
587
+ msgid "Singular"
588
+ msgstr "Singulier"
589
+
590
+ #: core/options-pages.php:1261 core/options-pages.php:1324
591
+ msgid "Plural"
592
+ msgstr "Pluriel"
593
+
594
+ #: core/options-pages.php:1262 core/options-pages.php:1325
595
+ msgid "Menu Name"
596
+ msgstr "Nom du menu"
597
+
598
+ #: core/options-pages.php:1275 core/options-pages.php:1298
599
+ #: core/options-pages.php:1338 core/options-pages.php:1402
600
+ msgid "Settings"
601
+ msgstr "Réglages"
602
+
603
+ #: core/options-pages.php:1277 core/options-pages.php:1340
604
+ msgid "Taxonomy Name"
605
+ msgstr "Nom de la taxinomie"
606
+
607
+ #: core/options-pages.php:1278 core/options-pages.php:1341
608
+ msgid "Hierarchical"
609
+ msgstr "Hiérarchique"
610
+
611
+ #: core/options-pages.php:1279 core/options-pages.php:1342
612
+ msgid "Column for List View"
613
+ msgstr "Colonnes dans la vue en liste"
614
+
615
+ #: core/options-pages.php:1280 core/options-pages.php:1300
616
+ #: core/options-pages.php:1343 core/options-pages.php:1404
617
+ msgid "Filter for List View"
618
+ msgstr "Filtrer dans la vue en liste"
619
+
620
+ #: core/options-pages.php:1281 core/options-pages.php:1301
621
+ #: core/options-pages.php:1344 core/options-pages.php:1405
622
+ msgid "Filter for Grid View / Media Popup"
623
+ msgstr "Filtrer dans la vue en grille / Popup de média"
624
+
625
+ #: core/options-pages.php:1282 core/options-pages.php:1302
626
+ #: core/options-pages.php:1345 core/options-pages.php:1406
627
+ msgid "Edit in Media Popup"
628
+ msgstr "Modifier dans les Popups des médias"
629
+
630
+ #: core/options-pages.php:1283 core/options-pages.php:1346
631
+ msgid "Show in Nav Menu"
632
+ msgstr "Afficher dans le menu de navigation"
633
+
634
+ #: core/options-pages.php:1284 core/options-pages.php:1347
635
+ msgid "Remember Terms Order (sort)"
636
+ msgstr "Se souvenir de l'ordre des termes (tri)"
637
+
638
+ #: core/options-pages.php:1285 core/options-pages.php:1348
639
+ msgid "Show in REST"
640
+ msgstr "Afficher dans REST"
641
+
642
+ #: core/options-pages.php:1286 core/options-pages.php:1349
643
+ msgid "Rewrite Slug"
644
+ msgstr "Réécrire l’identifiant"
645
+
646
+ #: core/options-pages.php:1287 core/options-pages.php:1350
647
+ msgid "Slug with Front"
648
+ msgstr "Identifiant dans l’URL"
649
+
650
+ #: core/options-pages.php:1362
651
+ msgid "Add New Taxonomy"
652
+ msgstr "Ajout de nouvelle taxinomie"
653
+
654
+ #: core/options-pages.php:1372
655
+ msgid "Non-Media Taxonomies"
656
+ msgstr "Taxinomies pour les non-médias"
657
+
658
+ #: core/options-pages.php:1435
659
+ msgid "Options"
660
+ msgstr "Options"
661
+
662
+ #: core/options-pages.php:1445 core/options-pages.php:1448
663
+ msgid "Taxonomy archive pages"
664
+ msgstr "Taxinomie pour les pages d'archives"
665
+
666
+ #: core/options-pages.php:1449
667
+ msgid "Turn on media taxonomy archive pages on the front-end"
668
+ msgstr ""
669
+ "Activer la taxinomie pour les page d’archives de médias sur l’interface "
670
+ "publique"
671
+
672
+ #: core/options-pages.php:1450
673
+ msgid ""
674
+ "Re-save your permalink settings after this option change to make it work."
675
+ msgstr ""
676
+ "Pour que cela fonctionne, enregistrez à nouveau vos réglages de permaliens "
677
+ "après avoir changé cette option."
678
+
679
+ #: core/options-pages.php:1456 core/options-pages.php:1459
680
+ msgid "Assign all like hierarchical"
681
+ msgstr "Les rendre tous comme les taxinomies hiérarchiques"
682
+
683
+ #: core/options-pages.php:1460
684
+ msgid ""
685
+ "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
686
+ msgstr ""
687
+ "Afficher les taxinomies non-hiérarchiques comme des taxinomies hiérarchiques "
688
+ "dans la vue en grille / Popup pour les médias"
689
+
690
+ #: core/options-pages.php:1466 core/options-pages.php:1469
691
+ msgid "Force filters"
692
+ msgstr "Forcer les filtres"
693
+
694
+ #: core/options-pages.php:1470
695
+ msgid "Show media filters for ANY Media Popup"
696
+ msgstr "Afficher les filtres de média dans toutes les popup de média."
697
+
698
+ #: core/options-pages.php:1471
699
+ msgid "Try this if filters are not shown for third-party plugins or themes."
700
+ msgstr ""
701
+ "Essayez ceci si les filtres ne sont pas affichés pour des thèmes ou "
702
+ "extensions."
703
+
704
+ #: core/options-pages.php:1477 core/options-pages.php:1480
705
+ msgid "Show count"
706
+ msgstr "Afficher le nombre"
707
+
708
+ #: core/options-pages.php:1481
709
+ msgid "Show item count per category for media filters"
710
+ msgstr "Afficher le nombre de médias par catégorie sur les filtres de média"
711
+
712
+ #: core/options-pages.php:1535
713
+ msgid "Add New MIME Type"
714
+ msgstr "Ajouter un type de MIME"
715
+
716
+ #: core/options-pages.php:1555 core/options-pages.php:1610
717
+ msgid "Extension"
718
+ msgstr "Extension"
719
+
720
+ #: core/options-pages.php:1556 core/options-pages.php:1611
721
+ msgid "MIME Type"
722
+ msgstr "Type de MIME"
723
+
724
+ #: core/options-pages.php:1557 core/options-pages.php:1612
725
+ msgid "Singular Label"
726
+ msgstr "Libellé pour le singulier"
727
+
728
+ #: core/options-pages.php:1558 core/options-pages.php:1613
729
+ msgid "Plural Label"
730
+ msgstr "Libellé pour le pluriel"
731
+
732
+ #: core/options-pages.php:1559 core/options-pages.php:1589
733
+ #: core/options-pages.php:1602 core/options-pages.php:1614
734
+ msgid "Add Filter"
735
+ msgstr "Ajouter un filtre"
736
+
737
+ #: core/options-pages.php:1560 core/options-pages.php:1590
738
+ #: core/options-pages.php:1603 core/options-pages.php:1615
739
+ msgid "Allow Upload"
740
+ msgstr "Autoriser la mise en ligne"
741
+
742
+ #: core/options-pages.php:1591 core/options-pages.php:1604
743
+ msgid "Delete MIME Type"
744
+ msgstr "Supprimer le type de MIME"
745
+
746
+ #: core/options-pages.php:1651
747
+ msgid "Save Changes"
748
+ msgstr "Enregistrer les changements"
749
+
750
+ #: core/options-pages.php:1681
751
+ msgid "Changelog"
752
+ msgstr "Journal des modifications"
753
+
754
+ #: core/options-pages.php:1682
755
+ msgid "What's new in"
756
+ msgstr "Les nouveautés de la"
757
+
758
+ #: core/options-pages.php:1682
759
+ msgid "version"
760
+ msgstr "version"
761
+
762
+ #: core/options-pages.php:1685
763
+ msgid "More features under the hood"
764
+ msgstr "Plus de fonctionnalités sous le capot"
765
+
766
+ #: core/options-pages.php:1687
767
+ msgid "Support"
768
+ msgstr "Support"
769
+
770
+ #: core/options-pages.php:1688
771
+ msgid "Feel free to ask for help on"
772
+ msgstr "N’hésitez pas à demander de l’aide sur"
773
+
774
+ #: core/options-pages.php:1688
775
+ msgid "Support is free for both versions of the plugin."
776
+ msgstr "Le support est gratuit pour les deux versions de l’extension."
777
+
778
+ #: core/options-pages.php:1690
779
+ msgid "Plugin rating"
780
+ msgstr "Avis sur l’extension"
781
+
782
+ #: core/options-pages.php:1691
783
+ msgid "Please"
784
+ msgstr "Merci de"
785
+
786
+ #: core/options-pages.php:1691
787
+ msgid "vote for the plugin"
788
+ msgstr "voter pour l’extension"
789
+
790
+ #: core/options-pages.php:1691
791
+ msgid "Thanks!"
792
+ msgstr "Merci&nbsp;!"
793
+
794
+ #: core/options-pages.php:1693
795
+ msgid "Other plugins you may find useful"
796
+ msgstr "D’autres extensions peuvent vous être utiles"
797
+
798
+ #: core/options-pages.php:1732
799
+ msgid "Utility"
800
+ msgstr "Outils"
801
+
802
+ #: core/options-pages.php:1755
803
+ msgid "Vote!"
804
+ msgstr "Vote&nbsp;!"
805
+
806
+ #: core/taxonomies.php:101
807
+ msgid "Media Taxonomies settings saved."
808
+ msgstr "Réglages de taxonomies média enregistrés."
809
+
810
+ #: core/taxonomies.php:159
811
+ msgid "Media Library settings saved."
812
+ msgstr "Réglages de bibliothèque enregistrés."
813
+
814
+ #: core/taxonomies.php:333 core/taxonomies.php:339
815
+ #: enhanced-media-library.php:508
816
+ msgid "Filter by"
817
+ msgstr "Filtrer par"
818
+
819
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
820
+ msgid "Not in a"
821
+ msgstr "Non présent dans"
822
+
823
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
824
+ msgid "Remove"
825
+ msgstr ""
826
+
827
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
828
+ msgid "Deselect"
829
+ msgstr ""
830
+
831
+ #: core/taxonomies.php:1337
832
+ msgid "Caption this image&hellip;"
833
+ msgstr ""
834
+
835
+ #: core/taxonomies.php:1341
836
+ msgid "Describe this video&hellip;"
837
+ msgstr ""
838
+
839
+ #: core/taxonomies.php:1343
840
+ msgid "Describe this audio file&hellip;"
841
+ msgstr ""
842
+
843
+ #: core/taxonomies.php:1345
844
+ msgid "Describe this media file&hellip;"
845
+ msgstr ""
846
+
847
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
848
+ msgid "All Uncategorized"
849
+ msgstr "Tous sans catégories"
850
+
851
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
852
+ msgid "Reset All Filters"
853
+ msgstr "Réinitialiser tous les filtres"
854
+
855
+ #: enhanced-media-library.php:541
856
+ msgid "Uploaded to post #"
857
+ msgstr "Mis en ligne sur l&rsquo;article #"
858
+
859
+ #: enhanced-media-library.php:542
860
+ msgid "Based On"
861
+ msgstr "Basé sur"
862
+
863
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
864
+ msgid "Media Categories"
865
+ msgstr "Catégories média"
866
+
867
+ #: enhanced-media-library.php:575
868
+ msgid "Media Category"
869
+ msgstr "Catégorie média"
870
+
871
+ #: enhanced-media-library.php:577
872
+ msgid "All Media Categories"
873
+ msgstr "Toutes les catégories média"
874
+
875
+ #: enhanced-media-library.php:578
876
+ msgid "Edit Media Category"
877
+ msgstr "Modifier la catégorie média"
878
+
879
+ #: enhanced-media-library.php:579
880
+ msgid "View Media Category"
881
+ msgstr "Voir la catégorie média"
882
+
883
+ #: enhanced-media-library.php:580
884
+ msgid "Update Media Category"
885
+ msgstr "Mettre à jour la catégorie média"
886
+
887
+ #: enhanced-media-library.php:581
888
+ msgid "Add New Media Category"
889
+ msgstr "Ajouter une nouvelle catégorie média"
890
+
891
+ #: enhanced-media-library.php:582
892
+ msgid "New Media Category Name"
893
+ msgstr "Nouveau nom de la catégorie média"
894
+
895
+ #: enhanced-media-library.php:583
896
+ msgid "Parent Media Category"
897
+ msgstr "Catégorie média parente"
898
+
899
+ #: enhanced-media-library.php:584
900
+ msgid "Parent Media Category:"
901
+ msgstr "Catégorie média parente&nbsp;:"
902
+
903
+ #: enhanced-media-library.php:585
904
+ msgid "Search Media Categories"
905
+ msgstr "Rechercher dans les catégories média"
906
+
907
+ #. Plugin URI of the plugin/theme
908
+ #. Author URI of the plugin/theme
909
+ msgid "http://wpUXsolutions.com"
910
+ msgstr "http://wpUXsolutions.com"
911
+
912
+ #. Description of the plugin/theme
913
+ msgid ""
914
+ "This plugin will be handy for those who need to manage a lot of media files."
915
+ msgstr ""
916
+ "Cette extension sera utile pour ceux qui ont besoin de gérer beaucoup de "
917
+ "fichiers média"
918
+
919
+ #. Author of the plugin/theme
920
+ msgid "wpUXsolutions"
921
+ msgstr "wpUXsolutions"
languages/enhanced-media-library-he_IL.mo CHANGED
Binary file
languages/enhanced-media-library-he_IL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:36+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:36+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Hebrew (Israel)\n"
9
  "Language: he_IL\n"
@@ -31,13 +31,14 @@ msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
  msgstr[1] ""
33
 
34
- #: core/options-pages.php:97 core/options-pages.php:239
35
- #: core/options-pages.php:1006 core/options-pages.php:1130
36
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
37
  msgid "Media Settings"
38
  msgstr "הגדרות מדיה"
39
 
40
- #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "ספריית מדיה"
43
 
@@ -45,282 +46,282 @@ msgstr "ספריית מדיה"
45
  msgid "Taxonomies"
46
  msgstr "תוית מיון"
47
 
48
- #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "סוגי קבצים"
51
 
 
52
  #: core/options-pages.php:135 core/options-pages.php:136
53
  msgid "Enhanced Media Library"
54
  msgstr "ספרית מדיה משופרת"
55
 
56
- #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr ""
59
 
60
- #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "תויות מיון למדיה"
63
 
64
- #: core/options-pages.php:236 core/options-pages.php:548
65
- #: core/options-pages.php:1002 core/options-pages.php:1127
66
- #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
69
 
70
- #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr ""
73
 
74
- #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
78
  msgstr ""
79
 
80
- #: core/options-pages.php:255
81
  msgid "Thumbnail size"
82
  msgstr ""
83
 
84
- #: core/options-pages.php:257
85
  msgid "Width"
86
  msgstr ""
87
 
88
- #: core/options-pages.php:259
89
  msgid "Height"
90
  msgstr ""
91
 
92
- #: core/options-pages.php:262
93
  msgid ""
94
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:267 core/options-pages.php:268
98
  msgid "Medium size"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:269 core/options-pages.php:279
102
  msgid "Max Width"
103
  msgstr ""
104
 
105
- #: core/options-pages.php:271 core/options-pages.php:281
106
  msgid "Max Height"
107
  msgstr ""
108
 
109
- #: core/options-pages.php:277 core/options-pages.php:278
110
  msgid "Large size"
111
  msgstr ""
112
 
113
- #: core/options-pages.php:294
114
  msgid "Embeds"
115
  msgstr ""
116
 
117
- #: core/options-pages.php:301
118
  msgid "Uploading Files"
119
  msgstr ""
120
 
121
- #: core/options-pages.php:308
122
  msgid "Store uploads in this folder"
123
  msgstr ""
124
 
125
- #: core/options-pages.php:312
126
  #, php-format
127
  msgid "Default is %s"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:318
131
  msgid "Full URL path to files"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:320
135
  msgid "Configuring this is optional. By default, it should be blank."
136
  msgstr ""
137
 
138
- #: core/options-pages.php:328
139
  msgid "Organize my uploads into month- and year-based folders"
140
  msgstr ""
141
 
142
- #: core/options-pages.php:400 core/options-pages.php:1175
143
- #: core/options-pages.php:1190 core/options-pages.php:1253
144
- #: core/options-pages.php:1325
145
  msgid "Edit"
146
  msgstr "ערוך"
147
 
148
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
149
  msgid "Close"
150
  msgstr "סגור"
151
 
152
- #: core/options-pages.php:402 core/options-pages.php:1191
153
- #: core/options-pages.php:1254
154
  msgid "View"
155
  msgstr "צפה"
156
 
157
- #: core/options-pages.php:403 core/options-pages.php:1192
158
- #: core/options-pages.php:1255
159
  msgid "Update"
160
  msgstr "עדכן"
161
 
162
- #: core/options-pages.php:404 core/options-pages.php:1193
163
- #: core/options-pages.php:1256
164
  msgid "Add New"
165
  msgstr "הוסף חדש"
166
 
167
- #: core/options-pages.php:405 core/options-pages.php:1194
168
- #: core/options-pages.php:1257
169
  msgid "New"
170
  msgstr "חדש"
171
 
172
- #: core/options-pages.php:406
173
  msgid "Name"
174
  msgstr "שם"
175
 
176
- #: core/options-pages.php:407 core/options-pages.php:1195
177
- #: core/options-pages.php:1258
178
  msgid "Parent"
179
  msgstr "הורה"
180
 
181
- #: core/options-pages.php:408 core/options-pages.php:644
182
- #: core/options-pages.php:1189 core/options-pages.php:1252
183
- #: core/taxonomies.php:340 enhanced-media-library.php:503
184
  msgid "All"
185
  msgstr "הכל"
186
 
187
- #: core/options-pages.php:409 core/options-pages.php:1196
188
- #: core/options-pages.php:1259
189
  msgid "Search"
190
  msgstr "חיפוש"
191
 
192
- #: core/options-pages.php:411 core/options-pages.php:1240
193
  msgid "New Taxonomy"
194
  msgstr "תוית מיון חדשה"
195
 
196
- #: core/options-pages.php:413
197
  msgid "Remove Taxonomy"
198
  msgstr ""
199
 
200
- #: core/options-pages.php:414
201
  msgid "Taxonomy will be removed."
202
  msgstr ""
203
 
204
- #: core/options-pages.php:415
205
  msgid ""
206
  "Taxonomy terms (categories) will remain intact in the database. If you "
207
  "create a taxonomy with the same name in the future, its terms (categories) "
208
  "will be available again."
209
  msgstr ""
210
 
211
- #: core/options-pages.php:416
212
  msgid "Media items will remain intact."
213
  msgstr ""
214
 
215
- #: core/options-pages.php:417
216
  msgid "Are you still sure?"
217
  msgstr ""
218
 
219
- #: core/options-pages.php:418
220
  msgid "Yes, remove taxonomy"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:420
224
  msgid "Duplicate"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:421
228
  msgid "Taxonomy with the same name already exists. Please chose other one."
229
  msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
230
 
231
- #: core/options-pages.php:423
232
  msgid "Empty Fields"
233
  msgstr ""
234
 
235
- #: core/options-pages.php:424
236
  msgid "Please choose Singular and Plural names for all new taxomonies."
237
  msgstr ""
238
 
239
- #: core/options-pages.php:425
240
  msgid "Please choose Singular name for all new taxomonies."
241
  msgstr ""
242
 
243
- #: core/options-pages.php:426
244
  msgid "Please choose Plural Name for all new taxomonies."
245
  msgstr ""
246
 
247
- #: core/options-pages.php:428
248
  msgid "Ok"
249
  msgstr ""
250
 
251
- #: core/options-pages.php:429 core/options-pages.php:434
252
- #: core/options-pages.php:478 core/options-pages.php:523
253
- #: pro/enhanced-media-library-pro.php:133
254
  msgid "Cancel"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:431 pro/core/options-pages.php:185
258
  msgid "Synchronize Now"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:432 core/options-pages.php:520
262
  msgid "This operation cannot be canceled! Are you still sure?"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:433
266
  msgid "Synchronize"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:435
270
  msgid "Synchronizing..."
271
  msgstr ""
272
 
273
- #: core/options-pages.php:473 core/options-pages.php:1579
274
  msgid "Restore WordPress default MIME Types"
275
  msgstr ""
276
 
277
- #: core/options-pages.php:474
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
280
 
281
- #: core/options-pages.php:475
282
  msgid "Restore Defaults"
283
  msgstr ""
284
 
285
- #: core/options-pages.php:476
286
  msgid "Restoring..."
287
  msgstr ""
288
 
289
- #: core/options-pages.php:480
290
  msgid "Please fill into all fields."
291
  msgstr "אנא הזן את כל השדות"
292
 
293
- #: core/options-pages.php:481
294
  msgid "Duplicate extensions or MIME types. Please chose other one."
295
  msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
296
 
297
- #: core/options-pages.php:518 core/options-pages.php:635
298
  msgid "Complete Cleanup"
299
  msgstr ""
300
 
301
- #: core/options-pages.php:519
302
  msgid ""
303
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
  "plugin data</strong> from the database including backups."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:521
308
  msgid "Yes, delete all data"
309
  msgstr ""
310
 
311
- #: core/options-pages.php:522
312
  msgid "Cleaning..."
313
  msgstr ""
314
 
315
- #: core/options-pages.php:553
316
  msgid "Enhanced Media Library Settings"
317
  msgstr ""
318
 
319
- #: core/options-pages.php:563
320
  msgid "Export"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:567
324
  msgid ""
325
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -328,15 +329,15 @@ msgid ""
328
  "another website."
329
  msgstr ""
330
 
331
- #: core/options-pages.php:572
332
  msgid "Export Plugin Settings"
333
  msgstr ""
334
 
335
- #: core/options-pages.php:582
336
  msgid "Import"
337
  msgstr ""
338
 
339
- #: core/options-pages.php:586
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -344,173 +345,168 @@ msgid ""
344
  "another website using the export button above."
345
  msgstr ""
346
 
347
- #: core/options-pages.php:587
348
  msgid ""
349
  "All plugin settings will be overridden by the import. You will have a chance "
350
  "to restore current data from an automatic backup in case you are not "
351
  "satisfied with the result of the import."
352
  msgstr ""
353
 
354
- #: core/options-pages.php:594
355
  msgid "Import Plugin Settings"
356
  msgstr ""
357
 
358
- #: core/options-pages.php:606
359
  msgid "Restore"
360
  msgstr ""
361
 
362
- #: core/options-pages.php:612
363
  msgid "No backup available at the moment."
364
  msgstr ""
365
 
366
- #: core/options-pages.php:614
367
  msgid "Backup will be created automatically before any import operation."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:618
371
  msgid ""
372
  "The backup has been automatically created before the latest import operation."
373
  msgstr ""
374
 
375
- #: core/options-pages.php:622
376
  msgid "Restore Settings from the Backup"
377
  msgstr ""
378
 
379
- #: core/options-pages.php:642
380
  msgid "What will be deleted:"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:647
384
  msgid "All plugin options"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:648
388
  msgid "All plugin backups stored in database"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:652
392
  msgid "What will remain intact:"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:653
396
  msgid "All media items"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:654
400
  msgid "All taxonomies not listed above"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:657
404
  msgid ""
405
  "The plugin cannot delete itself because of security reason. Please delete it "
406
  "manually from plugin list after cleanup."
407
  msgstr ""
408
 
409
- #: core/options-pages.php:659
410
  msgid ""
411
  "If you are not sure about this operation please create a backup of your "
412
  "database prior to cleanup!"
413
  msgstr ""
414
 
415
- #: core/options-pages.php:665
416
  msgid "Delete All Data & Deactivate"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:765
420
  msgid "Please upload a file to import settings."
421
  msgstr ""
422
 
423
- #: core/options-pages.php:791
424
  msgid "Plugin settings imported."
425
  msgstr ""
426
 
427
- #: core/options-pages.php:838
428
  msgid "Plugin settings restored from the backup."
429
  msgstr ""
430
 
431
- #: core/options-pages.php:1027
432
  msgid "Media Items Order"
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1034
436
  msgid "Order media items by"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1037 pro/core/medialist.php:28
440
- #: pro/core/medialist.php:73
441
  msgid "Date"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:1038 pro/core/medialist.php:31
445
- #: pro/core/medialist.php:76
446
  msgid "Title"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:1039 pro/core/medialist.php:34
450
- #: pro/core/medialist.php:79
451
  msgid "Custom Order"
452
  msgstr ""
453
 
454
- #: core/options-pages.php:1041 core/options-pages.php:1053
455
  msgid "For media library and media popups"
456
  msgstr ""
457
 
458
- #: core/options-pages.php:1042
459
  msgid "Option allows to change order by drag and drop with Custom Order value."
460
  msgstr ""
461
 
462
- #: core/options-pages.php:1047
463
  msgid "Sort order"
464
  msgstr ""
465
 
466
- #: core/options-pages.php:1050 pro/core/medialist.php:47
467
- #: pro/core/medialist.php:92
468
  msgid "Ascending"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1051 pro/core/medialist.php:50
472
- #: pro/core/medialist.php:95
473
  msgid "Descending"
474
  msgstr ""
475
 
476
- #: core/options-pages.php:1066
477
  msgid "Media Shortcodes"
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1073 core/options-pages.php:1076
481
  msgid "Enhanced media shortcodes"
482
  msgstr ""
483
 
484
- #: core/options-pages.php:1077
485
  msgid ""
486
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
487
  "upload date, and media items number limit"
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1078
491
  msgid "Gallery example:"
492
  msgstr ""
493
 
494
- #: core/options-pages.php:1079
495
  msgid "Audio playlist example:"
496
  msgstr ""
497
 
498
- #: core/options-pages.php:1080
499
  msgid "Video playlist example:"
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1082
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr ""
507
 
508
- #: core/options-pages.php:1084
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr ""
512
 
513
- #: core/options-pages.php:1086
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
@@ -518,237 +514,237 @@ msgid ""
518
  "%s."
519
  msgstr ""
520
 
521
- #: core/options-pages.php:1155 core/options-pages.php:1302
522
  msgid "Assign following taxonomies to Media Library:"
523
  msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
524
 
525
- #: core/options-pages.php:1174 core/options-pages.php:1240
526
- #: core/options-pages.php:1324
527
  msgid "Assign Taxonomy"
528
  msgstr "הקצא תוית מיון"
529
 
530
- #: core/options-pages.php:1175 core/options-pages.php:1325
531
  msgid "Edit Taxonomy"
532
  msgstr "ערוך תוית מיון"
533
 
534
- #: core/options-pages.php:1179 core/options-pages.php:1242
535
  msgid "Delete Taxonomy"
536
  msgstr "מחק תוית מיון"
537
 
538
- #: core/options-pages.php:1184 core/options-pages.php:1247
539
  msgid "Labels"
540
  msgstr "תויות"
541
 
542
- #: core/options-pages.php:1186 core/options-pages.php:1249
543
  msgid "Singular"
544
  msgstr "יחיד"
545
 
546
- #: core/options-pages.php:1187 core/options-pages.php:1250
547
  msgid "Plural"
548
  msgstr "רבים"
549
 
550
- #: core/options-pages.php:1188 core/options-pages.php:1251
551
  msgid "Menu Name"
552
  msgstr "שם התפריט"
553
 
554
- #: core/options-pages.php:1201 core/options-pages.php:1224
555
- #: core/options-pages.php:1264 core/options-pages.php:1328
556
  msgid "Settings"
557
  msgstr "הגדרות"
558
 
559
- #: core/options-pages.php:1203 core/options-pages.php:1266
560
  msgid "Taxonomy Name"
561
  msgstr "שם תוית המיון"
562
 
563
- #: core/options-pages.php:1204 core/options-pages.php:1267
564
  msgid "Hierarchical"
565
  msgstr "היררכי"
566
 
567
- #: core/options-pages.php:1205 core/options-pages.php:1268
568
  msgid "Column for List View"
569
  msgstr ""
570
 
571
- #: core/options-pages.php:1206 core/options-pages.php:1226
572
- #: core/options-pages.php:1269 core/options-pages.php:1330
573
  msgid "Filter for List View"
574
  msgstr ""
575
 
576
- #: core/options-pages.php:1207 core/options-pages.php:1227
577
- #: core/options-pages.php:1270 core/options-pages.php:1331
578
  msgid "Filter for Grid View / Media Popup"
579
  msgstr ""
580
 
581
- #: core/options-pages.php:1208 core/options-pages.php:1228
582
- #: core/options-pages.php:1271 core/options-pages.php:1332
583
  msgid "Edit in Media Popup"
584
  msgstr "עריכה בחלון מדיה"
585
 
586
- #: core/options-pages.php:1209 core/options-pages.php:1272
587
  msgid "Show in Nav Menu"
588
  msgstr "הצג בתפריט הניווט"
589
 
590
- #: core/options-pages.php:1210 core/options-pages.php:1273
591
  msgid "Remember Terms Order (sort)"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1211 core/options-pages.php:1274
595
  msgid "Show in REST"
596
  msgstr ""
597
 
598
- #: core/options-pages.php:1212 core/options-pages.php:1275
599
  msgid "Rewrite Slug"
600
  msgstr "שכתב סלוגן"
601
 
602
- #: core/options-pages.php:1213 core/options-pages.php:1276
603
  msgid "Slug with Front"
604
  msgstr "סלוגן עם הקדמה"
605
 
606
- #: core/options-pages.php:1288
607
  msgid "Add New Taxonomy"
608
  msgstr "הוסף תוית מיון חדשה"
609
 
610
- #: core/options-pages.php:1298
611
  msgid "Non-Media Taxonomies"
612
  msgstr "תויות מיון ללא-מדיה"
613
 
614
- #: core/options-pages.php:1361
615
  msgid "Options"
616
  msgstr "אפשרויות"
617
 
618
- #: core/options-pages.php:1371 core/options-pages.php:1374
619
  msgid "Taxonomy archive pages"
620
  msgstr "ארכיון עמודי תויות מיון"
621
 
622
- #: core/options-pages.php:1375
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
625
 
626
- #: core/options-pages.php:1376
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr ""
630
  "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
631
 
632
- #: core/options-pages.php:1382 core/options-pages.php:1385
633
  msgid "Assign all like hierarchical"
634
  msgstr "הקצא הכל באופן היררכי"
635
 
636
- #: core/options-pages.php:1386
637
  msgid ""
638
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
639
  msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
640
 
641
- #: core/options-pages.php:1392 core/options-pages.php:1395
642
  msgid "Force filters"
643
  msgstr "כפה מסננים"
644
 
645
- #: core/options-pages.php:1396
646
  msgid "Show media filters for ANY Media Popup"
647
  msgstr ""
648
 
649
- #: core/options-pages.php:1397
650
  msgid "Try this if filters are not shown for third-party plugins or themes."
651
  msgstr ""
652
 
653
- #: core/options-pages.php:1403 core/options-pages.php:1406
654
  msgid "Show count"
655
  msgstr ""
656
 
657
- #: core/options-pages.php:1407
658
  msgid "Show item count per category for media filters"
659
  msgstr ""
660
 
661
- #: core/options-pages.php:1461
662
  msgid "Add New MIME Type"
663
  msgstr "הוסף סוג קובץ חדש"
664
 
665
- #: core/options-pages.php:1481 core/options-pages.php:1536
666
  msgid "Extension"
667
  msgstr "הרחבה"
668
 
669
- #: core/options-pages.php:1482 core/options-pages.php:1537
670
  msgid "MIME Type"
671
  msgstr "סוג קובץ (MIME Type)"
672
 
673
- #: core/options-pages.php:1483 core/options-pages.php:1538
674
  msgid "Singular Label"
675
  msgstr "תוית יחידה"
676
 
677
- #: core/options-pages.php:1484 core/options-pages.php:1539
678
  msgid "Plural Label"
679
  msgstr "תויות רבות"
680
 
681
- #: core/options-pages.php:1485 core/options-pages.php:1515
682
- #: core/options-pages.php:1528 core/options-pages.php:1540
683
  msgid "Add Filter"
684
  msgstr "הוסף מסנן"
685
 
686
- #: core/options-pages.php:1486 core/options-pages.php:1516
687
- #: core/options-pages.php:1529 core/options-pages.php:1541
688
  msgid "Allow Upload"
689
  msgstr "אפשר העלאה"
690
 
691
- #: core/options-pages.php:1517 core/options-pages.php:1530
692
  msgid "Delete MIME Type"
693
  msgstr "מחק סוג קובץ"
694
 
695
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
696
  msgid "Save Changes"
697
  msgstr "שמור שינויים"
698
 
699
- #: core/options-pages.php:1607
700
  msgid "Changelog"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1608
704
  msgid "What's new in"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1608
708
  msgid "version"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1611
712
  msgid "More features under the hood"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1613
716
  msgid "Support"
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1614
720
  msgid "Feel free to ask for help on"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1614
724
  msgid "Support is free for both versions of the plugin."
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1616
728
  msgid "Plugin rating"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1617
732
  msgid "Please"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1617
736
  msgid "vote for the plugin"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1617
740
  msgid "Thanks!"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1619
744
  msgid "Other plugins you may find useful"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1658
748
  msgid "Utility"
749
  msgstr ""
750
 
751
- #: core/options-pages.php:1681
752
  msgid "Vote!"
753
  msgstr ""
754
 
@@ -761,356 +757,96 @@ msgid "Media Library settings saved."
761
  msgstr ""
762
 
763
  #: core/taxonomies.php:333 core/taxonomies.php:339
764
- #: enhanced-media-library.php:502
765
  msgid "Filter by"
766
  msgstr "סנן על-פי"
767
 
768
- #: core/taxonomies.php:341 enhanced-media-library.php:504
769
  msgid "Not in a"
770
  msgstr ""
771
 
772
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
773
- msgid "All Uncategorized"
774
- msgstr "הכל לא ממויין"
775
-
776
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
777
- msgid "Reset All Filters"
778
- msgstr "אפס את כל המסננים"
779
-
780
- #: enhanced-media-library.php:535
781
- msgid "Uploaded to post #"
782
- msgstr ""
783
-
784
- #: enhanced-media-library.php:536
785
- msgid "Based On"
786
- msgstr ""
787
-
788
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
789
- msgid "Media Categories"
790
- msgstr ""
791
-
792
- #: enhanced-media-library.php:582
793
- msgid "Media Category"
794
- msgstr ""
795
-
796
- #: enhanced-media-library.php:584
797
- msgid "All Media Categories"
798
- msgstr ""
799
-
800
- #: enhanced-media-library.php:585
801
- msgid "Edit Media Category"
802
- msgstr ""
803
-
804
- #: enhanced-media-library.php:586
805
- msgid "View Media Category"
806
- msgstr ""
807
-
808
- #: enhanced-media-library.php:587
809
- msgid "Update Media Category"
810
- msgstr ""
811
-
812
- #: enhanced-media-library.php:588
813
- msgid "Add New Media Category"
814
- msgstr ""
815
-
816
- #: enhanced-media-library.php:589
817
- msgid "New Media Category Name"
818
- msgstr ""
819
-
820
- #: enhanced-media-library.php:590
821
- msgid "Parent Media Category"
822
- msgstr ""
823
-
824
- #: enhanced-media-library.php:591
825
- msgid "Parent Media Category:"
826
- msgstr ""
827
-
828
- #: enhanced-media-library.php:592
829
- msgid "Search Media Categories"
830
- msgstr ""
831
-
832
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
833
  msgid "Remove"
834
  msgstr "הסר"
835
 
836
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
837
  msgid "Deselect"
838
  msgstr "בטל בחירה"
839
 
840
- #: pro/core/bulk-edit.php:105
841
  msgid "Caption this image&hellip;"
842
  msgstr "תאר תמונה זו&hellip;"
843
 
844
- #: pro/core/bulk-edit.php:109
845
  msgid "Describe this video&hellip;"
846
  msgstr "תאר וידיאו זה&hellip;"
847
 
848
- #: pro/core/bulk-edit.php:111
849
  msgid "Describe this audio file&hellip;"
850
  msgstr "תאר אודיו זה&hellip;"
851
 
852
- #: pro/core/bulk-edit.php:113
853
  msgid "Describe this media file&hellip;"
854
  msgstr "תאר מדיה זו&hellip;"
855
 
856
- #: pro/core/bulk-edit.php:122
857
- msgid "Attachments Details"
858
- msgstr "פרטי הנספח"
859
-
860
- #: pro/core/bulk-edit.php:175
861
- msgid "Select All"
862
- msgstr "בחר הכל"
863
-
864
- #: pro/core/bulk-edit.php:176
865
- msgid "Deselect All"
866
- msgstr "בטל בחירה מהכל"
867
-
868
- #: pro/core/bulk-edit.php:177
869
- msgid "Delete Selected"
870
- msgstr "מחק בחירה"
871
-
872
- #: pro/core/bulk-edit.php:178
873
- msgid "Trash Selected"
874
- msgstr ""
875
-
876
- #: pro/core/bulk-edit.php:179
877
- msgid "Restore Selected"
878
- msgstr ""
879
-
880
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
881
- msgid "Delete Selected Permanently"
882
- msgstr ""
883
-
884
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
885
- msgid "Order By"
886
- msgstr ""
887
-
888
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
889
- msgid "Random"
890
- msgstr ""
891
-
892
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
893
- msgid "Order"
894
- msgstr ""
895
-
896
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
897
- msgid "Limit"
898
- msgstr ""
899
-
900
- #: pro/core/options-pages.php:78
901
- msgid "Your license has been deactivated."
902
- msgstr ""
903
-
904
- #: pro/core/options-pages.php:88
905
- msgid "Please check if your license key is correct and try again."
906
- msgstr ""
907
-
908
- #: pro/core/options-pages.php:104
909
- #, php-format
910
- msgid ""
911
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
912
- "authors</a>."
913
- msgstr ""
914
-
915
- #: pro/core/options-pages.php:119
916
- #, php-format
917
- msgid ""
918
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
919
- "plugin authors</a>."
920
- msgstr ""
921
-
922
- #: pro/core/options-pages.php:130
923
- msgid "You license has been activated."
924
- msgstr ""
925
-
926
- #: pro/core/options-pages.php:184
927
- #, php-format
928
- msgid "Auto-assign media items to parent %s %s on upload"
929
- msgstr ""
930
-
931
- #: pro/core/options-pages.php:185
932
- #, php-format
933
- msgid ""
934
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
935
- "attached to a %s will be assigned to %s of their parent %s. Currently "
936
- "assigned %s will not be saved. Media items that are not attached to any %s "
937
- "will not be affected."
938
- msgstr ""
939
-
940
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
941
- msgid "Bulk Edit"
942
- msgstr "עריכה קבוצתית"
943
-
944
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
945
- msgid "Turn off 'Save Changes' button"
946
- msgstr "כבה את כפתור \"שמור שינויים\""
947
-
948
- #: pro/core/options-pages.php:220
949
- msgid "Save changes on the fly"
950
- msgstr "שמור שינויים תוך כדי ביצועם"
951
-
952
- #: pro/core/options-pages.php:221
953
- msgid ""
954
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
955
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
956
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
957
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
958
- "files / taxonomies with this option turned on."
959
- msgstr ""
960
-
961
- #: pro/core/options-pages.php:222
962
- msgid ""
963
- "Strongly NOT recommended option if you work with more than hundred of files "
964
- "at a time."
965
- msgstr "אפשרות לא מומלצת במידה והנך עובד עם למעלה ממאה קבצים בכל פעם."
966
-
967
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
968
- msgid "License Key"
969
- msgstr "מספר רישיון"
970
-
971
- #: pro/core/options-pages.php:273
972
- #, php-format
973
- msgid ""
974
- "To unlock updates please enter your license key below. You can get your "
975
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
976
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
977
- msgstr ""
978
-
979
- #: pro/core/options-pages.php:283
980
- msgid "Activate License"
981
- msgstr "הפעל רישיון"
982
-
983
- #: pro/core/options-pages.php:290
984
- msgid "Your license is active!"
985
- msgstr "הרישיון שלך פעיל!"
986
-
987
- #: pro/core/options-pages.php:294
988
- msgid "Deactivate License"
989
- msgstr ""
990
-
991
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
992
- msgid ""
993
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
994
- "this server&#8217;s configuration. If you continue to have problems, please "
995
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
996
- msgstr ""
997
- "שגיאה לא צפויה ארעה. משהו עשוי להיות לא כשורה עם WordPress.org או עם הגדרות "
998
- "השרת. אם הנך ממשיך לחוות בעיות אנא נסה למצוא פתרון ב-<a href=\"https://"
999
- "wordpress.org/support/\">פורומי התמיכה</a>."
1000
-
1001
- #: pro/core/update.php:113
1002
- msgid ""
1003
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1004
- "contact your server administrator.)"
1005
- msgstr ""
1006
- "(וורדפרס לא הצליחה ליצור חיבור מאובטח אל WordPress.org . אנא צור קשר עם מנהל "
1007
- "השרת.)"
1008
-
1009
- #: pro/core/update.php:181
1010
- #, php-format
1011
- msgid ""
1012
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1013
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1014
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1015
- msgstr ""
1016
-
1017
- #: pro/enhanced-media-library-pro.php:119
1018
- msgid "ALL files belong to this item"
1019
- msgstr "כל הקבצים שייכים לפריט זה"
1020
-
1021
- #: pro/enhanced-media-library-pro.php:120
1022
- msgid "SOME files belong to this item"
1023
- msgstr "מספר קבצים שייכים לפריט זה"
1024
-
1025
- #: pro/enhanced-media-library-pro.php:121
1026
- msgid "NO files belong to this item"
1027
- msgstr "אין קבצים השייכים לפריט זה"
1028
-
1029
- #: pro/enhanced-media-library-pro.php:122
1030
- msgid "Changes saved."
1031
- msgstr "השינויים נשמרו."
1032
-
1033
- #: pro/enhanced-media-library-pro.php:123
1034
- msgid "Something went wrong."
1035
- msgstr "משהו השתבש."
1036
-
1037
- #: pro/enhanced-media-library-pro.php:126
1038
- msgid "Edit Media Files"
1039
- msgstr "ערוך קבצי מדיה"
1040
 
1041
- #: pro/enhanced-media-library-pro.php:129
1042
- msgid "Selecting"
1043
- msgstr ""
1044
 
1045
- #: pro/enhanced-media-library-pro.php:131
1046
- msgid "You are about to permanently delete all selected items."
1047
  msgstr ""
1048
 
1049
- #: pro/enhanced-media-library-pro.php:132
1050
- msgid "Delete"
1051
  msgstr ""
1052
 
1053
- #: pro/enhanced-media-library-pro.php:134
1054
- msgid "Moving to Trash"
1055
  msgstr ""
1056
 
1057
- #: pro/enhanced-media-library-pro.php:135
1058
- msgid "Restoring"
1059
  msgstr ""
1060
 
1061
- #: pro/enhanced-media-library-pro.php:136
1062
- msgid "Deleting"
1063
  msgstr ""
1064
 
1065
- #: pro/enhanced-media-library-pro.php:160
1066
- msgid "Create a filter-based gallery"
1067
  msgstr ""
1068
 
1069
- #: pro/enhanced-media-library-pro.php:161
1070
- msgid "Create a filter-based playlist"
1071
  msgstr ""
1072
 
1073
- #: pro/enhanced-media-library-pro.php:162
1074
- msgid "Create a filter-based video playlist"
1075
  msgstr ""
1076
 
1077
- #: pro/enhanced-media-library-pro.php:240
1078
- msgid ""
1079
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1080
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1081
- "will remain intact."
1082
  msgstr ""
1083
 
1084
- #: pro/enhanced-media-library-pro.php:240
1085
- msgid "Return to Plugins"
1086
- msgstr "חזור לתוספים"
1087
-
1088
- #: pro/enhanced-media-library-pro.php:291
1089
- msgid ""
1090
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1091
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1092
- "be active. Please network deactivate and delete the free versions of the "
1093
- "plugin. All your data will remain intact."
1094
  msgstr ""
1095
 
1096
- #: pro/enhanced-media-library-pro.php:308
1097
- msgid ""
1098
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1099
- "be active. Please deactivate and delete the free version of the plugin. All "
1100
- "your data will remain intact."
1101
  msgstr ""
1102
 
1103
- #: pro/enhanced-media-library-pro.php:324
1104
- msgid ""
1105
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1106
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1107
- "version to be active. Please deactivate (or network deactivate) and delete "
1108
- "the free version of the plugin for this site. All your data will remail "
1109
- "intact."
1110
  msgstr ""
1111
 
1112
- #. Plugin Name of the plugin/theme
1113
- msgid "Enhanced Media Library PRO"
1114
  msgstr ""
1115
 
1116
  #. Plugin URI of the plugin/theme
@@ -1126,6 +862,3 @@ msgstr "תוסף זה יהיה שימושי עבור ספריות מדיה עם
1126
  #. Author of the plugin/theme
1127
  msgid "wpUXsolutions"
1128
  msgstr ""
1129
-
1130
- #~ msgid "Not in"
1131
- #~ msgstr "לא ב-"
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-13 03:05+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:05+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Hebrew (Israel)\n"
9
  "Language: he_IL\n"
31
  msgstr[0] ""
32
  msgstr[1] ""
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:220
35
+ #: core/options-pages.php:313 core/options-pages.php:1080
36
+ #: core/options-pages.php:1204 core/options-pages.php:1529
37
+ #: core/options-pages.php:1729
38
  msgid "Media Settings"
39
  msgstr "הגדרות מדיה"
40
 
41
+ #: core/options-pages.php:106 core/options-pages.php:285
42
  msgid "Media Library"
43
  msgstr "ספריית מדיה"
44
 
46
  msgid "Taxonomies"
47
  msgstr "תוית מיון"
48
 
49
+ #: core/options-pages.php:124 core/options-pages.php:287
50
  msgid "MIME Types"
51
  msgstr "סוגי קבצים"
52
 
53
+ #. Plugin Name of the plugin/theme
54
  #: core/options-pages.php:135 core/options-pages.php:136
55
  msgid "Enhanced Media Library"
56
  msgstr "ספרית מדיה משופרת"
57
 
58
+ #: core/options-pages.php:284
59
  msgid "General"
60
  msgstr ""
61
 
62
+ #: core/options-pages.php:286 core/options-pages.php:1225
63
  msgid "Media Taxonomies"
64
  msgstr "תויות מיון למדיה"
65
 
66
+ #: core/options-pages.php:310 core/options-pages.php:622
67
+ #: core/options-pages.php:1076 core/options-pages.php:1201
68
+ #: core/options-pages.php:1525
69
  msgid "You do not have sufficient permissions to access this page."
70
  msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
71
 
72
+ #: core/options-pages.php:324
73
  msgid "Image sizes"
74
  msgstr ""
75
 
76
+ #: core/options-pages.php:325
77
  msgid ""
78
  "The sizes listed below determine the maximum dimensions in pixels to use "
79
  "when adding an image to the Media Library."
80
  msgstr ""
81
 
82
+ #: core/options-pages.php:329
83
  msgid "Thumbnail size"
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:331
87
  msgid "Width"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:333
91
  msgid "Height"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:336
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
 
99
+ #: core/options-pages.php:341 core/options-pages.php:342
100
  msgid "Medium size"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:343 core/options-pages.php:353
104
  msgid "Max Width"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:345 core/options-pages.php:355
108
  msgid "Max Height"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:351 core/options-pages.php:352
112
  msgid "Large size"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:368
116
  msgid "Embeds"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:375
120
  msgid "Uploading Files"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:382
124
  msgid "Store uploads in this folder"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:386
128
  #, php-format
129
  msgid "Default is %s"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:392
133
  msgid "Full URL path to files"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:394
137
  msgid "Configuring this is optional. By default, it should be blank."
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:402
141
  msgid "Organize my uploads into month- and year-based folders"
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:474 core/options-pages.php:1249
145
+ #: core/options-pages.php:1264 core/options-pages.php:1327
146
+ #: core/options-pages.php:1399
147
  msgid "Edit"
148
  msgstr "ערוך"
149
 
150
+ #: core/options-pages.php:475
151
  msgid "Close"
152
  msgstr "סגור"
153
 
154
+ #: core/options-pages.php:476 core/options-pages.php:1265
155
+ #: core/options-pages.php:1328
156
  msgid "View"
157
  msgstr "צפה"
158
 
159
+ #: core/options-pages.php:477 core/options-pages.php:1266
160
+ #: core/options-pages.php:1329
161
  msgid "Update"
162
  msgstr "עדכן"
163
 
164
+ #: core/options-pages.php:478 core/options-pages.php:1267
165
+ #: core/options-pages.php:1330
166
  msgid "Add New"
167
  msgstr "הוסף חדש"
168
 
169
+ #: core/options-pages.php:479 core/options-pages.php:1268
170
+ #: core/options-pages.php:1331
171
  msgid "New"
172
  msgstr "חדש"
173
 
174
+ #: core/options-pages.php:480
175
  msgid "Name"
176
  msgstr "שם"
177
 
178
+ #: core/options-pages.php:481 core/options-pages.php:1269
179
+ #: core/options-pages.php:1332
180
  msgid "Parent"
181
  msgstr "הורה"
182
 
183
+ #: core/options-pages.php:482 core/options-pages.php:718
184
+ #: core/options-pages.php:1263 core/options-pages.php:1326
185
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
186
  msgid "All"
187
  msgstr "הכל"
188
 
189
+ #: core/options-pages.php:483 core/options-pages.php:1270
190
+ #: core/options-pages.php:1333
191
  msgid "Search"
192
  msgstr "חיפוש"
193
 
194
+ #: core/options-pages.php:485 core/options-pages.php:1314
195
  msgid "New Taxonomy"
196
  msgstr "תוית מיון חדשה"
197
 
198
+ #: core/options-pages.php:487
199
  msgid "Remove Taxonomy"
200
  msgstr ""
201
 
202
+ #: core/options-pages.php:488
203
  msgid "Taxonomy will be removed."
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:489
207
  msgid ""
208
  "Taxonomy terms (categories) will remain intact in the database. If you "
209
  "create a taxonomy with the same name in the future, its terms (categories) "
210
  "will be available again."
211
  msgstr ""
212
 
213
+ #: core/options-pages.php:490
214
  msgid "Media items will remain intact."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:491
218
  msgid "Are you still sure?"
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:492
222
  msgid "Yes, remove taxonomy"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:494
226
  msgid "Duplicate"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:495
230
  msgid "Taxonomy with the same name already exists. Please chose other one."
231
  msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
232
 
233
+ #: core/options-pages.php:497
234
  msgid "Empty Fields"
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:498
238
  msgid "Please choose Singular and Plural names for all new taxomonies."
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:499
242
  msgid "Please choose Singular name for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:500
246
  msgid "Please choose Plural Name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:502
250
  msgid "Ok"
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:503 core/options-pages.php:508
254
+ #: core/options-pages.php:552 core/options-pages.php:597
 
255
  msgid "Cancel"
256
  msgstr ""
257
 
258
+ #: core/options-pages.php:505
259
  msgid "Synchronize Now"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:506 core/options-pages.php:594
263
  msgid "This operation cannot be canceled! Are you still sure?"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:507
267
  msgid "Synchronize"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:509
271
  msgid "Synchronizing..."
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:547 core/options-pages.php:1653
275
  msgid "Restore WordPress default MIME Types"
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:548
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
281
 
282
+ #: core/options-pages.php:549
283
  msgid "Restore Defaults"
284
  msgstr ""
285
 
286
+ #: core/options-pages.php:550
287
  msgid "Restoring..."
288
  msgstr ""
289
 
290
+ #: core/options-pages.php:554
291
  msgid "Please fill into all fields."
292
  msgstr "אנא הזן את כל השדות"
293
 
294
+ #: core/options-pages.php:555
295
  msgid "Duplicate extensions or MIME types. Please chose other one."
296
  msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
297
 
298
+ #: core/options-pages.php:592 core/options-pages.php:709
299
  msgid "Complete Cleanup"
300
  msgstr ""
301
 
302
+ #: core/options-pages.php:593
303
  msgid ""
304
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
305
  "plugin data</strong> from the database including backups."
306
  msgstr ""
307
 
308
+ #: core/options-pages.php:595
309
  msgid "Yes, delete all data"
310
  msgstr ""
311
 
312
+ #: core/options-pages.php:596
313
  msgid "Cleaning..."
314
  msgstr ""
315
 
316
+ #: core/options-pages.php:627
317
  msgid "Enhanced Media Library Settings"
318
  msgstr ""
319
 
320
+ #: core/options-pages.php:637
321
  msgid "Export"
322
  msgstr ""
323
 
324
+ #: core/options-pages.php:641
325
  msgid ""
326
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
327
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
329
  "another website."
330
  msgstr ""
331
 
332
+ #: core/options-pages.php:646
333
  msgid "Export Plugin Settings"
334
  msgstr ""
335
 
336
+ #: core/options-pages.php:656
337
  msgid "Import"
338
  msgstr ""
339
 
340
+ #: core/options-pages.php:660
341
  msgid ""
342
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
345
  "another website using the export button above."
346
  msgstr ""
347
 
348
+ #: core/options-pages.php:661
349
  msgid ""
350
  "All plugin settings will be overridden by the import. You will have a chance "
351
  "to restore current data from an automatic backup in case you are not "
352
  "satisfied with the result of the import."
353
  msgstr ""
354
 
355
+ #: core/options-pages.php:668
356
  msgid "Import Plugin Settings"
357
  msgstr ""
358
 
359
+ #: core/options-pages.php:680
360
  msgid "Restore"
361
  msgstr ""
362
 
363
+ #: core/options-pages.php:686
364
  msgid "No backup available at the moment."
365
  msgstr ""
366
 
367
+ #: core/options-pages.php:688
368
  msgid "Backup will be created automatically before any import operation."
369
  msgstr ""
370
 
371
+ #: core/options-pages.php:692
372
  msgid ""
373
  "The backup has been automatically created before the latest import operation."
374
  msgstr ""
375
 
376
+ #: core/options-pages.php:696
377
  msgid "Restore Settings from the Backup"
378
  msgstr ""
379
 
380
+ #: core/options-pages.php:716
381
  msgid "What will be deleted:"
382
  msgstr ""
383
 
384
+ #: core/options-pages.php:721
385
  msgid "All plugin options"
386
  msgstr ""
387
 
388
+ #: core/options-pages.php:722
389
  msgid "All plugin backups stored in database"
390
  msgstr ""
391
 
392
+ #: core/options-pages.php:726
393
  msgid "What will remain intact:"
394
  msgstr ""
395
 
396
+ #: core/options-pages.php:727
397
  msgid "All media items"
398
  msgstr ""
399
 
400
+ #: core/options-pages.php:728
401
  msgid "All taxonomies not listed above"
402
  msgstr ""
403
 
404
+ #: core/options-pages.php:731
405
  msgid ""
406
  "The plugin cannot delete itself because of security reason. Please delete it "
407
  "manually from plugin list after cleanup."
408
  msgstr ""
409
 
410
+ #: core/options-pages.php:733
411
  msgid ""
412
  "If you are not sure about this operation please create a backup of your "
413
  "database prior to cleanup!"
414
  msgstr ""
415
 
416
+ #: core/options-pages.php:739
417
  msgid "Delete All Data & Deactivate"
418
  msgstr ""
419
 
420
+ #: core/options-pages.php:839
421
  msgid "Please upload a file to import settings."
422
  msgstr ""
423
 
424
+ #: core/options-pages.php:865
425
  msgid "Plugin settings imported."
426
  msgstr ""
427
 
428
+ #: core/options-pages.php:912
429
  msgid "Plugin settings restored from the backup."
430
  msgstr ""
431
 
432
+ #: core/options-pages.php:1101
433
  msgid "Media Items Order"
434
  msgstr ""
435
 
436
+ #: core/options-pages.php:1108
437
  msgid "Order media items by"
438
  msgstr ""
439
 
440
+ #: core/options-pages.php:1111
 
441
  msgid "Date"
442
  msgstr ""
443
 
444
+ #: core/options-pages.php:1112
 
445
  msgid "Title"
446
  msgstr ""
447
 
448
+ #: core/options-pages.php:1113
 
449
  msgid "Custom Order"
450
  msgstr ""
451
 
452
+ #: core/options-pages.php:1115 core/options-pages.php:1127
453
  msgid "For media library and media popups"
454
  msgstr ""
455
 
456
+ #: core/options-pages.php:1116
457
  msgid "Option allows to change order by drag and drop with Custom Order value."
458
  msgstr ""
459
 
460
+ #: core/options-pages.php:1121
461
  msgid "Sort order"
462
  msgstr ""
463
 
464
+ #: core/options-pages.php:1124
 
465
  msgid "Ascending"
466
  msgstr ""
467
 
468
+ #: core/options-pages.php:1125
 
469
  msgid "Descending"
470
  msgstr ""
471
 
472
+ #: core/options-pages.php:1140
473
  msgid "Media Shortcodes"
474
  msgstr ""
475
 
476
+ #: core/options-pages.php:1147 core/options-pages.php:1150
477
  msgid "Enhanced media shortcodes"
478
  msgstr ""
479
 
480
+ #: core/options-pages.php:1151
481
  msgid ""
482
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
483
  "upload date, and media items number limit"
484
  msgstr ""
485
 
486
+ #: core/options-pages.php:1152
487
  msgid "Gallery example:"
488
  msgstr ""
489
 
490
+ #: core/options-pages.php:1153
491
  msgid "Audio playlist example:"
492
  msgstr ""
493
 
494
+ #: core/options-pages.php:1154
495
  msgid "Video playlist example:"
496
  msgstr ""
497
 
498
+ #: core/options-pages.php:1156
499
  #, php-format
500
  msgid ""
501
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
502
  msgstr ""
503
 
504
+ #: core/options-pages.php:1158
505
  #, php-format
506
  msgid "%sLearn more%s."
507
  msgstr ""
508
 
509
+ #: core/options-pages.php:1160
510
  #, php-format
511
  msgid ""
512
  "Please check out your gallery front-end and back-end functionality once this "
514
  "%s."
515
  msgstr ""
516
 
517
+ #: core/options-pages.php:1229 core/options-pages.php:1376
518
  msgid "Assign following taxonomies to Media Library:"
519
  msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
520
 
521
+ #: core/options-pages.php:1248 core/options-pages.php:1314
522
+ #: core/options-pages.php:1398
523
  msgid "Assign Taxonomy"
524
  msgstr "הקצא תוית מיון"
525
 
526
+ #: core/options-pages.php:1249 core/options-pages.php:1399
527
  msgid "Edit Taxonomy"
528
  msgstr "ערוך תוית מיון"
529
 
530
+ #: core/options-pages.php:1253 core/options-pages.php:1316
531
  msgid "Delete Taxonomy"
532
  msgstr "מחק תוית מיון"
533
 
534
+ #: core/options-pages.php:1258 core/options-pages.php:1321
535
  msgid "Labels"
536
  msgstr "תויות"
537
 
538
+ #: core/options-pages.php:1260 core/options-pages.php:1323
539
  msgid "Singular"
540
  msgstr "יחיד"
541
 
542
+ #: core/options-pages.php:1261 core/options-pages.php:1324
543
  msgid "Plural"
544
  msgstr "רבים"
545
 
546
+ #: core/options-pages.php:1262 core/options-pages.php:1325
547
  msgid "Menu Name"
548
  msgstr "שם התפריט"
549
 
550
+ #: core/options-pages.php:1275 core/options-pages.php:1298
551
+ #: core/options-pages.php:1338 core/options-pages.php:1402
552
  msgid "Settings"
553
  msgstr "הגדרות"
554
 
555
+ #: core/options-pages.php:1277 core/options-pages.php:1340
556
  msgid "Taxonomy Name"
557
  msgstr "שם תוית המיון"
558
 
559
+ #: core/options-pages.php:1278 core/options-pages.php:1341
560
  msgid "Hierarchical"
561
  msgstr "היררכי"
562
 
563
+ #: core/options-pages.php:1279 core/options-pages.php:1342
564
  msgid "Column for List View"
565
  msgstr ""
566
 
567
+ #: core/options-pages.php:1280 core/options-pages.php:1300
568
+ #: core/options-pages.php:1343 core/options-pages.php:1404
569
  msgid "Filter for List View"
570
  msgstr ""
571
 
572
+ #: core/options-pages.php:1281 core/options-pages.php:1301
573
+ #: core/options-pages.php:1344 core/options-pages.php:1405
574
  msgid "Filter for Grid View / Media Popup"
575
  msgstr ""
576
 
577
+ #: core/options-pages.php:1282 core/options-pages.php:1302
578
+ #: core/options-pages.php:1345 core/options-pages.php:1406
579
  msgid "Edit in Media Popup"
580
  msgstr "עריכה בחלון מדיה"
581
 
582
+ #: core/options-pages.php:1283 core/options-pages.php:1346
583
  msgid "Show in Nav Menu"
584
  msgstr "הצג בתפריט הניווט"
585
 
586
+ #: core/options-pages.php:1284 core/options-pages.php:1347
587
  msgid "Remember Terms Order (sort)"
588
  msgstr ""
589
 
590
+ #: core/options-pages.php:1285 core/options-pages.php:1348
591
  msgid "Show in REST"
592
  msgstr ""
593
 
594
+ #: core/options-pages.php:1286 core/options-pages.php:1349
595
  msgid "Rewrite Slug"
596
  msgstr "שכתב סלוגן"
597
 
598
+ #: core/options-pages.php:1287 core/options-pages.php:1350
599
  msgid "Slug with Front"
600
  msgstr "סלוגן עם הקדמה"
601
 
602
+ #: core/options-pages.php:1362
603
  msgid "Add New Taxonomy"
604
  msgstr "הוסף תוית מיון חדשה"
605
 
606
+ #: core/options-pages.php:1372
607
  msgid "Non-Media Taxonomies"
608
  msgstr "תויות מיון ללא-מדיה"
609
 
610
+ #: core/options-pages.php:1435
611
  msgid "Options"
612
  msgstr "אפשרויות"
613
 
614
+ #: core/options-pages.php:1445 core/options-pages.php:1448
615
  msgid "Taxonomy archive pages"
616
  msgstr "ארכיון עמודי תויות מיון"
617
 
618
+ #: core/options-pages.php:1449
619
  msgid "Turn on media taxonomy archive pages on the front-end"
620
  msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
621
 
622
+ #: core/options-pages.php:1450
623
  msgid ""
624
  "Re-save your permalink settings after this option change to make it work."
625
  msgstr ""
626
  "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
627
 
628
+ #: core/options-pages.php:1456 core/options-pages.php:1459
629
  msgid "Assign all like hierarchical"
630
  msgstr "הקצא הכל באופן היררכי"
631
 
632
+ #: core/options-pages.php:1460
633
  msgid ""
634
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
635
  msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
636
 
637
+ #: core/options-pages.php:1466 core/options-pages.php:1469
638
  msgid "Force filters"
639
  msgstr "כפה מסננים"
640
 
641
+ #: core/options-pages.php:1470
642
  msgid "Show media filters for ANY Media Popup"
643
  msgstr ""
644
 
645
+ #: core/options-pages.php:1471
646
  msgid "Try this if filters are not shown for third-party plugins or themes."
647
  msgstr ""
648
 
649
+ #: core/options-pages.php:1477 core/options-pages.php:1480
650
  msgid "Show count"
651
  msgstr ""
652
 
653
+ #: core/options-pages.php:1481
654
  msgid "Show item count per category for media filters"
655
  msgstr ""
656
 
657
+ #: core/options-pages.php:1535
658
  msgid "Add New MIME Type"
659
  msgstr "הוסף סוג קובץ חדש"
660
 
661
+ #: core/options-pages.php:1555 core/options-pages.php:1610
662
  msgid "Extension"
663
  msgstr "הרחבה"
664
 
665
+ #: core/options-pages.php:1556 core/options-pages.php:1611
666
  msgid "MIME Type"
667
  msgstr "סוג קובץ (MIME Type)"
668
 
669
+ #: core/options-pages.php:1557 core/options-pages.php:1612
670
  msgid "Singular Label"
671
  msgstr "תוית יחידה"
672
 
673
+ #: core/options-pages.php:1558 core/options-pages.php:1613
674
  msgid "Plural Label"
675
  msgstr "תויות רבות"
676
 
677
+ #: core/options-pages.php:1559 core/options-pages.php:1589
678
+ #: core/options-pages.php:1602 core/options-pages.php:1614
679
  msgid "Add Filter"
680
  msgstr "הוסף מסנן"
681
 
682
+ #: core/options-pages.php:1560 core/options-pages.php:1590
683
+ #: core/options-pages.php:1603 core/options-pages.php:1615
684
  msgid "Allow Upload"
685
  msgstr "אפשר העלאה"
686
 
687
+ #: core/options-pages.php:1591 core/options-pages.php:1604
688
  msgid "Delete MIME Type"
689
  msgstr "מחק סוג קובץ"
690
 
691
+ #: core/options-pages.php:1651
692
  msgid "Save Changes"
693
  msgstr "שמור שינויים"
694
 
695
+ #: core/options-pages.php:1681
696
  msgid "Changelog"
697
  msgstr ""
698
 
699
+ #: core/options-pages.php:1682
700
  msgid "What's new in"
701
  msgstr ""
702
 
703
+ #: core/options-pages.php:1682
704
  msgid "version"
705
  msgstr ""
706
 
707
+ #: core/options-pages.php:1685
708
  msgid "More features under the hood"
709
  msgstr ""
710
 
711
+ #: core/options-pages.php:1687
712
  msgid "Support"
713
  msgstr ""
714
 
715
+ #: core/options-pages.php:1688
716
  msgid "Feel free to ask for help on"
717
  msgstr ""
718
 
719
+ #: core/options-pages.php:1688
720
  msgid "Support is free for both versions of the plugin."
721
  msgstr ""
722
 
723
+ #: core/options-pages.php:1690
724
  msgid "Plugin rating"
725
  msgstr ""
726
 
727
+ #: core/options-pages.php:1691
728
  msgid "Please"
729
  msgstr ""
730
 
731
+ #: core/options-pages.php:1691
732
  msgid "vote for the plugin"
733
  msgstr ""
734
 
735
+ #: core/options-pages.php:1691
736
  msgid "Thanks!"
737
  msgstr ""
738
 
739
+ #: core/options-pages.php:1693
740
  msgid "Other plugins you may find useful"
741
  msgstr ""
742
 
743
+ #: core/options-pages.php:1732
744
  msgid "Utility"
745
  msgstr ""
746
 
747
+ #: core/options-pages.php:1755
748
  msgid "Vote!"
749
  msgstr ""
750
 
757
  msgstr ""
758
 
759
  #: core/taxonomies.php:333 core/taxonomies.php:339
760
+ #: enhanced-media-library.php:508
761
  msgid "Filter by"
762
  msgstr "סנן על-פי"
763
 
764
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
765
  msgid "Not in a"
766
  msgstr ""
767
 
768
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
769
  msgid "Remove"
770
  msgstr "הסר"
771
 
772
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
773
  msgid "Deselect"
774
  msgstr "בטל בחירה"
775
 
776
+ #: core/taxonomies.php:1337
777
  msgid "Caption this image&hellip;"
778
  msgstr "תאר תמונה זו&hellip;"
779
 
780
+ #: core/taxonomies.php:1341
781
  msgid "Describe this video&hellip;"
782
  msgstr "תאר וידיאו זה&hellip;"
783
 
784
+ #: core/taxonomies.php:1343
785
  msgid "Describe this audio file&hellip;"
786
  msgstr "תאר אודיו זה&hellip;"
787
 
788
+ #: core/taxonomies.php:1345
789
  msgid "Describe this media file&hellip;"
790
  msgstr "תאר מדיה זו&hellip;"
791
 
792
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
793
+ msgid "All Uncategorized"
794
+ msgstr "הכל לא ממויין"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
795
 
796
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
797
+ msgid "Reset All Filters"
798
+ msgstr "אפס את כל המסננים"
799
 
800
+ #: enhanced-media-library.php:541
801
+ msgid "Uploaded to post #"
802
  msgstr ""
803
 
804
+ #: enhanced-media-library.php:542
805
+ msgid "Based On"
806
  msgstr ""
807
 
808
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
809
+ msgid "Media Categories"
810
  msgstr ""
811
 
812
+ #: enhanced-media-library.php:575
813
+ msgid "Media Category"
814
  msgstr ""
815
 
816
+ #: enhanced-media-library.php:577
817
+ msgid "All Media Categories"
818
  msgstr ""
819
 
820
+ #: enhanced-media-library.php:578
821
+ msgid "Edit Media Category"
822
  msgstr ""
823
 
824
+ #: enhanced-media-library.php:579
825
+ msgid "View Media Category"
826
  msgstr ""
827
 
828
+ #: enhanced-media-library.php:580
829
+ msgid "Update Media Category"
830
  msgstr ""
831
 
832
+ #: enhanced-media-library.php:581
833
+ msgid "Add New Media Category"
 
 
 
834
  msgstr ""
835
 
836
+ #: enhanced-media-library.php:582
837
+ msgid "New Media Category Name"
 
 
 
 
 
 
 
 
838
  msgstr ""
839
 
840
+ #: enhanced-media-library.php:583
841
+ msgid "Parent Media Category"
 
 
 
842
  msgstr ""
843
 
844
+ #: enhanced-media-library.php:584
845
+ msgid "Parent Media Category:"
 
 
 
 
 
846
  msgstr ""
847
 
848
+ #: enhanced-media-library.php:585
849
+ msgid "Search Media Categories"
850
  msgstr ""
851
 
852
  #. Plugin URI of the plugin/theme
862
  #. Author of the plugin/theme
863
  msgid "wpUXsolutions"
864
  msgstr ""
 
 
 
languages/enhanced-media-library-it_IT.mo CHANGED
Binary file
languages/enhanced-media-library-it_IT.po CHANGED
@@ -1,20 +1,18 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Enhanced Media Library PRO\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:40+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:40+0200\n"
7
- "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
- "Language-Team: Italian (Italy)\n"
9
- "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Generator: Poedit 1.8.11\n"
15
- "X-Loco-Source-Locale: en-US\n"
16
- "X-Loco-Project-Id: 16288\n"
17
- "X-Loco-Api-Version: 1.0.14 20160610-1\n"
18
 
19
  #: core/mime-types.php:30
20
  msgid "MIME Types settings restored."
@@ -31,13 +29,14 @@ msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] " <span class=\"count\">(%s)</span>"
32
  msgstr[1] " <span class=\"count\">(%s)</span>"
33
 
34
- #: core/options-pages.php:97 core/options-pages.php:239
35
- #: core/options-pages.php:1006 core/options-pages.php:1130
36
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
37
  msgid "Media Settings"
38
  msgstr "Impostazioni Media"
39
 
40
- #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "Libreria Media"
43
 
@@ -45,33 +44,34 @@ msgstr "Libreria Media"
45
  msgid "Taxonomies"
46
  msgstr "Tassonomie"
47
 
48
- #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "Tipi MIME"
51
 
 
52
  #: core/options-pages.php:135 core/options-pages.php:136
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
- #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr "Generale"
59
 
60
- #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "Tassonomie Media"
63
 
64
- #: core/options-pages.php:236 core/options-pages.php:548
65
- #: core/options-pages.php:1002 core/options-pages.php:1127
66
- #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "Non disponi dei permessi sufficienti per accedere a questa pagina."
69
 
70
- #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr "Dimensioni immagine"
73
 
74
- #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
@@ -79,135 +79,135 @@ msgstr ""
79
  "Le misure qui sotto determinano le dimensioni massime in pixel da utilizzare "
80
  "quando si aggiunge un'immagine alla Libreria Media."
81
 
82
- #: core/options-pages.php:255
83
  msgid "Thumbnail size"
84
  msgstr "Dimensioni della miniatura"
85
 
86
- #: core/options-pages.php:257
87
  msgid "Width"
88
  msgstr "Larghezza"
89
 
90
- #: core/options-pages.php:259
91
  msgid "Height"
92
  msgstr "Altezza"
93
 
94
- #: core/options-pages.php:262
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
  "Ritaglia la miniatura alle dimensioni esatte (solitamente le miniature sono "
99
  "proporzionali)"
100
 
101
- #: core/options-pages.php:267 core/options-pages.php:268
102
  msgid "Medium size"
103
  msgstr "Dimensioni medie"
104
 
105
- #: core/options-pages.php:269 core/options-pages.php:279
106
  msgid "Max Width"
107
  msgstr "Larghezza massima"
108
 
109
- #: core/options-pages.php:271 core/options-pages.php:281
110
  msgid "Max Height"
111
  msgstr "Altezza massima"
112
 
113
- #: core/options-pages.php:277 core/options-pages.php:278
114
  msgid "Large size"
115
  msgstr "Dimensioni grandi"
116
 
117
- #: core/options-pages.php:294
118
  msgid "Embeds"
119
  msgstr "Incorporamenti"
120
 
121
- #: core/options-pages.php:301
122
  msgid "Uploading Files"
123
  msgstr "Caricamento file"
124
 
125
- #: core/options-pages.php:308
126
  msgid "Store uploads in this folder"
127
  msgstr "Caricamento file"
128
 
129
- #: core/options-pages.php:312
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr "Il valore di default &egrave; %s"
133
 
134
- #: core/options-pages.php:318
135
  msgid "Full URL path to files"
136
  msgstr "URL completo dei file"
137
 
138
- #: core/options-pages.php:320
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
  "La configurazione &egrave; opzionale. Per impostazione predefinita, dovrebbe "
142
  "essere vuoto."
143
 
144
- #: core/options-pages.php:328
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr "Organizza gli upload in cartelle sulla base di mese e anno"
147
 
148
- #: core/options-pages.php:400 core/options-pages.php:1175
149
- #: core/options-pages.php:1190 core/options-pages.php:1253
150
- #: core/options-pages.php:1325
151
  msgid "Edit"
152
  msgstr "Modifica"
153
 
154
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
155
  msgid "Close"
156
  msgstr "Chiudi"
157
 
158
- #: core/options-pages.php:402 core/options-pages.php:1191
159
- #: core/options-pages.php:1254
160
  msgid "View"
161
  msgstr "Visualizza"
162
 
163
- #: core/options-pages.php:403 core/options-pages.php:1192
164
- #: core/options-pages.php:1255
165
  msgid "Update"
166
  msgstr "Aggiorna"
167
 
168
- #: core/options-pages.php:404 core/options-pages.php:1193
169
- #: core/options-pages.php:1256
170
  msgid "Add New"
171
  msgstr "Aggiungi nuovo"
172
 
173
- #: core/options-pages.php:405 core/options-pages.php:1194
174
- #: core/options-pages.php:1257
175
  msgid "New"
176
  msgstr "Nuovo"
177
 
178
- #: core/options-pages.php:406
179
  msgid "Name"
180
  msgstr "Nome"
181
 
182
- #: core/options-pages.php:407 core/options-pages.php:1195
183
- #: core/options-pages.php:1258
184
  msgid "Parent"
185
  msgstr "Genitore"
186
 
187
- #: core/options-pages.php:408 core/options-pages.php:644
188
- #: core/options-pages.php:1189 core/options-pages.php:1252
189
- #: core/taxonomies.php:340 enhanced-media-library.php:503
190
  msgid "All"
191
  msgstr "Tutto"
192
 
193
- #: core/options-pages.php:409 core/options-pages.php:1196
194
- #: core/options-pages.php:1259
195
  msgid "Search"
196
  msgstr "Cerca"
197
 
198
- #: core/options-pages.php:411 core/options-pages.php:1240
199
  msgid "New Taxonomy"
200
  msgstr "Nuova tassonomia"
201
 
202
- #: core/options-pages.php:413
203
  msgid "Remove Taxonomy"
204
  msgstr "Elimina tassonomia"
205
 
206
- #: core/options-pages.php:414
207
  msgid "Taxonomy will be removed."
208
  msgstr "La tassonomia verr&agrave; rimossa."
209
 
210
- #: core/options-pages.php:415
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
@@ -217,103 +217,102 @@ msgstr ""
217
  "Se in futuro verr&agrave; creata una tassonomia con lo stesso nome, i suoi "
218
  "termini (categorie) saranno nuovamente disponibili."
219
 
220
- #: core/options-pages.php:416
221
  msgid "Media items will remain intact."
222
  msgstr "Gli elementi Media rimarranno invariati."
223
 
224
- #: core/options-pages.php:417
225
  msgid "Are you still sure?"
226
  msgstr "Sei ancora sicuro?"
227
 
228
- #: core/options-pages.php:418
229
  msgid "Yes, remove taxonomy"
230
  msgstr "S&igrave;, rimuovi la tassonomia"
231
 
232
- #: core/options-pages.php:420
233
  msgid "Duplicate"
234
  msgstr "Doppione"
235
 
236
- #: core/options-pages.php:421
237
  msgid "Taxonomy with the same name already exists. Please chose other one."
238
  msgstr ""
239
  "Una tassonomia con questo nome esiste gi&agrave;. Si prega di sceglierne un "
240
  "altro."
241
 
242
- #: core/options-pages.php:423
243
  msgid "Empty Fields"
244
  msgstr "Campi vuoti"
245
 
246
- #: core/options-pages.php:424
247
  msgid "Please choose Singular and Plural names for all new taxomonies."
248
  msgstr ""
249
  "Si prega di scegliere i nomi per il singolare e plurale per tutte le nuove "
250
  "tassonomie."
251
 
252
- #: core/options-pages.php:425
253
  msgid "Please choose Singular name for all new taxomonies."
254
  msgstr ""
255
 
256
- #: core/options-pages.php:426
257
  msgid "Please choose Plural Name for all new taxomonies."
258
  msgstr "Si prega di scegliere il nome plurale per tutte le nuove tassonomie."
259
 
260
- #: core/options-pages.php:428
261
  msgid "Ok"
262
  msgstr "Ok"
263
 
264
- #: core/options-pages.php:429 core/options-pages.php:434
265
- #: core/options-pages.php:478 core/options-pages.php:523
266
- #: pro/enhanced-media-library-pro.php:133
267
  msgid "Cancel"
268
  msgstr "Annulla"
269
 
270
- #: core/options-pages.php:431 pro/core/options-pages.php:185
271
  msgid "Synchronize Now"
272
  msgstr "Sincronizza ora"
273
 
274
- #: core/options-pages.php:432 core/options-pages.php:520
275
  msgid "This operation cannot be canceled! Are you still sure?"
276
  msgstr " Questa operazione non può essere annullata! Sei sempre sicuro?"
277
 
278
- #: core/options-pages.php:433
279
  msgid "Synchronize"
280
  msgstr "Sincronizza"
281
 
282
- #: core/options-pages.php:435
283
  msgid "Synchronizing..."
284
  msgstr "Sincronizzazione..."
285
 
286
- #: core/options-pages.php:473 core/options-pages.php:1579
287
  msgid "Restore WordPress default MIME Types"
288
  msgstr "Ripristina i tipi MIME predefiniti di WordPress"
289
 
290
- #: core/options-pages.php:474
291
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
292
  msgstr ""
293
  "Attenzione! Tutti i tuoi tipi MIME personalizzati verranno eliminati con "
294
  "questa operazione."
295
 
296
- #: core/options-pages.php:475
297
  msgid "Restore Defaults"
298
  msgstr ""
299
 
300
- #: core/options-pages.php:476
301
  msgid "Restoring..."
302
  msgstr ""
303
 
304
- #: core/options-pages.php:480
305
  msgid "Please fill into all fields."
306
  msgstr "Si prega di compilare in tutti i campi."
307
 
308
- #: core/options-pages.php:481
309
  msgid "Duplicate extensions or MIME types. Please chose other one."
310
  msgstr "Estensione o tipo MIME duplicato. Si prega di sceglierne un altro."
311
 
312
- #: core/options-pages.php:518 core/options-pages.php:635
313
  msgid "Complete Cleanup"
314
  msgstr "Pulizia completa"
315
 
316
- #: core/options-pages.php:519
317
  msgid ""
318
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
319
  "plugin data</strong> from the database including backups."
@@ -321,23 +320,23 @@ msgstr ""
321
  "Stai per <strong style=\"text-transform:uppercase\">eliminare tutti i dati "
322
  "del plugin</strong> dal database inclusi i backup."
323
 
324
- #: core/options-pages.php:521
325
  msgid "Yes, delete all data"
326
  msgstr "S&igrave;, cancella tutti i dati"
327
 
328
- #: core/options-pages.php:522
329
  msgid "Cleaning..."
330
  msgstr "Pulizia in corso..."
331
 
332
- #: core/options-pages.php:553
333
  msgid "Enhanced Media Library Settings"
334
  msgstr "Impostazioni Enhanced Media Library"
335
 
336
- #: core/options-pages.php:563
337
  msgid "Export"
338
  msgstr "Esporta"
339
 
340
- #: core/options-pages.php:567
341
  msgid ""
342
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -349,15 +348,15 @@ msgstr ""
349
  "esportate in un file di configurazione. Questo consente di importare "
350
  "facilmente la configurazione in un altro sito web."
351
 
352
- #: core/options-pages.php:572
353
  msgid "Export Plugin Settings"
354
  msgstr "Esporta le impostazioni del plugin"
355
 
356
- #: core/options-pages.php:582
357
  msgid "Import"
358
  msgstr "Importa"
359
 
360
- #: core/options-pages.php:586
361
  msgid ""
362
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
363
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -370,7 +369,7 @@ msgstr ""
370
  "mediante l'esportazione da un altro sito web utilizzando il pulsante Esporta "
371
  "sopra."
372
 
373
- #: core/options-pages.php:587
374
  msgid ""
375
  "All plugin settings will be overridden by the import. You will have a chance "
376
  "to restore current data from an automatic backup in case you are not "
@@ -381,60 +380,60 @@ msgstr ""
381
  "automatico nel caso in cui non sarete soddisfatti del risultato "
382
  "dell'importazione."
383
 
384
- #: core/options-pages.php:594
385
  msgid "Import Plugin Settings"
386
  msgstr "Importa le impostazioni del plugin"
387
 
388
- #: core/options-pages.php:606
389
  msgid "Restore"
390
  msgstr "Ripristina"
391
 
392
- #: core/options-pages.php:612
393
  msgid "No backup available at the moment."
394
  msgstr "Nessun backup disponibile attualmente."
395
 
396
- #: core/options-pages.php:614
397
  msgid "Backup will be created automatically before any import operation."
398
  msgstr ""
399
  "Il backup verr&agrave; creato automaticamente prima di qualsiasi operazione "
400
  "di importazione."
401
 
402
- #: core/options-pages.php:618
403
  msgid ""
404
  "The backup has been automatically created before the latest import operation."
405
  msgstr ""
406
  "Il backup &egrave; stato creato automaticamente prima dell'ultima operazione "
407
  "di importazione."
408
 
409
- #: core/options-pages.php:622
410
  msgid "Restore Settings from the Backup"
411
  msgstr "Ripristina le impostazioni dal backup"
412
 
413
- #: core/options-pages.php:642
414
  msgid "What will be deleted:"
415
  msgstr "Cosa sar&agrave; cancellato:"
416
 
417
- #: core/options-pages.php:647
418
  msgid "All plugin options"
419
  msgstr "Tutte le opzioni del plugin"
420
 
421
- #: core/options-pages.php:648
422
  msgid "All plugin backups stored in database"
423
  msgstr "Tutti i backup del plugin salvati nel database"
424
 
425
- #: core/options-pages.php:652
426
  msgid "What will remain intact:"
427
  msgstr "Cosa rester&agrave; invariato:"
428
 
429
- #: core/options-pages.php:653
430
  msgid "All media items"
431
  msgstr "Tutti gli elementi media"
432
 
433
- #: core/options-pages.php:654
434
  msgid "All taxonomies not listed above"
435
  msgstr " Tutte le tassonomie non elencate sopra"
436
 
437
- #: core/options-pages.php:657
438
  msgid ""
439
  "The plugin cannot delete itself because of security reason. Please delete it "
440
  "manually from plugin list after cleanup."
@@ -442,7 +441,7 @@ msgstr ""
442
  "Il plugin non pu&ograve; eliminare se stesso per motivi di sicurezza. Si "
443
  "prega di eliminarlo manualmente dalla lista plugin dopo la pulizia."
444
 
445
- #: core/options-pages.php:659
446
  msgid ""
447
  "If you are not sure about this operation please create a backup of your "
448
  "database prior to cleanup!"
@@ -450,78 +449,73 @@ msgstr ""
450
  "Se non siete sicuri su questa operazione si prega di creare un backup del "
451
  "vostro database prima di eseguire la pulizia!"
452
 
453
- #: core/options-pages.php:665
454
  msgid "Delete All Data & Deactivate"
455
  msgstr "Elimina tutti i dati e disattiva il plugin"
456
 
457
- #: core/options-pages.php:765
458
  msgid "Please upload a file to import settings."
459
  msgstr "Si prega di caricare un file da cui importare le impostazioni."
460
 
461
- #: core/options-pages.php:791
462
  msgid "Plugin settings imported."
463
  msgstr "Impstazioni del plugin importate."
464
 
465
- #: core/options-pages.php:838
466
  msgid "Plugin settings restored from the backup."
467
  msgstr "Impostazioni del plugin ripristinate dal backup."
468
 
469
- #: core/options-pages.php:1027
470
  msgid "Media Items Order"
471
  msgstr "Ordinamento elementi media"
472
 
473
- #: core/options-pages.php:1034
474
  msgid "Order media items by"
475
  msgstr "Ordina gli elementi media per"
476
 
477
- #: core/options-pages.php:1037 pro/core/medialist.php:28
478
- #: pro/core/medialist.php:73
479
  msgid "Date"
480
  msgstr "Data"
481
 
482
- #: core/options-pages.php:1038 pro/core/medialist.php:31
483
- #: pro/core/medialist.php:76
484
  msgid "Title"
485
  msgstr "Titolo"
486
 
487
- #: core/options-pages.php:1039 pro/core/medialist.php:34
488
- #: pro/core/medialist.php:79
489
  msgid "Custom Order"
490
  msgstr "Ordinamento personalizzato"
491
 
492
- #: core/options-pages.php:1041 core/options-pages.php:1053
493
  msgid "For media library and media popups"
494
  msgstr "Per la libreria media e i pop-up media"
495
 
496
- #: core/options-pages.php:1042
497
  msgid "Option allows to change order by drag and drop with Custom Order value."
498
  msgstr ""
499
  "Questa opzione permette di modificare l'ordine con il drag &amp; drop con il "
500
  "valore dell'ordinamento personalizzato."
501
 
502
- #: core/options-pages.php:1047
503
  msgid "Sort order"
504
  msgstr "Ordinamento"
505
 
506
- #: core/options-pages.php:1050 pro/core/medialist.php:47
507
- #: pro/core/medialist.php:92
508
  msgid "Ascending"
509
  msgstr "Ascendente"
510
 
511
- #: core/options-pages.php:1051 pro/core/medialist.php:50
512
- #: pro/core/medialist.php:95
513
  msgid "Descending"
514
  msgstr "Discendente"
515
 
516
- #: core/options-pages.php:1066
517
  msgid "Media Shortcodes"
518
  msgstr "Shortcode Media"
519
 
520
- #: core/options-pages.php:1073 core/options-pages.php:1076
521
  msgid "Enhanced media shortcodes"
522
  msgstr "Shortcode media avanzati"
523
 
524
- #: core/options-pages.php:1077
525
  msgid ""
526
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
527
  "upload date, and media items number limit"
@@ -529,19 +523,19 @@ msgstr ""
529
  "Migliora gli shortcode media di WordPress in modo da poter usare le "
530
  "tassonomie Media, la data di caricamento e il limite di elementi media"
531
 
532
- #: core/options-pages.php:1078
533
  msgid "Gallery example:"
534
  msgstr "Esempio di galleria:"
535
 
536
- #: core/options-pages.php:1079
537
  msgid "Audio playlist example:"
538
  msgstr "Esempio di playlist audio:"
539
 
540
- #: core/options-pages.php:1080
541
  msgid "Video playlist example:"
542
  msgstr "Esempio di playlist video:"
543
 
544
- #: core/options-pages.php:1082
545
  #, php-format
546
  msgid ""
547
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
@@ -549,12 +543,12 @@ msgstr ""
549
  "%sAttenzione:%s &Egrave; possibile che ci sia Incompatibilit&agrave; con "
550
  "altri plugin gallery o temi!"
551
 
552
- #: core/options-pages.php:1084
553
  #, php-format
554
  msgid "%sLearn more%s."
555
  msgstr "%sPer saperne di pi&ugrave;%s."
556
 
557
- #: core/options-pages.php:1086
558
  #, php-format
559
  msgid ""
560
  "Please check out your gallery front-end and back-end functionality once this "
@@ -565,243 +559,243 @@ msgstr ""
565
  "end funzionalità una volta che questa opzione &egrave; stata attivata. Se "
566
  "trovate un problema si prega di informare gli autori del plugin %s or %s."
567
 
568
- #: core/options-pages.php:1155 core/options-pages.php:1302
569
  msgid "Assign following taxonomies to Media Library:"
570
  msgstr "Assegna le seguenti tassonomie alla Libreria Media:"
571
 
572
- #: core/options-pages.php:1174 core/options-pages.php:1240
573
- #: core/options-pages.php:1324
574
  msgid "Assign Taxonomy"
575
  msgstr "Assegna tassonomia"
576
 
577
- #: core/options-pages.php:1175 core/options-pages.php:1325
578
  msgid "Edit Taxonomy"
579
  msgstr "Modifica tassonomia"
580
 
581
- #: core/options-pages.php:1179 core/options-pages.php:1242
582
  msgid "Delete Taxonomy"
583
  msgstr "Elimina tassonomia"
584
 
585
- #: core/options-pages.php:1184 core/options-pages.php:1247
586
  msgid "Labels"
587
  msgstr "Etichette"
588
 
589
- #: core/options-pages.php:1186 core/options-pages.php:1249
590
  msgid "Singular"
591
  msgstr "Singolare"
592
 
593
- #: core/options-pages.php:1187 core/options-pages.php:1250
594
  msgid "Plural"
595
  msgstr "Plurale"
596
 
597
- #: core/options-pages.php:1188 core/options-pages.php:1251
598
  msgid "Menu Name"
599
  msgstr "Nome menu"
600
 
601
- #: core/options-pages.php:1201 core/options-pages.php:1224
602
- #: core/options-pages.php:1264 core/options-pages.php:1328
603
  msgid "Settings"
604
  msgstr "Impostazioni"
605
 
606
- #: core/options-pages.php:1203 core/options-pages.php:1266
607
  msgid "Taxonomy Name"
608
  msgstr "Nome tassonomia"
609
 
610
- #: core/options-pages.php:1204 core/options-pages.php:1267
611
  msgid "Hierarchical"
612
  msgstr "Gerarchico"
613
 
614
- #: core/options-pages.php:1205 core/options-pages.php:1268
615
  msgid "Column for List View"
616
  msgstr "Colonna nella visualizzazione a lista"
617
 
618
- #: core/options-pages.php:1206 core/options-pages.php:1226
619
- #: core/options-pages.php:1269 core/options-pages.php:1330
620
  msgid "Filter for List View"
621
  msgstr "Filtro per la visualizzazione a lista"
622
 
623
- #: core/options-pages.php:1207 core/options-pages.php:1227
624
- #: core/options-pages.php:1270 core/options-pages.php:1331
625
  msgid "Filter for Grid View / Media Popup"
626
  msgstr "Filtro per la visualizzazione a griglia / pop-up Media"
627
 
628
- #: core/options-pages.php:1208 core/options-pages.php:1228
629
- #: core/options-pages.php:1271 core/options-pages.php:1332
630
  msgid "Edit in Media Popup"
631
  msgstr "Modifica nel pop-up media"
632
 
633
- #: core/options-pages.php:1209 core/options-pages.php:1272
634
  msgid "Show in Nav Menu"
635
  msgstr "Mostra nel menu di navigazione"
636
 
637
- #: core/options-pages.php:1210 core/options-pages.php:1273
638
  msgid "Remember Terms Order (sort)"
639
  msgstr "Ricorda l'ordinamento dei termini (sort)"
640
 
641
- #: core/options-pages.php:1211 core/options-pages.php:1274
642
  msgid "Show in REST"
643
  msgstr "Mostra in REST"
644
 
645
- #: core/options-pages.php:1212 core/options-pages.php:1275
646
  msgid "Rewrite Slug"
647
  msgstr "Rewrite per lo slug"
648
 
649
- #: core/options-pages.php:1213 core/options-pages.php:1276
650
  msgid "Slug with Front"
651
  msgstr "Slug (with_front)"
652
 
653
- #: core/options-pages.php:1288
654
  msgid "Add New Taxonomy"
655
  msgstr "Aggiungi nuova tassonomia"
656
 
657
- #: core/options-pages.php:1298
658
  msgid "Non-Media Taxonomies"
659
  msgstr "Tassonomie non Media"
660
 
661
- #: core/options-pages.php:1361
662
  msgid "Options"
663
  msgstr "Opzioni"
664
 
665
- #: core/options-pages.php:1371 core/options-pages.php:1374
666
  msgid "Taxonomy archive pages"
667
  msgstr "Pagine di archivio della tassonomia"
668
 
669
- #: core/options-pages.php:1375
670
  msgid "Turn on media taxonomy archive pages on the front-end"
671
  msgstr "Attiva le pagine di archivio della tassonomia sul front-end"
672
 
673
- #: core/options-pages.php:1376
674
  msgid ""
675
  "Re-save your permalink settings after this option change to make it work."
676
  msgstr ""
677
  "Salvare nuovamente le impostazioni dei permalink dopo la modifica di questa "
678
  "opzione affinch&egrave; i cambiamenti abbiano effetto."
679
 
680
- #: core/options-pages.php:1382 core/options-pages.php:1385
681
  msgid "Assign all like hierarchical"
682
  msgstr "Considera tutte le tassonomie come gerarchiche"
683
 
684
- #: core/options-pages.php:1386
685
  msgid ""
686
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
687
  msgstr ""
688
  "Mostra le tassonomie non gerarchiche come gerarchiche nella visualizzazione "
689
  "a griglia / pop-up media"
690
 
691
- #: core/options-pages.php:1392 core/options-pages.php:1395
692
  msgid "Force filters"
693
  msgstr "Forza i filtri"
694
 
695
- #: core/options-pages.php:1396
696
  msgid "Show media filters for ANY Media Popup"
697
  msgstr "Vistualizza i filtri media per tutti i pop-up media"
698
 
699
- #: core/options-pages.php:1397
700
  msgid "Try this if filters are not shown for third-party plugins or themes."
701
  msgstr ""
702
  "Prova questa opzione se i filtri non vengono visualizzati nei plugin o temi "
703
  "di terze parti."
704
 
705
- #: core/options-pages.php:1403 core/options-pages.php:1406
706
  msgid "Show count"
707
  msgstr ""
708
 
709
- #: core/options-pages.php:1407
710
  msgid "Show item count per category for media filters"
711
  msgstr ""
712
 
713
- #: core/options-pages.php:1461
714
  msgid "Add New MIME Type"
715
  msgstr "Aggiungi un nuovo tipo MIME"
716
 
717
- #: core/options-pages.php:1481 core/options-pages.php:1536
718
  msgid "Extension"
719
  msgstr "Estensione"
720
 
721
- #: core/options-pages.php:1482 core/options-pages.php:1537
722
  msgid "MIME Type"
723
  msgstr "Tipo MIME"
724
 
725
- #: core/options-pages.php:1483 core/options-pages.php:1538
726
  msgid "Singular Label"
727
  msgstr "Etichetta per il singolare"
728
 
729
- #: core/options-pages.php:1484 core/options-pages.php:1539
730
  msgid "Plural Label"
731
  msgstr "Etichetta per il plurale"
732
 
733
- #: core/options-pages.php:1485 core/options-pages.php:1515
734
- #: core/options-pages.php:1528 core/options-pages.php:1540
735
  msgid "Add Filter"
736
  msgstr "Aggiungi filtro"
737
 
738
- #: core/options-pages.php:1486 core/options-pages.php:1516
739
- #: core/options-pages.php:1529 core/options-pages.php:1541
740
  msgid "Allow Upload"
741
  msgstr "Permetti upload"
742
 
743
- #: core/options-pages.php:1517 core/options-pages.php:1530
744
  msgid "Delete MIME Type"
745
  msgstr "Elimina il tipo MIME"
746
 
747
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
748
  msgid "Save Changes"
749
  msgstr "Salva le modifiche"
750
 
751
- #: core/options-pages.php:1607
752
  msgid "Changelog"
753
  msgstr "Changelog"
754
 
755
- #: core/options-pages.php:1608
756
  msgid "What's new in"
757
  msgstr "Cosa c'&egrave; di nuovo nella"
758
 
759
- #: core/options-pages.php:1608
760
  msgid "version"
761
  msgstr "versione"
762
 
763
- #: core/options-pages.php:1611
764
  msgid "More features under the hood"
765
  msgstr "Ulteriori caratteristiche sotto il 'coperchio'"
766
 
767
- #: core/options-pages.php:1613
768
  msgid "Support"
769
  msgstr "Supporto"
770
 
771
- #: core/options-pages.php:1614
772
  msgid "Feel free to ask for help on"
773
  msgstr "Sentitevi liberi di chiedere aiuto su"
774
 
775
- #: core/options-pages.php:1614
776
  msgid "Support is free for both versions of the plugin."
777
  msgstr ""
778
  "Il supporto tecnico &egrave; gratuito per entrambe le versioni del plugin."
779
 
780
- #: core/options-pages.php:1616
781
  msgid "Plugin rating"
782
  msgstr "Valutazione plugin"
783
 
784
- #: core/options-pages.php:1617
785
  msgid "Please"
786
  msgstr "Prego"
787
 
788
- #: core/options-pages.php:1617
789
  msgid "vote for the plugin"
790
  msgstr "vota il plugin"
791
 
792
- #: core/options-pages.php:1617
793
  msgid "Thanks!"
794
  msgstr "Grazie!"
795
 
796
- #: core/options-pages.php:1619
797
  msgid "Other plugins you may find useful"
798
  msgstr "Altri plugin che potresti trovare utili"
799
 
800
- #: core/options-pages.php:1658
801
  msgid "Utility"
802
  msgstr "Utilit&agrave;"
803
 
804
- #: core/options-pages.php:1681
805
  msgid "Vote!"
806
  msgstr "Vota!"
807
 
@@ -814,398 +808,98 @@ msgid "Media Library settings saved."
814
  msgstr "Impostazioni Libreria Media salvate."
815
 
816
  #: core/taxonomies.php:333 core/taxonomies.php:339
817
- #: enhanced-media-library.php:502
818
  msgid "Filter by"
819
  msgstr "Filtra per"
820
 
821
- #: core/taxonomies.php:341 enhanced-media-library.php:504
822
  msgid "Not in a"
823
  msgstr "Non in"
824
 
825
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
826
  msgid "All Uncategorized"
827
  msgstr "Tutti gli elementi non classificati"
828
 
829
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
830
  msgid "Reset All Filters"
831
  msgstr "Reimposta tutti i filtri"
832
 
833
- #: enhanced-media-library.php:535
834
  msgid "Uploaded to post #"
835
  msgstr "Caricato nel post #"
836
 
837
- #: enhanced-media-library.php:536
838
  msgid "Based On"
839
  msgstr "Basato su"
840
 
841
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
842
  msgid "Media Categories"
843
  msgstr "Categorie Media"
844
 
845
- #: enhanced-media-library.php:582
846
  msgid "Media Category"
847
  msgstr "Categoria Media"
848
 
849
- #: enhanced-media-library.php:584
850
  msgid "All Media Categories"
851
  msgstr "Tutte le categorie Media"
852
 
853
- #: enhanced-media-library.php:585
854
  msgid "Edit Media Category"
855
  msgstr "Modifica categoria Media"
856
 
857
- #: enhanced-media-library.php:586
858
  msgid "View Media Category"
859
  msgstr "Visualizza categoria Media"
860
 
861
- #: enhanced-media-library.php:587
862
  msgid "Update Media Category"
863
  msgstr "Aggiorna categoria Media"
864
 
865
- #: enhanced-media-library.php:588
866
  msgid "Add New Media Category"
867
  msgstr "Aggiungi nuova categoria Media"
868
 
869
- #: enhanced-media-library.php:589
870
  msgid "New Media Category Name"
871
  msgstr "Nome della nuova categoria Media"
872
 
873
- #: enhanced-media-library.php:590
874
  msgid "Parent Media Category"
875
  msgstr "Categoria media genitore"
876
 
877
- #: enhanced-media-library.php:591
878
  msgid "Parent Media Category:"
879
  msgstr "Categoria media genitore:"
880
 
881
- #: enhanced-media-library.php:592
882
  msgid "Search Media Categories"
883
  msgstr "Cerca nella categoria Media"
884
 
885
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
886
- msgid "Remove"
887
- msgstr "Rimuovi"
888
-
889
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
890
- msgid "Deselect"
891
- msgstr "Deseleziona"
892
-
893
- #: pro/core/bulk-edit.php:105
894
- msgid "Caption this image&hellip;"
895
- msgstr "Didascalia per questa immagine&hellip;"
896
-
897
- #: pro/core/bulk-edit.php:109
898
- msgid "Describe this video&hellip;"
899
- msgstr "Descrivi questo video&hellip;"
900
-
901
- #: pro/core/bulk-edit.php:111
902
- msgid "Describe this audio file&hellip;"
903
- msgstr "Descrivi questo file audio&hellip;"
904
-
905
- #: pro/core/bulk-edit.php:113
906
- msgid "Describe this media file&hellip;"
907
- msgstr "Descrivi questo file multimediale&hellip;"
908
-
909
- #: pro/core/bulk-edit.php:122
910
- msgid "Attachments Details"
911
- msgstr "Dettagli allegati"
912
-
913
- #: pro/core/bulk-edit.php:175
914
- msgid "Select All"
915
- msgstr "Seleziona tutto"
916
-
917
- #: pro/core/bulk-edit.php:176
918
- msgid "Deselect All"
919
- msgstr "Deseleziona tutto"
920
-
921
- #: pro/core/bulk-edit.php:177
922
- msgid "Delete Selected"
923
- msgstr "Elimina selezionati"
924
-
925
- #: pro/core/bulk-edit.php:178
926
- msgid "Trash Selected"
927
- msgstr ""
928
-
929
- #: pro/core/bulk-edit.php:179
930
- msgid "Restore Selected"
931
- msgstr ""
932
-
933
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
934
- msgid "Delete Selected Permanently"
935
- msgstr ""
936
-
937
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
938
- msgid "Order By"
939
- msgstr "Ordina per"
940
-
941
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
942
- msgid "Random"
943
- msgstr "Casuale"
944
-
945
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
946
- msgid "Order"
947
- msgstr "Ordinamento"
948
-
949
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
950
- msgid "Limit"
951
- msgstr "Limite"
952
-
953
- #: pro/core/options-pages.php:78
954
- msgid "Your license has been deactivated."
955
- msgstr "La tua licenza &egrave; stata disattivata."
956
-
957
- #: pro/core/options-pages.php:88
958
- msgid "Please check if your license key is correct and try again."
959
- msgstr ""
960
- "Si prega di verificare che la chiave della licenza sia correta e riprovare."
961
-
962
- #: pro/core/options-pages.php:104
963
- #, php-format
964
- msgid ""
965
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
966
- "authors</a>."
967
- msgstr ""
968
-
969
- #: pro/core/options-pages.php:119
970
- #, php-format
971
- msgid ""
972
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
973
- "plugin authors</a>."
974
- msgstr ""
975
-
976
- #: pro/core/options-pages.php:130
977
- msgid "You license has been activated."
978
- msgstr "La tua licenza &egrave; stata attivata."
979
-
980
- #: pro/core/options-pages.php:184
981
- #, php-format
982
- msgid "Auto-assign media items to parent %s %s on upload"
983
- msgstr ""
984
- "Assegna automaticamente gli elementi media al genitore %s %s al momento del "
985
- "caricamento"
986
-
987
- #: pro/core/options-pages.php:185
988
- #, php-format
989
- msgid ""
990
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
991
- "attached to a %s will be assigned to %s of their parent %s. Currently "
992
- "assigned %s will not be saved. Media items that are not attached to any %s "
993
- "will not be affected."
994
- msgstr ""
995
- "%sAttenzione:%s Come risultato del click su \"Sincronizza ora\" tutti gli "
996
- "elementi mutlimediali allegati a %s saranno assegnati a %s del loro genitore "
997
- "%s. I %s attualmente assegnati non saranno salvati. Gli elementi "
998
- "multimediali che non sono collegati ad alcun %s non saranno interessati."
999
-
1000
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
1001
- msgid "Bulk Edit"
1002
- msgstr "Modifica di Gruppo"
1003
-
1004
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
1005
- msgid "Turn off 'Save Changes' button"
1006
- msgstr "Disattiva il pulsante 'Salva modifiche'"
1007
-
1008
- #: pro/core/options-pages.php:220
1009
- msgid "Save changes on the fly"
1010
- msgstr "Salva le modifiche al volo"
1011
-
1012
- #: pro/core/options-pages.php:221
1013
- msgid ""
1014
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
1015
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
1016
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
1017
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
1018
- "files / taxonomies with this option turned on."
1019
- msgstr ""
1020
- "Ogni click su una casella di controllo della tassonomia durante la modifica "
1021
- "di gruppo dei file multimediali comporter&agrave; un <strong style=\"color:"
1022
- "red\">immediato salvataggio</strong> dei dati. Fate attenzione! Hai molte "
1023
- "possibilità di <strong style=\"color:red\">eseguire accidentalmente "
1024
- "un'errata riassegnazione</strong> di un sacco di file multimediali e "
1025
- "tassonomie quando questa opzione &egrave; attiva."
1026
-
1027
- #: pro/core/options-pages.php:222
1028
- msgid ""
1029
- "Strongly NOT recommended option if you work with more than hundred of files "
1030
- "at a time."
1031
- msgstr ""
1032
- "Opzione fortemente NON consigliata se si lavora con pi&ugrave; di cento file "
1033
- "alla volta."
1034
-
1035
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
1036
- msgid "License Key"
1037
- msgstr "Chiave della licenza"
1038
-
1039
- #: pro/core/options-pages.php:273
1040
- #, php-format
1041
- msgid ""
1042
- "To unlock updates please enter your license key below. You can get your "
1043
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
1044
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
1045
- msgstr ""
1046
- "Per sbloccare gli aggiornamenti, inserirsci il codice della tua licenza qui "
1047
- "sotto. &Egrave; possibile ottenere il codice della tua licenza nel <a href="
1048
- "\"%s\">Tuo Account</a>. Se non si dispone di una licenza, sei invitato ad <a "
1049
- "href=\"%s\">acquistarla</a>."
1050
-
1051
- #: pro/core/options-pages.php:283
1052
- msgid "Activate License"
1053
- msgstr "Attiva licenza"
1054
-
1055
- #: pro/core/options-pages.php:290
1056
- msgid "Your license is active!"
1057
- msgstr "La tua licenza è attiva!"
1058
-
1059
- #: pro/core/options-pages.php:294
1060
- msgid "Deactivate License"
1061
- msgstr "Disattiva licenza"
1062
-
1063
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1064
- msgid ""
1065
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1066
- "this server&#8217;s configuration. If you continue to have problems, please "
1067
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1068
- msgstr ""
1069
- "Si &egrave; verificato un errore inaspettato. Qualcosa deve essere andato "
1070
- "male con WordPress.org o con la configurazione di questo server. Se continui "
1071
- "ad avere problemi prova a consultare il <a href=\"https://wordpress.org/"
1072
- "support/\">forum di supporto</a>."
1073
-
1074
- #: pro/core/update.php:113
1075
- msgid ""
1076
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1077
- "contact your server administrator.)"
1078
- msgstr ""
1079
- "(WordPress non pu&ograve; stabilire una connessione sicura a WordPress.org. "
1080
- "Contatta l’amministratore del tuo server.)"
1081
-
1082
- #: pro/core/update.php:181
1083
- #, php-format
1084
- msgid ""
1085
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1086
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1087
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1088
- msgstr ""
1089
- "Per sbloccare gli aggiornamenti, si prega di <a href=\"%s\">attivare la tua "
1090
- "licenza</a>. &Egrave; possibile ottenere il codice della tua licenza nel <a "
1091
- "href=\"%s\">Tuo Account</a>. Se non si dispone di una licenza, siete "
1092
- "invitati ad <a href=\"%s\">acquistarla</a>."
1093
-
1094
- #: pro/enhanced-media-library-pro.php:119
1095
- msgid "ALL files belong to this item"
1096
- msgstr "TUTTI i file appartengono a questo elemento"
1097
-
1098
- #: pro/enhanced-media-library-pro.php:120
1099
- msgid "SOME files belong to this item"
1100
- msgstr "ALCUNI file appartengono a questo elemento"
1101
-
1102
- #: pro/enhanced-media-library-pro.php:121
1103
- msgid "NO files belong to this item"
1104
- msgstr "NESSUN file appartiene a questo elemento"
1105
-
1106
- #: pro/enhanced-media-library-pro.php:122
1107
- msgid "Changes saved."
1108
- msgstr "Cambiamenti salvati."
1109
-
1110
- #: pro/enhanced-media-library-pro.php:123
1111
- msgid "Something went wrong."
1112
- msgstr " Qualcosa è andato male."
1113
-
1114
- #: pro/enhanced-media-library-pro.php:126
1115
- msgid "Edit Media Files"
1116
- msgstr "Modifica i file media"
1117
-
1118
- #: pro/enhanced-media-library-pro.php:129
1119
- msgid "Selecting"
1120
- msgstr ""
1121
-
1122
- #: pro/enhanced-media-library-pro.php:131
1123
- msgid "You are about to permanently delete all selected items."
1124
- msgstr ""
1125
-
1126
- #: pro/enhanced-media-library-pro.php:132
1127
- msgid "Delete"
1128
- msgstr ""
1129
-
1130
- #: pro/enhanced-media-library-pro.php:134
1131
- msgid "Moving to Trash"
1132
- msgstr ""
1133
-
1134
- #: pro/enhanced-media-library-pro.php:135
1135
- msgid "Restoring"
1136
- msgstr ""
1137
-
1138
- #: pro/enhanced-media-library-pro.php:136
1139
- msgid "Deleting"
1140
- msgstr ""
1141
-
1142
- #: pro/enhanced-media-library-pro.php:160
1143
- msgid "Create a filter-based gallery"
1144
- msgstr "Crea una galleria basata su filtro"
1145
-
1146
- #: pro/enhanced-media-library-pro.php:161
1147
- msgid "Create a filter-based playlist"
1148
- msgstr "Crea un playlist basata su filtro"
1149
-
1150
- #: pro/enhanced-media-library-pro.php:162
1151
- msgid "Create a filter-based video playlist"
1152
- msgstr "Crea una playlist video basata su filtro"
1153
-
1154
- #: pro/enhanced-media-library-pro.php:240
1155
- msgid ""
1156
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1157
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1158
- "will remain intact."
1159
- msgstr ""
1160
- "Si prega di disattivare e <strong>rimuovere /strong> la vecchia versione "
1161
- "GRATUITA prima dell'attivazione di <strong>Enhanced Media Library PRO</"
1162
- "strong>. Tutti i vostri dati rimarranno intatti."
1163
-
1164
- #: pro/enhanced-media-library-pro.php:240
1165
- msgid "Return to Plugins"
1166
- msgstr "Torna ai plugin"
1167
-
1168
- #: pro/enhanced-media-library-pro.php:291
1169
- msgid ""
1170
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1171
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1172
- "be active. Please network deactivate and delete the free versions of the "
1173
- "plugin. All your data will remain intact."
1174
- msgstr ""
1175
- "Entrambe le versioni GRATUITA e PRO di Enhanced Media Library sono attive "
1176
- "sul Network. <strong>Enhanced Media Library PRO</ strong> non richiede che "
1177
- "la versione gratuita sia attiva. Si prega di disattivare sul Network ed "
1178
- "eliminare le versioni gratuite del plugin. Tutti i vostri dati rimarranno "
1179
- "intatti."
1180
-
1181
- #: pro/enhanced-media-library-pro.php:308
1182
- msgid ""
1183
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1184
- "be active. Please deactivate and delete the free version of the plugin. All "
1185
- "your data will remain intact."
1186
- msgstr ""
1187
- "<strong>Enhanced Media Library PRO</strong> non richiede che la version "
1188
- "gratuita sia attiva. Si prega di disattivare ed eliminare la versione "
1189
- "gratuita del plugin. Tutti i vostri dati rimarranno intatti."
1190
-
1191
- #: pro/enhanced-media-library-pro.php:324
1192
- msgid ""
1193
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1194
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1195
- "version to be active. Please deactivate (or network deactivate) and delete "
1196
- "the free version of the plugin for this site. All your data will remail "
1197
- "intact."
1198
- msgstr ""
1199
- "Entrambe le versioni GRATUITA e PRO di Enhanced Media Library sono attive "
1200
- "per questo sito. <strong>Enhanced Media Library PRO</ strong> non richiede "
1201
- "che la versione gratuita sia attiva. Si prega di disattivare (eventualmente "
1202
- "anche sul Network) ed eliminare la versione gratuita del plugin. Tutti i "
1203
- "vostri dati rimarranno intatti."
1204
-
1205
- #. Plugin Name of the plugin/theme
1206
- msgid "Enhanced Media Library PRO"
1207
- msgstr ""
1208
-
1209
  #. Plugin URI of the plugin/theme
1210
  #. Author URI of the plugin/theme
1211
  msgid "http://wpUXsolutions.com"
@@ -1221,14 +915,3 @@ msgstr ""
1221
  #. Author of the plugin/theme
1222
  msgid "wpUXsolutions"
1223
  msgstr ""
1224
-
1225
- #~ msgid "Not in"
1226
- #~ msgstr "Non in"
1227
-
1228
- #~ msgid ""
1229
- #~ "Wrong license key or a server error occured. Please check your license "
1230
- #~ "key and try again."
1231
- #~ msgstr ""
1232
- #~ "La chiave della licenza non &egrave; corretta o si &egrave; verificato un "
1233
- #~ "errore del server. Si prega di verificare la chiave della licenza e "
1234
- #~ "riprovare."
1
+ # Translation of Enhanced Media Library (Free & PRO) in Italian
2
+ # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
+ "POT-Creation-Date: 2017-01-13 03:02+0200\n"
7
+ "PO-Revision-Date: 2017-01-13 03:03+0200\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: it\n"
 
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Generator: Poedit 1.8.11\n"
 
 
 
16
 
17
  #: core/mime-types.php:30
18
  msgid "MIME Types settings restored."
29
  msgstr[0] " <span class=\"count\">(%s)</span>"
30
  msgstr[1] " <span class=\"count\">(%s)</span>"
31
 
32
+ #: core/options-pages.php:97 core/options-pages.php:220
33
+ #: core/options-pages.php:313 core/options-pages.php:1080
34
+ #: core/options-pages.php:1204 core/options-pages.php:1529
35
+ #: core/options-pages.php:1729
36
  msgid "Media Settings"
37
  msgstr "Impostazioni Media"
38
 
39
+ #: core/options-pages.php:106 core/options-pages.php:285
40
  msgid "Media Library"
41
  msgstr "Libreria Media"
42
 
44
  msgid "Taxonomies"
45
  msgstr "Tassonomie"
46
 
47
+ #: core/options-pages.php:124 core/options-pages.php:287
48
  msgid "MIME Types"
49
  msgstr "Tipi MIME"
50
 
51
+ #. Plugin Name of the plugin/theme
52
  #: core/options-pages.php:135 core/options-pages.php:136
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
+ #: core/options-pages.php:284
57
  msgid "General"
58
  msgstr "Generale"
59
 
60
+ #: core/options-pages.php:286 core/options-pages.php:1225
61
  msgid "Media Taxonomies"
62
  msgstr "Tassonomie Media"
63
 
64
+ #: core/options-pages.php:310 core/options-pages.php:622
65
+ #: core/options-pages.php:1076 core/options-pages.php:1201
66
+ #: core/options-pages.php:1525
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "Non disponi dei permessi sufficienti per accedere a questa pagina."
69
 
70
+ #: core/options-pages.php:324
71
  msgid "Image sizes"
72
  msgstr "Dimensioni immagine"
73
 
74
+ #: core/options-pages.php:325
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
79
  "Le misure qui sotto determinano le dimensioni massime in pixel da utilizzare "
80
  "quando si aggiunge un'immagine alla Libreria Media."
81
 
82
+ #: core/options-pages.php:329
83
  msgid "Thumbnail size"
84
  msgstr "Dimensioni della miniatura"
85
 
86
+ #: core/options-pages.php:331
87
  msgid "Width"
88
  msgstr "Larghezza"
89
 
90
+ #: core/options-pages.php:333
91
  msgid "Height"
92
  msgstr "Altezza"
93
 
94
+ #: core/options-pages.php:336
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
  "Ritaglia la miniatura alle dimensioni esatte (solitamente le miniature sono "
99
  "proporzionali)"
100
 
101
+ #: core/options-pages.php:341 core/options-pages.php:342
102
  msgid "Medium size"
103
  msgstr "Dimensioni medie"
104
 
105
+ #: core/options-pages.php:343 core/options-pages.php:353
106
  msgid "Max Width"
107
  msgstr "Larghezza massima"
108
 
109
+ #: core/options-pages.php:345 core/options-pages.php:355
110
  msgid "Max Height"
111
  msgstr "Altezza massima"
112
 
113
+ #: core/options-pages.php:351 core/options-pages.php:352
114
  msgid "Large size"
115
  msgstr "Dimensioni grandi"
116
 
117
+ #: core/options-pages.php:368
118
  msgid "Embeds"
119
  msgstr "Incorporamenti"
120
 
121
+ #: core/options-pages.php:375
122
  msgid "Uploading Files"
123
  msgstr "Caricamento file"
124
 
125
+ #: core/options-pages.php:382
126
  msgid "Store uploads in this folder"
127
  msgstr "Caricamento file"
128
 
129
+ #: core/options-pages.php:386
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr "Il valore di default &egrave; %s"
133
 
134
+ #: core/options-pages.php:392
135
  msgid "Full URL path to files"
136
  msgstr "URL completo dei file"
137
 
138
+ #: core/options-pages.php:394
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
  "La configurazione &egrave; opzionale. Per impostazione predefinita, dovrebbe "
142
  "essere vuoto."
143
 
144
+ #: core/options-pages.php:402
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr "Organizza gli upload in cartelle sulla base di mese e anno"
147
 
148
+ #: core/options-pages.php:474 core/options-pages.php:1249
149
+ #: core/options-pages.php:1264 core/options-pages.php:1327
150
+ #: core/options-pages.php:1399
151
  msgid "Edit"
152
  msgstr "Modifica"
153
 
154
+ #: core/options-pages.php:475
155
  msgid "Close"
156
  msgstr "Chiudi"
157
 
158
+ #: core/options-pages.php:476 core/options-pages.php:1265
159
+ #: core/options-pages.php:1328
160
  msgid "View"
161
  msgstr "Visualizza"
162
 
163
+ #: core/options-pages.php:477 core/options-pages.php:1266
164
+ #: core/options-pages.php:1329
165
  msgid "Update"
166
  msgstr "Aggiorna"
167
 
168
+ #: core/options-pages.php:478 core/options-pages.php:1267
169
+ #: core/options-pages.php:1330
170
  msgid "Add New"
171
  msgstr "Aggiungi nuovo"
172
 
173
+ #: core/options-pages.php:479 core/options-pages.php:1268
174
+ #: core/options-pages.php:1331
175
  msgid "New"
176
  msgstr "Nuovo"
177
 
178
+ #: core/options-pages.php:480
179
  msgid "Name"
180
  msgstr "Nome"
181
 
182
+ #: core/options-pages.php:481 core/options-pages.php:1269
183
+ #: core/options-pages.php:1332
184
  msgid "Parent"
185
  msgstr "Genitore"
186
 
187
+ #: core/options-pages.php:482 core/options-pages.php:718
188
+ #: core/options-pages.php:1263 core/options-pages.php:1326
189
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
190
  msgid "All"
191
  msgstr "Tutto"
192
 
193
+ #: core/options-pages.php:483 core/options-pages.php:1270
194
+ #: core/options-pages.php:1333
195
  msgid "Search"
196
  msgstr "Cerca"
197
 
198
+ #: core/options-pages.php:485 core/options-pages.php:1314
199
  msgid "New Taxonomy"
200
  msgstr "Nuova tassonomia"
201
 
202
+ #: core/options-pages.php:487
203
  msgid "Remove Taxonomy"
204
  msgstr "Elimina tassonomia"
205
 
206
+ #: core/options-pages.php:488
207
  msgid "Taxonomy will be removed."
208
  msgstr "La tassonomia verr&agrave; rimossa."
209
 
210
+ #: core/options-pages.php:489
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
217
  "Se in futuro verr&agrave; creata una tassonomia con lo stesso nome, i suoi "
218
  "termini (categorie) saranno nuovamente disponibili."
219
 
220
+ #: core/options-pages.php:490
221
  msgid "Media items will remain intact."
222
  msgstr "Gli elementi Media rimarranno invariati."
223
 
224
+ #: core/options-pages.php:491
225
  msgid "Are you still sure?"
226
  msgstr "Sei ancora sicuro?"
227
 
228
+ #: core/options-pages.php:492
229
  msgid "Yes, remove taxonomy"
230
  msgstr "S&igrave;, rimuovi la tassonomia"
231
 
232
+ #: core/options-pages.php:494
233
  msgid "Duplicate"
234
  msgstr "Doppione"
235
 
236
+ #: core/options-pages.php:495
237
  msgid "Taxonomy with the same name already exists. Please chose other one."
238
  msgstr ""
239
  "Una tassonomia con questo nome esiste gi&agrave;. Si prega di sceglierne un "
240
  "altro."
241
 
242
+ #: core/options-pages.php:497
243
  msgid "Empty Fields"
244
  msgstr "Campi vuoti"
245
 
246
+ #: core/options-pages.php:498
247
  msgid "Please choose Singular and Plural names for all new taxomonies."
248
  msgstr ""
249
  "Si prega di scegliere i nomi per il singolare e plurale per tutte le nuove "
250
  "tassonomie."
251
 
252
+ #: core/options-pages.php:499
253
  msgid "Please choose Singular name for all new taxomonies."
254
  msgstr ""
255
 
256
+ #: core/options-pages.php:500
257
  msgid "Please choose Plural Name for all new taxomonies."
258
  msgstr "Si prega di scegliere il nome plurale per tutte le nuove tassonomie."
259
 
260
+ #: core/options-pages.php:502
261
  msgid "Ok"
262
  msgstr "Ok"
263
 
264
+ #: core/options-pages.php:503 core/options-pages.php:508
265
+ #: core/options-pages.php:552 core/options-pages.php:597
 
266
  msgid "Cancel"
267
  msgstr "Annulla"
268
 
269
+ #: core/options-pages.php:505
270
  msgid "Synchronize Now"
271
  msgstr "Sincronizza ora"
272
 
273
+ #: core/options-pages.php:506 core/options-pages.php:594
274
  msgid "This operation cannot be canceled! Are you still sure?"
275
  msgstr " Questa operazione non può essere annullata! Sei sempre sicuro?"
276
 
277
+ #: core/options-pages.php:507
278
  msgid "Synchronize"
279
  msgstr "Sincronizza"
280
 
281
+ #: core/options-pages.php:509
282
  msgid "Synchronizing..."
283
  msgstr "Sincronizzazione..."
284
 
285
+ #: core/options-pages.php:547 core/options-pages.php:1653
286
  msgid "Restore WordPress default MIME Types"
287
  msgstr "Ripristina i tipi MIME predefiniti di WordPress"
288
 
289
+ #: core/options-pages.php:548
290
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
291
  msgstr ""
292
  "Attenzione! Tutti i tuoi tipi MIME personalizzati verranno eliminati con "
293
  "questa operazione."
294
 
295
+ #: core/options-pages.php:549
296
  msgid "Restore Defaults"
297
  msgstr ""
298
 
299
+ #: core/options-pages.php:550
300
  msgid "Restoring..."
301
  msgstr ""
302
 
303
+ #: core/options-pages.php:554
304
  msgid "Please fill into all fields."
305
  msgstr "Si prega di compilare in tutti i campi."
306
 
307
+ #: core/options-pages.php:555
308
  msgid "Duplicate extensions or MIME types. Please chose other one."
309
  msgstr "Estensione o tipo MIME duplicato. Si prega di sceglierne un altro."
310
 
311
+ #: core/options-pages.php:592 core/options-pages.php:709
312
  msgid "Complete Cleanup"
313
  msgstr "Pulizia completa"
314
 
315
+ #: core/options-pages.php:593
316
  msgid ""
317
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
318
  "plugin data</strong> from the database including backups."
320
  "Stai per <strong style=\"text-transform:uppercase\">eliminare tutti i dati "
321
  "del plugin</strong> dal database inclusi i backup."
322
 
323
+ #: core/options-pages.php:595
324
  msgid "Yes, delete all data"
325
  msgstr "S&igrave;, cancella tutti i dati"
326
 
327
+ #: core/options-pages.php:596
328
  msgid "Cleaning..."
329
  msgstr "Pulizia in corso..."
330
 
331
+ #: core/options-pages.php:627
332
  msgid "Enhanced Media Library Settings"
333
  msgstr "Impostazioni Enhanced Media Library"
334
 
335
+ #: core/options-pages.php:637
336
  msgid "Export"
337
  msgstr "Esporta"
338
 
339
+ #: core/options-pages.php:641
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
348
  "esportate in un file di configurazione. Questo consente di importare "
349
  "facilmente la configurazione in un altro sito web."
350
 
351
+ #: core/options-pages.php:646
352
  msgid "Export Plugin Settings"
353
  msgstr "Esporta le impostazioni del plugin"
354
 
355
+ #: core/options-pages.php:656
356
  msgid "Import"
357
  msgstr "Importa"
358
 
359
+ #: core/options-pages.php:660
360
  msgid ""
361
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
362
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
369
  "mediante l'esportazione da un altro sito web utilizzando il pulsante Esporta "
370
  "sopra."
371
 
372
+ #: core/options-pages.php:661
373
  msgid ""
374
  "All plugin settings will be overridden by the import. You will have a chance "
375
  "to restore current data from an automatic backup in case you are not "
380
  "automatico nel caso in cui non sarete soddisfatti del risultato "
381
  "dell'importazione."
382
 
383
+ #: core/options-pages.php:668
384
  msgid "Import Plugin Settings"
385
  msgstr "Importa le impostazioni del plugin"
386
 
387
+ #: core/options-pages.php:680
388
  msgid "Restore"
389
  msgstr "Ripristina"
390
 
391
+ #: core/options-pages.php:686
392
  msgid "No backup available at the moment."
393
  msgstr "Nessun backup disponibile attualmente."
394
 
395
+ #: core/options-pages.php:688
396
  msgid "Backup will be created automatically before any import operation."
397
  msgstr ""
398
  "Il backup verr&agrave; creato automaticamente prima di qualsiasi operazione "
399
  "di importazione."
400
 
401
+ #: core/options-pages.php:692
402
  msgid ""
403
  "The backup has been automatically created before the latest import operation."
404
  msgstr ""
405
  "Il backup &egrave; stato creato automaticamente prima dell'ultima operazione "
406
  "di importazione."
407
 
408
+ #: core/options-pages.php:696
409
  msgid "Restore Settings from the Backup"
410
  msgstr "Ripristina le impostazioni dal backup"
411
 
412
+ #: core/options-pages.php:716
413
  msgid "What will be deleted:"
414
  msgstr "Cosa sar&agrave; cancellato:"
415
 
416
+ #: core/options-pages.php:721
417
  msgid "All plugin options"
418
  msgstr "Tutte le opzioni del plugin"
419
 
420
+ #: core/options-pages.php:722
421
  msgid "All plugin backups stored in database"
422
  msgstr "Tutti i backup del plugin salvati nel database"
423
 
424
+ #: core/options-pages.php:726
425
  msgid "What will remain intact:"
426
  msgstr "Cosa rester&agrave; invariato:"
427
 
428
+ #: core/options-pages.php:727
429
  msgid "All media items"
430
  msgstr "Tutti gli elementi media"
431
 
432
+ #: core/options-pages.php:728
433
  msgid "All taxonomies not listed above"
434
  msgstr " Tutte le tassonomie non elencate sopra"
435
 
436
+ #: core/options-pages.php:731
437
  msgid ""
438
  "The plugin cannot delete itself because of security reason. Please delete it "
439
  "manually from plugin list after cleanup."
441
  "Il plugin non pu&ograve; eliminare se stesso per motivi di sicurezza. Si "
442
  "prega di eliminarlo manualmente dalla lista plugin dopo la pulizia."
443
 
444
+ #: core/options-pages.php:733
445
  msgid ""
446
  "If you are not sure about this operation please create a backup of your "
447
  "database prior to cleanup!"
449
  "Se non siete sicuri su questa operazione si prega di creare un backup del "
450
  "vostro database prima di eseguire la pulizia!"
451
 
452
+ #: core/options-pages.php:739
453
  msgid "Delete All Data & Deactivate"
454
  msgstr "Elimina tutti i dati e disattiva il plugin"
455
 
456
+ #: core/options-pages.php:839
457
  msgid "Please upload a file to import settings."
458
  msgstr "Si prega di caricare un file da cui importare le impostazioni."
459
 
460
+ #: core/options-pages.php:865
461
  msgid "Plugin settings imported."
462
  msgstr "Impstazioni del plugin importate."
463
 
464
+ #: core/options-pages.php:912
465
  msgid "Plugin settings restored from the backup."
466
  msgstr "Impostazioni del plugin ripristinate dal backup."
467
 
468
+ #: core/options-pages.php:1101
469
  msgid "Media Items Order"
470
  msgstr "Ordinamento elementi media"
471
 
472
+ #: core/options-pages.php:1108
473
  msgid "Order media items by"
474
  msgstr "Ordina gli elementi media per"
475
 
476
+ #: core/options-pages.php:1111
 
477
  msgid "Date"
478
  msgstr "Data"
479
 
480
+ #: core/options-pages.php:1112
 
481
  msgid "Title"
482
  msgstr "Titolo"
483
 
484
+ #: core/options-pages.php:1113
 
485
  msgid "Custom Order"
486
  msgstr "Ordinamento personalizzato"
487
 
488
+ #: core/options-pages.php:1115 core/options-pages.php:1127
489
  msgid "For media library and media popups"
490
  msgstr "Per la libreria media e i pop-up media"
491
 
492
+ #: core/options-pages.php:1116
493
  msgid "Option allows to change order by drag and drop with Custom Order value."
494
  msgstr ""
495
  "Questa opzione permette di modificare l'ordine con il drag &amp; drop con il "
496
  "valore dell'ordinamento personalizzato."
497
 
498
+ #: core/options-pages.php:1121
499
  msgid "Sort order"
500
  msgstr "Ordinamento"
501
 
502
+ #: core/options-pages.php:1124
 
503
  msgid "Ascending"
504
  msgstr "Ascendente"
505
 
506
+ #: core/options-pages.php:1125
 
507
  msgid "Descending"
508
  msgstr "Discendente"
509
 
510
+ #: core/options-pages.php:1140
511
  msgid "Media Shortcodes"
512
  msgstr "Shortcode Media"
513
 
514
+ #: core/options-pages.php:1147 core/options-pages.php:1150
515
  msgid "Enhanced media shortcodes"
516
  msgstr "Shortcode media avanzati"
517
 
518
+ #: core/options-pages.php:1151
519
  msgid ""
520
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
521
  "upload date, and media items number limit"
523
  "Migliora gli shortcode media di WordPress in modo da poter usare le "
524
  "tassonomie Media, la data di caricamento e il limite di elementi media"
525
 
526
+ #: core/options-pages.php:1152
527
  msgid "Gallery example:"
528
  msgstr "Esempio di galleria:"
529
 
530
+ #: core/options-pages.php:1153
531
  msgid "Audio playlist example:"
532
  msgstr "Esempio di playlist audio:"
533
 
534
+ #: core/options-pages.php:1154
535
  msgid "Video playlist example:"
536
  msgstr "Esempio di playlist video:"
537
 
538
+ #: core/options-pages.php:1156
539
  #, php-format
540
  msgid ""
541
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
543
  "%sAttenzione:%s &Egrave; possibile che ci sia Incompatibilit&agrave; con "
544
  "altri plugin gallery o temi!"
545
 
546
+ #: core/options-pages.php:1158
547
  #, php-format
548
  msgid "%sLearn more%s."
549
  msgstr "%sPer saperne di pi&ugrave;%s."
550
 
551
+ #: core/options-pages.php:1160
552
  #, php-format
553
  msgid ""
554
  "Please check out your gallery front-end and back-end functionality once this "
559
  "end funzionalità una volta che questa opzione &egrave; stata attivata. Se "
560
  "trovate un problema si prega di informare gli autori del plugin %s or %s."
561
 
562
+ #: core/options-pages.php:1229 core/options-pages.php:1376
563
  msgid "Assign following taxonomies to Media Library:"
564
  msgstr "Assegna le seguenti tassonomie alla Libreria Media:"
565
 
566
+ #: core/options-pages.php:1248 core/options-pages.php:1314
567
+ #: core/options-pages.php:1398
568
  msgid "Assign Taxonomy"
569
  msgstr "Assegna tassonomia"
570
 
571
+ #: core/options-pages.php:1249 core/options-pages.php:1399
572
  msgid "Edit Taxonomy"
573
  msgstr "Modifica tassonomia"
574
 
575
+ #: core/options-pages.php:1253 core/options-pages.php:1316
576
  msgid "Delete Taxonomy"
577
  msgstr "Elimina tassonomia"
578
 
579
+ #: core/options-pages.php:1258 core/options-pages.php:1321
580
  msgid "Labels"
581
  msgstr "Etichette"
582
 
583
+ #: core/options-pages.php:1260 core/options-pages.php:1323
584
  msgid "Singular"
585
  msgstr "Singolare"
586
 
587
+ #: core/options-pages.php:1261 core/options-pages.php:1324
588
  msgid "Plural"
589
  msgstr "Plurale"
590
 
591
+ #: core/options-pages.php:1262 core/options-pages.php:1325
592
  msgid "Menu Name"
593
  msgstr "Nome menu"
594
 
595
+ #: core/options-pages.php:1275 core/options-pages.php:1298
596
+ #: core/options-pages.php:1338 core/options-pages.php:1402
597
  msgid "Settings"
598
  msgstr "Impostazioni"
599
 
600
+ #: core/options-pages.php:1277 core/options-pages.php:1340
601
  msgid "Taxonomy Name"
602
  msgstr "Nome tassonomia"
603
 
604
+ #: core/options-pages.php:1278 core/options-pages.php:1341
605
  msgid "Hierarchical"
606
  msgstr "Gerarchico"
607
 
608
+ #: core/options-pages.php:1279 core/options-pages.php:1342
609
  msgid "Column for List View"
610
  msgstr "Colonna nella visualizzazione a lista"
611
 
612
+ #: core/options-pages.php:1280 core/options-pages.php:1300
613
+ #: core/options-pages.php:1343 core/options-pages.php:1404
614
  msgid "Filter for List View"
615
  msgstr "Filtro per la visualizzazione a lista"
616
 
617
+ #: core/options-pages.php:1281 core/options-pages.php:1301
618
+ #: core/options-pages.php:1344 core/options-pages.php:1405
619
  msgid "Filter for Grid View / Media Popup"
620
  msgstr "Filtro per la visualizzazione a griglia / pop-up Media"
621
 
622
+ #: core/options-pages.php:1282 core/options-pages.php:1302
623
+ #: core/options-pages.php:1345 core/options-pages.php:1406
624
  msgid "Edit in Media Popup"
625
  msgstr "Modifica nel pop-up media"
626
 
627
+ #: core/options-pages.php:1283 core/options-pages.php:1346
628
  msgid "Show in Nav Menu"
629
  msgstr "Mostra nel menu di navigazione"
630
 
631
+ #: core/options-pages.php:1284 core/options-pages.php:1347
632
  msgid "Remember Terms Order (sort)"
633
  msgstr "Ricorda l'ordinamento dei termini (sort)"
634
 
635
+ #: core/options-pages.php:1285 core/options-pages.php:1348
636
  msgid "Show in REST"
637
  msgstr "Mostra in REST"
638
 
639
+ #: core/options-pages.php:1286 core/options-pages.php:1349
640
  msgid "Rewrite Slug"
641
  msgstr "Rewrite per lo slug"
642
 
643
+ #: core/options-pages.php:1287 core/options-pages.php:1350
644
  msgid "Slug with Front"
645
  msgstr "Slug (with_front)"
646
 
647
+ #: core/options-pages.php:1362
648
  msgid "Add New Taxonomy"
649
  msgstr "Aggiungi nuova tassonomia"
650
 
651
+ #: core/options-pages.php:1372
652
  msgid "Non-Media Taxonomies"
653
  msgstr "Tassonomie non Media"
654
 
655
+ #: core/options-pages.php:1435
656
  msgid "Options"
657
  msgstr "Opzioni"
658
 
659
+ #: core/options-pages.php:1445 core/options-pages.php:1448
660
  msgid "Taxonomy archive pages"
661
  msgstr "Pagine di archivio della tassonomia"
662
 
663
+ #: core/options-pages.php:1449
664
  msgid "Turn on media taxonomy archive pages on the front-end"
665
  msgstr "Attiva le pagine di archivio della tassonomia sul front-end"
666
 
667
+ #: core/options-pages.php:1450
668
  msgid ""
669
  "Re-save your permalink settings after this option change to make it work."
670
  msgstr ""
671
  "Salvare nuovamente le impostazioni dei permalink dopo la modifica di questa "
672
  "opzione affinch&egrave; i cambiamenti abbiano effetto."
673
 
674
+ #: core/options-pages.php:1456 core/options-pages.php:1459
675
  msgid "Assign all like hierarchical"
676
  msgstr "Considera tutte le tassonomie come gerarchiche"
677
 
678
+ #: core/options-pages.php:1460
679
  msgid ""
680
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
681
  msgstr ""
682
  "Mostra le tassonomie non gerarchiche come gerarchiche nella visualizzazione "
683
  "a griglia / pop-up media"
684
 
685
+ #: core/options-pages.php:1466 core/options-pages.php:1469
686
  msgid "Force filters"
687
  msgstr "Forza i filtri"
688
 
689
+ #: core/options-pages.php:1470
690
  msgid "Show media filters for ANY Media Popup"
691
  msgstr "Vistualizza i filtri media per tutti i pop-up media"
692
 
693
+ #: core/options-pages.php:1471
694
  msgid "Try this if filters are not shown for third-party plugins or themes."
695
  msgstr ""
696
  "Prova questa opzione se i filtri non vengono visualizzati nei plugin o temi "
697
  "di terze parti."
698
 
699
+ #: core/options-pages.php:1477 core/options-pages.php:1480
700
  msgid "Show count"
701
  msgstr ""
702
 
703
+ #: core/options-pages.php:1481
704
  msgid "Show item count per category for media filters"
705
  msgstr ""
706
 
707
+ #: core/options-pages.php:1535
708
  msgid "Add New MIME Type"
709
  msgstr "Aggiungi un nuovo tipo MIME"
710
 
711
+ #: core/options-pages.php:1555 core/options-pages.php:1610
712
  msgid "Extension"
713
  msgstr "Estensione"
714
 
715
+ #: core/options-pages.php:1556 core/options-pages.php:1611
716
  msgid "MIME Type"
717
  msgstr "Tipo MIME"
718
 
719
+ #: core/options-pages.php:1557 core/options-pages.php:1612
720
  msgid "Singular Label"
721
  msgstr "Etichetta per il singolare"
722
 
723
+ #: core/options-pages.php:1558 core/options-pages.php:1613
724
  msgid "Plural Label"
725
  msgstr "Etichetta per il plurale"
726
 
727
+ #: core/options-pages.php:1559 core/options-pages.php:1589
728
+ #: core/options-pages.php:1602 core/options-pages.php:1614
729
  msgid "Add Filter"
730
  msgstr "Aggiungi filtro"
731
 
732
+ #: core/options-pages.php:1560 core/options-pages.php:1590
733
+ #: core/options-pages.php:1603 core/options-pages.php:1615
734
  msgid "Allow Upload"
735
  msgstr "Permetti upload"
736
 
737
+ #: core/options-pages.php:1591 core/options-pages.php:1604
738
  msgid "Delete MIME Type"
739
  msgstr "Elimina il tipo MIME"
740
 
741
+ #: core/options-pages.php:1651
742
  msgid "Save Changes"
743
  msgstr "Salva le modifiche"
744
 
745
+ #: core/options-pages.php:1681
746
  msgid "Changelog"
747
  msgstr "Changelog"
748
 
749
+ #: core/options-pages.php:1682
750
  msgid "What's new in"
751
  msgstr "Cosa c'&egrave; di nuovo nella"
752
 
753
+ #: core/options-pages.php:1682
754
  msgid "version"
755
  msgstr "versione"
756
 
757
+ #: core/options-pages.php:1685
758
  msgid "More features under the hood"
759
  msgstr "Ulteriori caratteristiche sotto il 'coperchio'"
760
 
761
+ #: core/options-pages.php:1687
762
  msgid "Support"
763
  msgstr "Supporto"
764
 
765
+ #: core/options-pages.php:1688
766
  msgid "Feel free to ask for help on"
767
  msgstr "Sentitevi liberi di chiedere aiuto su"
768
 
769
+ #: core/options-pages.php:1688
770
  msgid "Support is free for both versions of the plugin."
771
  msgstr ""
772
  "Il supporto tecnico &egrave; gratuito per entrambe le versioni del plugin."
773
 
774
+ #: core/options-pages.php:1690
775
  msgid "Plugin rating"
776
  msgstr "Valutazione plugin"
777
 
778
+ #: core/options-pages.php:1691
779
  msgid "Please"
780
  msgstr "Prego"
781
 
782
+ #: core/options-pages.php:1691
783
  msgid "vote for the plugin"
784
  msgstr "vota il plugin"
785
 
786
+ #: core/options-pages.php:1691
787
  msgid "Thanks!"
788
  msgstr "Grazie!"
789
 
790
+ #: core/options-pages.php:1693
791
  msgid "Other plugins you may find useful"
792
  msgstr "Altri plugin che potresti trovare utili"
793
 
794
+ #: core/options-pages.php:1732
795
  msgid "Utility"
796
  msgstr "Utilit&agrave;"
797
 
798
+ #: core/options-pages.php:1755
799
  msgid "Vote!"
800
  msgstr "Vota!"
801
 
808
  msgstr "Impostazioni Libreria Media salvate."
809
 
810
  #: core/taxonomies.php:333 core/taxonomies.php:339
811
+ #: enhanced-media-library.php:508
812
  msgid "Filter by"
813
  msgstr "Filtra per"
814
 
815
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
816
  msgid "Not in a"
817
  msgstr "Non in"
818
 
819
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
820
+ msgid "Remove"
821
+ msgstr "Rimuovi"
822
+
823
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
824
+ msgid "Deselect"
825
+ msgstr "Deseleziona"
826
+
827
+ #: core/taxonomies.php:1337
828
+ msgid "Caption this image&hellip;"
829
+ msgstr "Didascalia per questa immagine&hellip;"
830
+
831
+ #: core/taxonomies.php:1341
832
+ msgid "Describe this video&hellip;"
833
+ msgstr "Descrivi questo video&hellip;"
834
+
835
+ #: core/taxonomies.php:1343
836
+ msgid "Describe this audio file&hellip;"
837
+ msgstr "Descrivi questo file audio&hellip;"
838
+
839
+ #: core/taxonomies.php:1345
840
+ msgid "Describe this media file&hellip;"
841
+ msgstr "Descrivi questo file multimediale&hellip;"
842
+
843
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
844
  msgid "All Uncategorized"
845
  msgstr "Tutti gli elementi non classificati"
846
 
847
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
848
  msgid "Reset All Filters"
849
  msgstr "Reimposta tutti i filtri"
850
 
851
+ #: enhanced-media-library.php:541
852
  msgid "Uploaded to post #"
853
  msgstr "Caricato nel post #"
854
 
855
+ #: enhanced-media-library.php:542
856
  msgid "Based On"
857
  msgstr "Basato su"
858
 
859
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
860
  msgid "Media Categories"
861
  msgstr "Categorie Media"
862
 
863
+ #: enhanced-media-library.php:575
864
  msgid "Media Category"
865
  msgstr "Categoria Media"
866
 
867
+ #: enhanced-media-library.php:577
868
  msgid "All Media Categories"
869
  msgstr "Tutte le categorie Media"
870
 
871
+ #: enhanced-media-library.php:578
872
  msgid "Edit Media Category"
873
  msgstr "Modifica categoria Media"
874
 
875
+ #: enhanced-media-library.php:579
876
  msgid "View Media Category"
877
  msgstr "Visualizza categoria Media"
878
 
879
+ #: enhanced-media-library.php:580
880
  msgid "Update Media Category"
881
  msgstr "Aggiorna categoria Media"
882
 
883
+ #: enhanced-media-library.php:581
884
  msgid "Add New Media Category"
885
  msgstr "Aggiungi nuova categoria Media"
886
 
887
+ #: enhanced-media-library.php:582
888
  msgid "New Media Category Name"
889
  msgstr "Nome della nuova categoria Media"
890
 
891
+ #: enhanced-media-library.php:583
892
  msgid "Parent Media Category"
893
  msgstr "Categoria media genitore"
894
 
895
+ #: enhanced-media-library.php:584
896
  msgid "Parent Media Category:"
897
  msgstr "Categoria media genitore:"
898
 
899
+ #: enhanced-media-library.php:585
900
  msgid "Search Media Categories"
901
  msgstr "Cerca nella categoria Media"
902
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
903
  #. Plugin URI of the plugin/theme
904
  #. Author URI of the plugin/theme
905
  msgid "http://wpUXsolutions.com"
915
  #. Author of the plugin/theme
916
  msgid "wpUXsolutions"
917
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-ja_JP.mo CHANGED
Binary file
languages/enhanced-media-library-ja_JP.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:35+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:35+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Japanese (Japan)\n"
9
  "Language: ja_JP\n"
@@ -30,13 +30,14 @@ msgid " <span class=\"count\">(%s)</span>"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
 
33
- #: core/options-pages.php:97 core/options-pages.php:239
34
- #: core/options-pages.php:1006 core/options-pages.php:1130
35
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
36
  msgid "Media Settings"
37
  msgstr "メディア設定"
38
 
39
- #: core/options-pages.php:106 core/options-pages.php:211
40
  msgid "Media Library"
41
  msgstr "メディアライブラリー"
42
 
@@ -44,283 +45,283 @@ msgstr "メディアライブラリー"
44
  msgid "Taxonomies"
45
  msgstr "タクソノミー"
46
 
47
- #: core/options-pages.php:124 core/options-pages.php:213
48
  msgid "MIME Types"
49
  msgstr "MIME タイプ"
50
 
 
51
  #: core/options-pages.php:135 core/options-pages.php:136
52
  msgid "Enhanced Media Library"
53
  msgstr "Enhanced Media Library"
54
 
55
- #: core/options-pages.php:210
56
  msgid "General"
57
  msgstr "一般"
58
 
59
- #: core/options-pages.php:212 core/options-pages.php:1151
60
  msgid "Media Taxonomies"
61
  msgstr "メディアタクソノミー(分類法)"
62
 
63
- #: core/options-pages.php:236 core/options-pages.php:548
64
- #: core/options-pages.php:1002 core/options-pages.php:1127
65
- #: core/options-pages.php:1451
66
  msgid "You do not have sufficient permissions to access this page."
67
  msgstr "このページにアクセスするための十分な権限がありません。"
68
 
69
- #: core/options-pages.php:250
70
  msgid "Image sizes"
71
  msgstr ""
72
 
73
- #: core/options-pages.php:251
74
  msgid ""
75
  "The sizes listed below determine the maximum dimensions in pixels to use "
76
  "when adding an image to the Media Library."
77
  msgstr ""
78
 
79
- #: core/options-pages.php:255
80
  msgid "Thumbnail size"
81
  msgstr ""
82
 
83
- #: core/options-pages.php:257
84
  msgid "Width"
85
  msgstr ""
86
 
87
- #: core/options-pages.php:259
88
  msgid "Height"
89
  msgstr ""
90
 
91
- #: core/options-pages.php:262
92
  msgid ""
93
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
94
  msgstr ""
95
 
96
- #: core/options-pages.php:267 core/options-pages.php:268
97
  msgid "Medium size"
98
  msgstr ""
99
 
100
- #: core/options-pages.php:269 core/options-pages.php:279
101
  msgid "Max Width"
102
  msgstr ""
103
 
104
- #: core/options-pages.php:271 core/options-pages.php:281
105
  msgid "Max Height"
106
  msgstr ""
107
 
108
- #: core/options-pages.php:277 core/options-pages.php:278
109
  msgid "Large size"
110
  msgstr ""
111
 
112
- #: core/options-pages.php:294
113
  msgid "Embeds"
114
  msgstr ""
115
 
116
- #: core/options-pages.php:301
117
  msgid "Uploading Files"
118
  msgstr ""
119
 
120
- #: core/options-pages.php:308
121
  msgid "Store uploads in this folder"
122
  msgstr ""
123
 
124
- #: core/options-pages.php:312
125
  #, php-format
126
  msgid "Default is %s"
127
  msgstr ""
128
 
129
- #: core/options-pages.php:318
130
  msgid "Full URL path to files"
131
  msgstr ""
132
 
133
- #: core/options-pages.php:320
134
  msgid "Configuring this is optional. By default, it should be blank."
135
  msgstr ""
136
 
137
- #: core/options-pages.php:328
138
  msgid "Organize my uploads into month- and year-based folders"
139
  msgstr ""
140
 
141
- #: core/options-pages.php:400 core/options-pages.php:1175
142
- #: core/options-pages.php:1190 core/options-pages.php:1253
143
- #: core/options-pages.php:1325
144
  msgid "Edit"
145
  msgstr "編集"
146
 
147
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
148
  msgid "Close"
149
  msgstr "閉じる"
150
 
151
- #: core/options-pages.php:402 core/options-pages.php:1191
152
- #: core/options-pages.php:1254
153
  msgid "View"
154
  msgstr "表示"
155
 
156
- #: core/options-pages.php:403 core/options-pages.php:1192
157
- #: core/options-pages.php:1255
158
  msgid "Update"
159
  msgstr "更新"
160
 
161
- #: core/options-pages.php:404 core/options-pages.php:1193
162
- #: core/options-pages.php:1256
163
  msgid "Add New"
164
  msgstr "新規追加"
165
 
166
- #: core/options-pages.php:405 core/options-pages.php:1194
167
- #: core/options-pages.php:1257
168
  msgid "New"
169
  msgstr "新規"
170
 
171
- #: core/options-pages.php:406
172
  msgid "Name"
173
  msgstr "名前"
174
 
175
- #: core/options-pages.php:407 core/options-pages.php:1195
176
- #: core/options-pages.php:1258
177
  msgid "Parent"
178
  msgstr "親カテゴリー"
179
 
180
- #: core/options-pages.php:408 core/options-pages.php:644
181
- #: core/options-pages.php:1189 core/options-pages.php:1252
182
- #: core/taxonomies.php:340 enhanced-media-library.php:503
183
  msgid "All"
184
  msgstr "全て"
185
 
186
- #: core/options-pages.php:409 core/options-pages.php:1196
187
- #: core/options-pages.php:1259
188
  msgid "Search"
189
  msgstr "検索"
190
 
191
- #: core/options-pages.php:411 core/options-pages.php:1240
192
  msgid "New Taxonomy"
193
  msgstr "新しいタクソノミー (分類)"
194
 
195
- #: core/options-pages.php:413
196
  msgid "Remove Taxonomy"
197
  msgstr ""
198
 
199
- #: core/options-pages.php:414
200
  msgid "Taxonomy will be removed."
201
  msgstr ""
202
 
203
- #: core/options-pages.php:415
204
  msgid ""
205
  "Taxonomy terms (categories) will remain intact in the database. If you "
206
  "create a taxonomy with the same name in the future, its terms (categories) "
207
  "will be available again."
208
  msgstr ""
209
 
210
- #: core/options-pages.php:416
211
  msgid "Media items will remain intact."
212
  msgstr ""
213
 
214
- #: core/options-pages.php:417
215
  msgid "Are you still sure?"
216
  msgstr ""
217
 
218
- #: core/options-pages.php:418
219
  msgid "Yes, remove taxonomy"
220
  msgstr ""
221
 
222
- #: core/options-pages.php:420
223
  msgid "Duplicate"
224
  msgstr ""
225
 
226
- #: core/options-pages.php:421
227
  msgid "Taxonomy with the same name already exists. Please chose other one."
228
  msgstr ""
229
  "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
230
 
231
- #: core/options-pages.php:423
232
  msgid "Empty Fields"
233
  msgstr ""
234
 
235
- #: core/options-pages.php:424
236
  msgid "Please choose Singular and Plural names for all new taxomonies."
237
  msgstr ""
238
 
239
- #: core/options-pages.php:425
240
  msgid "Please choose Singular name for all new taxomonies."
241
  msgstr ""
242
 
243
- #: core/options-pages.php:426
244
  msgid "Please choose Plural Name for all new taxomonies."
245
  msgstr ""
246
 
247
- #: core/options-pages.php:428
248
  msgid "Ok"
249
  msgstr ""
250
 
251
- #: core/options-pages.php:429 core/options-pages.php:434
252
- #: core/options-pages.php:478 core/options-pages.php:523
253
- #: pro/enhanced-media-library-pro.php:133
254
  msgid "Cancel"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:431 pro/core/options-pages.php:185
258
  msgid "Synchronize Now"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:432 core/options-pages.php:520
262
  msgid "This operation cannot be canceled! Are you still sure?"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:433
266
  msgid "Synchronize"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:435
270
  msgid "Synchronizing..."
271
  msgstr ""
272
 
273
- #: core/options-pages.php:473 core/options-pages.php:1579
274
  msgid "Restore WordPress default MIME Types"
275
  msgstr "WordPressのデフォルトのMIMEタイプを復元"
276
 
277
- #: core/options-pages.php:474
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr "警告!すべてのカスタムMIMEタイプは、この操作によって削除されます。"
280
 
281
- #: core/options-pages.php:475
282
  msgid "Restore Defaults"
283
  msgstr ""
284
 
285
- #: core/options-pages.php:476
286
  msgid "Restoring..."
287
  msgstr ""
288
 
289
- #: core/options-pages.php:480
290
  msgid "Please fill into all fields."
291
  msgstr "すべてのフィールドに記入してください。"
292
 
293
- #: core/options-pages.php:481
294
  msgid "Duplicate extensions or MIME types. Please chose other one."
295
  msgstr "拡張子やMIMEタイプを複製します。別のものをお選びください。"
296
 
297
- #: core/options-pages.php:518 core/options-pages.php:635
298
  msgid "Complete Cleanup"
299
  msgstr ""
300
 
301
- #: core/options-pages.php:519
302
  msgid ""
303
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
  "plugin data</strong> from the database including backups."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:521
308
  msgid "Yes, delete all data"
309
  msgstr ""
310
 
311
- #: core/options-pages.php:522
312
  msgid "Cleaning..."
313
  msgstr ""
314
 
315
- #: core/options-pages.php:553
316
  msgid "Enhanced Media Library Settings"
317
  msgstr "Enhanced Media Library 設定"
318
 
319
- #: core/options-pages.php:563
320
  msgid "Export"
321
  msgstr "エクスポート"
322
 
323
- #: core/options-pages.php:567
324
  msgid ""
325
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -328,15 +329,15 @@ msgid ""
328
  "another website."
329
  msgstr ""
330
 
331
- #: core/options-pages.php:572
332
  msgid "Export Plugin Settings"
333
  msgstr "プラグイン設定をエクスポート"
334
 
335
- #: core/options-pages.php:582
336
  msgid "Import"
337
  msgstr "インポート"
338
 
339
- #: core/options-pages.php:586
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -344,146 +345,141 @@ msgid ""
344
  "another website using the export button above."
345
  msgstr ""
346
 
347
- #: core/options-pages.php:587
348
  msgid ""
349
  "All plugin settings will be overridden by the import. You will have a chance "
350
  "to restore current data from an automatic backup in case you are not "
351
  "satisfied with the result of the import."
352
  msgstr ""
353
 
354
- #: core/options-pages.php:594
355
  msgid "Import Plugin Settings"
356
  msgstr "プラグイン設定をインポート"
357
 
358
- #: core/options-pages.php:606
359
  msgid "Restore"
360
  msgstr "リストア(復元する)"
361
 
362
- #: core/options-pages.php:612
363
  msgid "No backup available at the moment."
364
  msgstr "現在利用できるバックアップはありません。"
365
 
366
- #: core/options-pages.php:614
367
  msgid "Backup will be created automatically before any import operation."
368
  msgstr "バックアップは、任意のインポート操作の前に自動的に作成されます。"
369
 
370
- #: core/options-pages.php:618
371
  msgid ""
372
  "The backup has been automatically created before the latest import operation."
373
  msgstr ""
374
 
375
- #: core/options-pages.php:622
376
  msgid "Restore Settings from the Backup"
377
  msgstr "バックアップから設定を復元させて下さい。"
378
 
379
- #: core/options-pages.php:642
380
  msgid "What will be deleted:"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:647
384
  msgid "All plugin options"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:648
388
  msgid "All plugin backups stored in database"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:652
392
  msgid "What will remain intact:"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:653
396
  msgid "All media items"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:654
400
  msgid "All taxonomies not listed above"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:657
404
  msgid ""
405
  "The plugin cannot delete itself because of security reason. Please delete it "
406
  "manually from plugin list after cleanup."
407
  msgstr ""
408
 
409
- #: core/options-pages.php:659
410
  msgid ""
411
  "If you are not sure about this operation please create a backup of your "
412
  "database prior to cleanup!"
413
  msgstr ""
414
 
415
- #: core/options-pages.php:665
416
  msgid "Delete All Data & Deactivate"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:765
420
  msgid "Please upload a file to import settings."
421
  msgstr "設定をインポートするファイルをアップロードしてください。"
422
 
423
- #: core/options-pages.php:791
424
  msgid "Plugin settings imported."
425
  msgstr "プラグインの設定がインポートされました。"
426
 
427
- #: core/options-pages.php:838
428
  msgid "Plugin settings restored from the backup."
429
  msgstr "プラグインの設定は、バックアップから復元させて下さい。"
430
 
431
- #: core/options-pages.php:1027
432
  msgid "Media Items Order"
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1034
436
  msgid "Order media items by"
437
  msgstr "メディアアイテムの順番"
438
 
439
- #: core/options-pages.php:1037 pro/core/medialist.php:28
440
- #: pro/core/medialist.php:73
441
  msgid "Date"
442
  msgstr "日付"
443
 
444
- #: core/options-pages.php:1038 pro/core/medialist.php:31
445
- #: pro/core/medialist.php:76
446
  msgid "Title"
447
  msgstr "タイトル"
448
 
449
- #: core/options-pages.php:1039 pro/core/medialist.php:34
450
- #: pro/core/medialist.php:79
451
  msgid "Custom Order"
452
  msgstr "カスタムオーダー"
453
 
454
- #: core/options-pages.php:1041 core/options-pages.php:1053
455
  msgid "For media library and media popups"
456
  msgstr "メディアライブラリとメディアポップアップについて"
457
 
458
- #: core/options-pages.php:1042
459
  msgid "Option allows to change order by drag and drop with Custom Order value."
460
  msgstr ""
461
  "オプションは、ドラッグすることによって順序を変更し、カスタムオーダーの値でド"
462
  "ロップすることができます。"
463
 
464
- #: core/options-pages.php:1047
465
  msgid "Sort order"
466
  msgstr "ソート順"
467
 
468
- #: core/options-pages.php:1050 pro/core/medialist.php:47
469
- #: pro/core/medialist.php:92
470
  msgid "Ascending"
471
  msgstr "昇順"
472
 
473
- #: core/options-pages.php:1051 pro/core/medialist.php:50
474
- #: pro/core/medialist.php:95
475
  msgid "Descending"
476
  msgstr "降順"
477
 
478
- #: core/options-pages.php:1066
479
  msgid "Media Shortcodes"
480
  msgstr "メディアのショートコード"
481
 
482
- #: core/options-pages.php:1073 core/options-pages.php:1076
483
  msgid "Enhanced media shortcodes"
484
  msgstr "強化されたメディアのショートコード"
485
 
486
- #: core/options-pages.php:1077
487
  msgid ""
488
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
489
  "upload date, and media items number limit"
@@ -491,30 +487,30 @@ msgstr ""
491
  "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日付と"
492
  "メディア・アイテム数の上限を取得させます。"
493
 
494
- #: core/options-pages.php:1078
495
  msgid "Gallery example:"
496
  msgstr "ギャラリーの例:"
497
 
498
- #: core/options-pages.php:1079
499
  msgid "Audio playlist example:"
500
  msgstr "オーディオプレイリストの例:"
501
 
502
- #: core/options-pages.php:1080
503
  msgid "Video playlist example:"
504
  msgstr "ビデオプレイリストの例:"
505
 
506
- #: core/options-pages.php:1082
507
  #, php-format
508
  msgid ""
509
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
510
  msgstr "%s警告:%s 他のギャラリープラグイン又はテーマとの非互換性の可能性!"
511
 
512
- #: core/options-pages.php:1084
513
  #, php-format
514
  msgid "%sLearn more%s."
515
  msgstr "%sもっと詳しく%s."
516
 
517
- #: core/options-pages.php:1086
518
  #, php-format
519
  msgid ""
520
  "Please check out your gallery front-end and back-end functionality once this "
@@ -525,243 +521,243 @@ msgstr ""
525
  "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
526
  "イン作者までご連絡ください %s か %s."
527
 
528
- #: core/options-pages.php:1155 core/options-pages.php:1302
529
  msgid "Assign following taxonomies to Media Library:"
530
  msgstr "メディアライブラリに次のタクソノミー(分類法)を割り当てます:"
531
 
532
- #: core/options-pages.php:1174 core/options-pages.php:1240
533
- #: core/options-pages.php:1324
534
  msgid "Assign Taxonomy"
535
  msgstr "タクソノミーを割り当て"
536
 
537
- #: core/options-pages.php:1175 core/options-pages.php:1325
538
  msgid "Edit Taxonomy"
539
  msgstr "タクソノミーの編集"
540
 
541
- #: core/options-pages.php:1179 core/options-pages.php:1242
542
  msgid "Delete Taxonomy"
543
  msgstr "タクソノミーを削除します"
544
 
545
- #: core/options-pages.php:1184 core/options-pages.php:1247
546
  msgid "Labels"
547
  msgstr "ラベル"
548
 
549
- #: core/options-pages.php:1186 core/options-pages.php:1249
550
  msgid "Singular"
551
  msgstr "単数"
552
 
553
- #: core/options-pages.php:1187 core/options-pages.php:1250
554
  msgid "Plural"
555
  msgstr "複数"
556
 
557
- #: core/options-pages.php:1188 core/options-pages.php:1251
558
  msgid "Menu Name"
559
  msgstr "メニュー名"
560
 
561
- #: core/options-pages.php:1201 core/options-pages.php:1224
562
- #: core/options-pages.php:1264 core/options-pages.php:1328
563
  msgid "Settings"
564
  msgstr "設定"
565
 
566
- #: core/options-pages.php:1203 core/options-pages.php:1266
567
  msgid "Taxonomy Name"
568
  msgstr "タクソノミー名"
569
 
570
- #: core/options-pages.php:1204 core/options-pages.php:1267
571
  msgid "Hierarchical"
572
  msgstr "階層"
573
 
574
- #: core/options-pages.php:1205 core/options-pages.php:1268
575
  msgid "Column for List View"
576
  msgstr "リスト表示の列"
577
 
578
- #: core/options-pages.php:1206 core/options-pages.php:1226
579
- #: core/options-pages.php:1269 core/options-pages.php:1330
580
  msgid "Filter for List View"
581
  msgstr "リスト表示のフィルター"
582
 
583
- #: core/options-pages.php:1207 core/options-pages.php:1227
584
- #: core/options-pages.php:1270 core/options-pages.php:1331
585
  msgid "Filter for Grid View / Media Popup"
586
  msgstr "グリット表示/メディアポップアップのフィルター"
587
 
588
- #: core/options-pages.php:1208 core/options-pages.php:1228
589
- #: core/options-pages.php:1271 core/options-pages.php:1332
590
  msgid "Edit in Media Popup"
591
  msgstr "メディアポップアップの編集"
592
 
593
- #: core/options-pages.php:1209 core/options-pages.php:1272
594
  msgid "Show in Nav Menu"
595
  msgstr "ナビゲーションメニューに表示"
596
 
597
- #: core/options-pages.php:1210 core/options-pages.php:1273
598
  msgid "Remember Terms Order (sort)"
599
  msgstr ""
600
 
601
- #: core/options-pages.php:1211 core/options-pages.php:1274
602
  msgid "Show in REST"
603
  msgstr "リストに表示"
604
 
605
- #: core/options-pages.php:1212 core/options-pages.php:1275
606
  msgid "Rewrite Slug"
607
  msgstr "スラッグを書き換え"
608
 
609
- #: core/options-pages.php:1213 core/options-pages.php:1276
610
  msgid "Slug with Front"
611
  msgstr "フロントとスラッグ"
612
 
613
- #: core/options-pages.php:1288
614
  msgid "Add New Taxonomy"
615
  msgstr "新しいタクソノミーを追加"
616
 
617
- #: core/options-pages.php:1298
618
  msgid "Non-Media Taxonomies"
619
  msgstr "非メディアタクソノミー(記事カテゴリー及びタグで分類)"
620
 
621
- #: core/options-pages.php:1361
622
  msgid "Options"
623
  msgstr "オプション"
624
 
625
- #: core/options-pages.php:1371 core/options-pages.php:1374
626
  msgid "Taxonomy archive pages"
627
  msgstr "タクソノミーのアーカイブページ"
628
 
629
- #: core/options-pages.php:1375
630
  msgid "Turn on media taxonomy archive pages on the front-end"
631
  msgstr ""
632
  "フロントエンドのメディアタクソノミー(分類)のアーカイブページをオンにします"
633
 
634
- #: core/options-pages.php:1376
635
  msgid ""
636
  "Re-save your permalink settings after this option change to make it work."
637
  msgstr ""
638
  "これを動作させるには、このオプションを変更した後、パーマリンクの設定を再保存"
639
  "しましょう。"
640
 
641
- #: core/options-pages.php:1382 core/options-pages.php:1385
642
  msgid "Assign all like hierarchical"
643
  msgstr "階層のように全て割り当てます"
644
 
645
- #: core/options-pages.php:1386
646
  msgid ""
647
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
648
  msgstr ""
649
  "グリット表示の/メディアポップアップで、階層のような非階層的タクソノミーを表示"
650
  "する"
651
 
652
- #: core/options-pages.php:1392 core/options-pages.php:1395
653
  msgid "Force filters"
654
  msgstr "フォースフィルター"
655
 
656
- #: core/options-pages.php:1396
657
  msgid "Show media filters for ANY Media Popup"
658
  msgstr "あらゆるメディアにポップアップするフィルターを表示します。"
659
 
660
- #: core/options-pages.php:1397
661
  msgid "Try this if filters are not shown for third-party plugins or themes."
662
  msgstr ""
663
  "フィルタが、サードパーティ製のプラグインやテーマの為に示されていない場合は、"
664
  "試してみてください。"
665
 
666
- #: core/options-pages.php:1403 core/options-pages.php:1406
667
  msgid "Show count"
668
  msgstr ""
669
 
670
- #: core/options-pages.php:1407
671
  msgid "Show item count per category for media filters"
672
  msgstr ""
673
 
674
- #: core/options-pages.php:1461
675
  msgid "Add New MIME Type"
676
  msgstr "MIMEタイプ新規追加"
677
 
678
- #: core/options-pages.php:1481 core/options-pages.php:1536
679
  msgid "Extension"
680
  msgstr "拡張子"
681
 
682
- #: core/options-pages.php:1482 core/options-pages.php:1537
683
  msgid "MIME Type"
684
  msgstr "MIMEタイプ"
685
 
686
- #: core/options-pages.php:1483 core/options-pages.php:1538
687
  msgid "Singular Label"
688
  msgstr "単数のラベル"
689
 
690
- #: core/options-pages.php:1484 core/options-pages.php:1539
691
  msgid "Plural Label"
692
  msgstr "複数のラベル"
693
 
694
- #: core/options-pages.php:1485 core/options-pages.php:1515
695
- #: core/options-pages.php:1528 core/options-pages.php:1540
696
  msgid "Add Filter"
697
  msgstr "フィルタを追加"
698
 
699
- #: core/options-pages.php:1486 core/options-pages.php:1516
700
- #: core/options-pages.php:1529 core/options-pages.php:1541
701
  msgid "Allow Upload"
702
  msgstr "アップロードを許可"
703
 
704
- #: core/options-pages.php:1517 core/options-pages.php:1530
705
  msgid "Delete MIME Type"
706
  msgstr "MIMEタイプを削除します"
707
 
708
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
709
  msgid "Save Changes"
710
  msgstr "変更内容を保存"
711
 
712
- #: core/options-pages.php:1607
713
  msgid "Changelog"
714
  msgstr ""
715
 
716
- #: core/options-pages.php:1608
717
  msgid "What's new in"
718
  msgstr ""
719
 
720
- #: core/options-pages.php:1608
721
  msgid "version"
722
  msgstr ""
723
 
724
- #: core/options-pages.php:1611
725
  msgid "More features under the hood"
726
  msgstr ""
727
 
728
- #: core/options-pages.php:1613
729
  msgid "Support"
730
  msgstr ""
731
 
732
- #: core/options-pages.php:1614
733
  msgid "Feel free to ask for help on"
734
  msgstr ""
735
 
736
- #: core/options-pages.php:1614
737
  msgid "Support is free for both versions of the plugin."
738
  msgstr ""
739
 
740
- #: core/options-pages.php:1616
741
  msgid "Plugin rating"
742
  msgstr ""
743
 
744
- #: core/options-pages.php:1617
745
  msgid "Please"
746
  msgstr ""
747
 
748
- #: core/options-pages.php:1617
749
  msgid "vote for the plugin"
750
  msgstr ""
751
 
752
- #: core/options-pages.php:1617
753
  msgid "Thanks!"
754
  msgstr ""
755
 
756
- #: core/options-pages.php:1619
757
  msgid "Other plugins you may find useful"
758
  msgstr ""
759
 
760
- #: core/options-pages.php:1658
761
  msgid "Utility"
762
  msgstr ""
763
 
764
- #: core/options-pages.php:1681
765
  msgid "Vote!"
766
  msgstr ""
767
 
@@ -774,378 +770,96 @@ msgid "Media Library settings saved."
774
  msgstr ""
775
 
776
  #: core/taxonomies.php:333 core/taxonomies.php:339
777
- #: enhanced-media-library.php:502
778
  msgid "Filter by"
779
  msgstr ""
780
 
781
- #: core/taxonomies.php:341 enhanced-media-library.php:504
782
  msgid "Not in a"
783
  msgstr ""
784
 
785
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
786
- msgid "All Uncategorized"
787
- msgstr "未分類"
788
-
789
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
790
- msgid "Reset All Filters"
791
- msgstr "絞り込みを解除"
792
-
793
- #: enhanced-media-library.php:535
794
- msgid "Uploaded to post #"
795
- msgstr "投稿をアップロード #"
796
-
797
- #: enhanced-media-library.php:536
798
- msgid "Based On"
799
- msgstr ""
800
-
801
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
802
- msgid "Media Categories"
803
- msgstr ""
804
-
805
- #: enhanced-media-library.php:582
806
- msgid "Media Category"
807
- msgstr ""
808
-
809
- #: enhanced-media-library.php:584
810
- msgid "All Media Categories"
811
- msgstr ""
812
-
813
- #: enhanced-media-library.php:585
814
- msgid "Edit Media Category"
815
- msgstr ""
816
-
817
- #: enhanced-media-library.php:586
818
- msgid "View Media Category"
819
- msgstr ""
820
-
821
- #: enhanced-media-library.php:587
822
- msgid "Update Media Category"
823
- msgstr ""
824
-
825
- #: enhanced-media-library.php:588
826
- msgid "Add New Media Category"
827
- msgstr ""
828
-
829
- #: enhanced-media-library.php:589
830
- msgid "New Media Category Name"
831
- msgstr ""
832
-
833
- #: enhanced-media-library.php:590
834
- msgid "Parent Media Category"
835
- msgstr ""
836
-
837
- #: enhanced-media-library.php:591
838
- msgid "Parent Media Category:"
839
- msgstr ""
840
-
841
- #: enhanced-media-library.php:592
842
- msgid "Search Media Categories"
843
- msgstr ""
844
-
845
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
846
  msgid "Remove"
847
  msgstr "削除"
848
 
849
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
850
  msgid "Deselect"
851
  msgstr "選択を解除"
852
 
853
- #: pro/core/bulk-edit.php:105
854
  msgid "Caption this image&hellip;"
855
  msgstr "この画像をキャプション&hellip;"
856
 
857
- #: pro/core/bulk-edit.php:109
858
  msgid "Describe this video&hellip;"
859
  msgstr "このビデオを説明してください&hellip;"
860
 
861
- #: pro/core/bulk-edit.php:111
862
  msgid "Describe this audio file&hellip;"
863
  msgstr "このオーディオファイルを説明してください&hellip;"
864
 
865
- #: pro/core/bulk-edit.php:113
866
  msgid "Describe this media file&hellip;"
867
  msgstr "このメディアファイルを記述します&hellip;"
868
 
869
- #: pro/core/bulk-edit.php:122
870
- msgid "Attachments Details"
871
- msgstr "添付ファイルの詳細"
872
-
873
- #: pro/core/bulk-edit.php:175
874
- msgid "Select All"
875
- msgstr "全て選択"
876
-
877
- #: pro/core/bulk-edit.php:176
878
- msgid "Deselect All"
879
- msgstr "全ての選択を解除"
880
-
881
- #: pro/core/bulk-edit.php:177
882
- msgid "Delete Selected"
883
- msgstr "選択を削除します"
884
-
885
- #: pro/core/bulk-edit.php:178
886
- msgid "Trash Selected"
887
- msgstr ""
888
-
889
- #: pro/core/bulk-edit.php:179
890
- msgid "Restore Selected"
891
- msgstr ""
892
-
893
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
894
- msgid "Delete Selected Permanently"
895
- msgstr ""
896
-
897
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
898
- msgid "Order By"
899
- msgstr ""
900
-
901
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
902
- msgid "Random"
903
- msgstr "ランダム"
904
-
905
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
906
- msgid "Order"
907
- msgstr " 並び順"
908
-
909
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
910
- msgid "Limit"
911
- msgstr "制限"
912
-
913
- #: pro/core/options-pages.php:78
914
- msgid "Your license has been deactivated."
915
- msgstr "あなたのライセンスが無効になっています。"
916
-
917
- #: pro/core/options-pages.php:88
918
- msgid "Please check if your license key is correct and try again."
919
- msgstr "ライセンスキーが正しいかどうかを確認して、もう一度お試しください。"
920
-
921
- #: pro/core/options-pages.php:104
922
- #, php-format
923
- msgid ""
924
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
925
- "authors</a>."
926
- msgstr ""
927
-
928
- #: pro/core/options-pages.php:119
929
- #, php-format
930
- msgid ""
931
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
932
- "plugin authors</a>."
933
- msgstr ""
934
-
935
- #: pro/core/options-pages.php:130
936
- msgid "You license has been activated."
937
- msgstr "活性化されているライセンスを許諾します。"
938
-
939
- #: pro/core/options-pages.php:184
940
- #, php-format
941
- msgid "Auto-assign media items to parent %s %s on upload"
942
- msgstr ""
943
-
944
- #: pro/core/options-pages.php:185
945
- #, php-format
946
- msgid ""
947
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
948
- "attached to a %s will be assigned to %s of their parent %s. Currently "
949
- "assigned %s will not be saved. Media items that are not attached to any %s "
950
- "will not be affected."
951
- msgstr ""
952
-
953
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
954
- msgid "Bulk Edit"
955
- msgstr "一括編集"
956
-
957
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
958
- msgid "Turn off 'Save Changes' button"
959
- msgstr "[変更を保存]ボタンオフ"
960
-
961
- #: pro/core/options-pages.php:220
962
- msgid "Save changes on the fly"
963
- msgstr "変更内容を保存"
964
-
965
- #: pro/core/options-pages.php:221
966
- msgid ""
967
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
968
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
969
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
970
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
971
- "files / taxonomies with this option turned on."
972
- msgstr ""
973
- "メディアの間に分類するチェックボックス上の任意のクリックは、バルク版に繋がる"
974
- "ファイルデータを<strong style=\"color:red\">即時保存する</strong>ので 気を付"
975
- "けてください!あなたには大きなチャンスがあります<strong style=\"color:red\">"
976
- "間違っても再割り当てを行います</strong> 多くのメディアファイル/このオプション"
977
- "を指定したタクソノミーをオンにします。"
978
-
979
- #: pro/core/options-pages.php:222
980
- msgid ""
981
- "Strongly NOT recommended option if you work with more than hundred of files "
982
- "at a time."
983
- msgstr "一度に100以上のファイルで作業する場合オプションを推奨しません。"
984
-
985
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
986
- msgid "License Key"
987
- msgstr "ライセンスキー"
988
-
989
- #: pro/core/options-pages.php:273
990
- #, php-format
991
- msgid ""
992
- "To unlock updates please enter your license key below. You can get your "
993
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
994
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
995
- msgstr ""
996
- "アップデートのロックを解除するには、以下のライセンスキーを入力してください。"
997
- "あなたのライセンスキーを取得することができます<a href=\"%s\">あなたのアカウン"
998
- "ト</a>に。ライセンスをお持ちでない場合は、歓迎しています<a href=\"%s\">購入</"
999
- "a>に。"
1000
-
1001
- #: pro/core/options-pages.php:283
1002
- msgid "Activate License"
1003
- msgstr "ライセンスを有効化"
1004
-
1005
- #: pro/core/options-pages.php:290
1006
- msgid "Your license is active!"
1007
- msgstr "ライセンスがアクティブになっています!"
1008
-
1009
- #: pro/core/options-pages.php:294
1010
- msgid "Deactivate License"
1011
- msgstr "ライセンスを無効化"
1012
 
1013
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1014
- msgid ""
1015
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1016
- "this server&#8217;s configuration. If you continue to have problems, please "
1017
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1018
- msgstr ""
1019
- "予期しないエラーが発生しました。WordPress.orgまたは、このサーバーで何かが間"
1020
- "違っている可能性があります&#8217;s 設定。問題が解決しない場合は、試してみてく"
1021
- "ださい<a href=\"https://wordpress.org/support/\">サポートフォーラム</a>."
1022
 
1023
- #: pro/core/update.php:113
1024
- msgid ""
1025
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1026
- "contact your server administrator.)"
1027
- msgstr ""
1028
- "(WordPressはWordPress.orgへの安全な接続を確立できませんでした。サーバー管理"
1029
- "者に問い合わせてください。)"
1030
 
1031
- #: pro/core/update.php:181
1032
- #, php-format
1033
- msgid ""
1034
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1035
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1036
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1037
  msgstr ""
1038
- "アップデートのロックを解除するには、 <a href=\"%s\">ライセンス</a>を活性化さ"
1039
- "せる<a href=\"%s\">あなたはライセンスキーはアカウント</a>を得ることができま"
1040
- "す。ライセンスをお持ちでない場合は、<a href=\"%s\">が購入を歓迎しています。</"
1041
- "a>"
1042
-
1043
- #: pro/enhanced-media-library-pro.php:119
1044
- msgid "ALL files belong to this item"
1045
- msgstr "全てのファイルはこの項目に属しています"
1046
-
1047
- #: pro/enhanced-media-library-pro.php:120
1048
- msgid "SOME files belong to this item"
1049
- msgstr "いくつかのファイルは、この項目に属しています"
1050
 
1051
- #: pro/enhanced-media-library-pro.php:121
1052
- msgid "NO files belong to this item"
1053
- msgstr "ファイルなし この項目に属していません"
1054
-
1055
- #: pro/enhanced-media-library-pro.php:122
1056
- msgid "Changes saved."
1057
- msgstr "変更が保存されました。"
1058
-
1059
- #: pro/enhanced-media-library-pro.php:123
1060
- msgid "Something went wrong."
1061
- msgstr "何かが間違っています。"
1062
-
1063
- #: pro/enhanced-media-library-pro.php:126
1064
- msgid "Edit Media Files"
1065
- msgstr "メディアファイル編集"
1066
-
1067
- #: pro/enhanced-media-library-pro.php:129
1068
- msgid "Selecting"
1069
  msgstr ""
1070
 
1071
- #: pro/enhanced-media-library-pro.php:131
1072
- msgid "You are about to permanently delete all selected items."
1073
  msgstr ""
1074
 
1075
- #: pro/enhanced-media-library-pro.php:132
1076
- msgid "Delete"
1077
  msgstr ""
1078
 
1079
- #: pro/enhanced-media-library-pro.php:134
1080
- msgid "Moving to Trash"
1081
  msgstr ""
1082
 
1083
- #: pro/enhanced-media-library-pro.php:135
1084
- msgid "Restoring"
1085
  msgstr ""
1086
 
1087
- #: pro/enhanced-media-library-pro.php:136
1088
- msgid "Deleting"
1089
  msgstr ""
1090
 
1091
- #: pro/enhanced-media-library-pro.php:160
1092
- msgid "Create a filter-based gallery"
1093
- msgstr "フィルターベースのギャラリーを作成します。"
1094
-
1095
- #: pro/enhanced-media-library-pro.php:161
1096
- msgid "Create a filter-based playlist"
1097
- msgstr "フィルターベースのプレイリストを作成します。"
1098
-
1099
- #: pro/enhanced-media-library-pro.php:162
1100
- msgid "Create a filter-based video playlist"
1101
- msgstr "フィルターベースのビデオプレイリストを作成します。"
1102
-
1103
- #: pro/enhanced-media-library-pro.php:240
1104
- msgid ""
1105
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1106
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1107
- "will remain intact."
1108
  msgstr ""
1109
- "無効化してください<strong>削除</strong>の前に古い無料版を。<strong>Enhanced "
1110
- "Media Library PRO</ strong>の活性化。すべてのデータはそのまま残ります。"
1111
-
1112
- #: pro/enhanced-media-library-pro.php:240
1113
- msgid "Return to Plugins"
1114
- msgstr "プラグインに戻ります"
1115
 
1116
- #: pro/enhanced-media-library-pro.php:291
1117
- msgid ""
1118
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1119
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1120
- "be active. Please network deactivate and delete the free versions of the "
1121
- "plugin. All your data will remain intact."
1122
  msgstr ""
1123
 
1124
- #: pro/enhanced-media-library-pro.php:308
1125
- msgid ""
1126
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1127
- "be active. Please deactivate and delete the free version of the plugin. All "
1128
- "your data will remain intact."
1129
  msgstr ""
1130
- "<strong>Enhanced Media Library PRO</strong> は無料版を必要としません。有効化"
1131
- "します。無効化し、プラグインの無料版を削除してください。全てのデータはそのま"
1132
- "ま残ります。"
1133
 
1134
- #: pro/enhanced-media-library-pro.php:324
1135
- msgid ""
1136
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1137
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1138
- "version to be active. Please deactivate (or network deactivate) and delete "
1139
- "the free version of the plugin for this site. All your data will remail "
1140
- "intact."
1141
  msgstr ""
1142
- "Enhanced Media Library の無料版とPROバージョンでは、どちらもこのサイトの有効"
1143
- "です。 <strong>Enhanced Media Library PRO</strong>を有効化にする場合無料版を"
1144
- "必要としません。無効化(またはネットワーク無効化)し、このサイトのプラグイン"
1145
- "の無料版を削除してください。全てのデータはそのまま残ります。"
1146
 
1147
- #. Plugin Name of the plugin/theme
1148
- msgid "Enhanced Media Library PRO"
1149
  msgstr ""
1150
 
1151
  #. Plugin URI of the plugin/theme
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-13 03:04+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:04+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Japanese (Japan)\n"
9
  "Language: ja_JP\n"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
 
33
+ #: core/options-pages.php:97 core/options-pages.php:220
34
+ #: core/options-pages.php:313 core/options-pages.php:1080
35
+ #: core/options-pages.php:1204 core/options-pages.php:1529
36
+ #: core/options-pages.php:1729
37
  msgid "Media Settings"
38
  msgstr "メディア設定"
39
 
40
+ #: core/options-pages.php:106 core/options-pages.php:285
41
  msgid "Media Library"
42
  msgstr "メディアライブラリー"
43
 
45
  msgid "Taxonomies"
46
  msgstr "タクソノミー"
47
 
48
+ #: core/options-pages.php:124 core/options-pages.php:287
49
  msgid "MIME Types"
50
  msgstr "MIME タイプ"
51
 
52
+ #. Plugin Name of the plugin/theme
53
  #: core/options-pages.php:135 core/options-pages.php:136
54
  msgid "Enhanced Media Library"
55
  msgstr "Enhanced Media Library"
56
 
57
+ #: core/options-pages.php:284
58
  msgid "General"
59
  msgstr "一般"
60
 
61
+ #: core/options-pages.php:286 core/options-pages.php:1225
62
  msgid "Media Taxonomies"
63
  msgstr "メディアタクソノミー(分類法)"
64
 
65
+ #: core/options-pages.php:310 core/options-pages.php:622
66
+ #: core/options-pages.php:1076 core/options-pages.php:1201
67
+ #: core/options-pages.php:1525
68
  msgid "You do not have sufficient permissions to access this page."
69
  msgstr "このページにアクセスするための十分な権限がありません。"
70
 
71
+ #: core/options-pages.php:324
72
  msgid "Image sizes"
73
  msgstr ""
74
 
75
+ #: core/options-pages.php:325
76
  msgid ""
77
  "The sizes listed below determine the maximum dimensions in pixels to use "
78
  "when adding an image to the Media Library."
79
  msgstr ""
80
 
81
+ #: core/options-pages.php:329
82
  msgid "Thumbnail size"
83
  msgstr ""
84
 
85
+ #: core/options-pages.php:331
86
  msgid "Width"
87
  msgstr ""
88
 
89
+ #: core/options-pages.php:333
90
  msgid "Height"
91
  msgstr ""
92
 
93
+ #: core/options-pages.php:336
94
  msgid ""
95
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:341 core/options-pages.php:342
99
  msgid "Medium size"
100
  msgstr ""
101
 
102
+ #: core/options-pages.php:343 core/options-pages.php:353
103
  msgid "Max Width"
104
  msgstr ""
105
 
106
+ #: core/options-pages.php:345 core/options-pages.php:355
107
  msgid "Max Height"
108
  msgstr ""
109
 
110
+ #: core/options-pages.php:351 core/options-pages.php:352
111
  msgid "Large size"
112
  msgstr ""
113
 
114
+ #: core/options-pages.php:368
115
  msgid "Embeds"
116
  msgstr ""
117
 
118
+ #: core/options-pages.php:375
119
  msgid "Uploading Files"
120
  msgstr ""
121
 
122
+ #: core/options-pages.php:382
123
  msgid "Store uploads in this folder"
124
  msgstr ""
125
 
126
+ #: core/options-pages.php:386
127
  #, php-format
128
  msgid "Default is %s"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:392
132
  msgid "Full URL path to files"
133
  msgstr ""
134
 
135
+ #: core/options-pages.php:394
136
  msgid "Configuring this is optional. By default, it should be blank."
137
  msgstr ""
138
 
139
+ #: core/options-pages.php:402
140
  msgid "Organize my uploads into month- and year-based folders"
141
  msgstr ""
142
 
143
+ #: core/options-pages.php:474 core/options-pages.php:1249
144
+ #: core/options-pages.php:1264 core/options-pages.php:1327
145
+ #: core/options-pages.php:1399
146
  msgid "Edit"
147
  msgstr "編集"
148
 
149
+ #: core/options-pages.php:475
150
  msgid "Close"
151
  msgstr "閉じる"
152
 
153
+ #: core/options-pages.php:476 core/options-pages.php:1265
154
+ #: core/options-pages.php:1328
155
  msgid "View"
156
  msgstr "表示"
157
 
158
+ #: core/options-pages.php:477 core/options-pages.php:1266
159
+ #: core/options-pages.php:1329
160
  msgid "Update"
161
  msgstr "更新"
162
 
163
+ #: core/options-pages.php:478 core/options-pages.php:1267
164
+ #: core/options-pages.php:1330
165
  msgid "Add New"
166
  msgstr "新規追加"
167
 
168
+ #: core/options-pages.php:479 core/options-pages.php:1268
169
+ #: core/options-pages.php:1331
170
  msgid "New"
171
  msgstr "新規"
172
 
173
+ #: core/options-pages.php:480
174
  msgid "Name"
175
  msgstr "名前"
176
 
177
+ #: core/options-pages.php:481 core/options-pages.php:1269
178
+ #: core/options-pages.php:1332
179
  msgid "Parent"
180
  msgstr "親カテゴリー"
181
 
182
+ #: core/options-pages.php:482 core/options-pages.php:718
183
+ #: core/options-pages.php:1263 core/options-pages.php:1326
184
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
185
  msgid "All"
186
  msgstr "全て"
187
 
188
+ #: core/options-pages.php:483 core/options-pages.php:1270
189
+ #: core/options-pages.php:1333
190
  msgid "Search"
191
  msgstr "検索"
192
 
193
+ #: core/options-pages.php:485 core/options-pages.php:1314
194
  msgid "New Taxonomy"
195
  msgstr "新しいタクソノミー (分類)"
196
 
197
+ #: core/options-pages.php:487
198
  msgid "Remove Taxonomy"
199
  msgstr ""
200
 
201
+ #: core/options-pages.php:488
202
  msgid "Taxonomy will be removed."
203
  msgstr ""
204
 
205
+ #: core/options-pages.php:489
206
  msgid ""
207
  "Taxonomy terms (categories) will remain intact in the database. If you "
208
  "create a taxonomy with the same name in the future, its terms (categories) "
209
  "will be available again."
210
  msgstr ""
211
 
212
+ #: core/options-pages.php:490
213
  msgid "Media items will remain intact."
214
  msgstr ""
215
 
216
+ #: core/options-pages.php:491
217
  msgid "Are you still sure?"
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:492
221
  msgid "Yes, remove taxonomy"
222
  msgstr ""
223
 
224
+ #: core/options-pages.php:494
225
  msgid "Duplicate"
226
  msgstr ""
227
 
228
+ #: core/options-pages.php:495
229
  msgid "Taxonomy with the same name already exists. Please chose other one."
230
  msgstr ""
231
  "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
232
 
233
+ #: core/options-pages.php:497
234
  msgid "Empty Fields"
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:498
238
  msgid "Please choose Singular and Plural names for all new taxomonies."
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:499
242
  msgid "Please choose Singular name for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:500
246
  msgid "Please choose Plural Name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:502
250
  msgid "Ok"
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:503 core/options-pages.php:508
254
+ #: core/options-pages.php:552 core/options-pages.php:597
 
255
  msgid "Cancel"
256
  msgstr ""
257
 
258
+ #: core/options-pages.php:505
259
  msgid "Synchronize Now"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:506 core/options-pages.php:594
263
  msgid "This operation cannot be canceled! Are you still sure?"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:507
267
  msgid "Synchronize"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:509
271
  msgid "Synchronizing..."
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:547 core/options-pages.php:1653
275
  msgid "Restore WordPress default MIME Types"
276
  msgstr "WordPressのデフォルトのMIMEタイプを復元"
277
 
278
+ #: core/options-pages.php:548
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr "警告!すべてのカスタムMIMEタイプは、この操作によって削除されます。"
281
 
282
+ #: core/options-pages.php:549
283
  msgid "Restore Defaults"
284
  msgstr ""
285
 
286
+ #: core/options-pages.php:550
287
  msgid "Restoring..."
288
  msgstr ""
289
 
290
+ #: core/options-pages.php:554
291
  msgid "Please fill into all fields."
292
  msgstr "すべてのフィールドに記入してください。"
293
 
294
+ #: core/options-pages.php:555
295
  msgid "Duplicate extensions or MIME types. Please chose other one."
296
  msgstr "拡張子やMIMEタイプを複製します。別のものをお選びください。"
297
 
298
+ #: core/options-pages.php:592 core/options-pages.php:709
299
  msgid "Complete Cleanup"
300
  msgstr ""
301
 
302
+ #: core/options-pages.php:593
303
  msgid ""
304
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
305
  "plugin data</strong> from the database including backups."
306
  msgstr ""
307
 
308
+ #: core/options-pages.php:595
309
  msgid "Yes, delete all data"
310
  msgstr ""
311
 
312
+ #: core/options-pages.php:596
313
  msgid "Cleaning..."
314
  msgstr ""
315
 
316
+ #: core/options-pages.php:627
317
  msgid "Enhanced Media Library Settings"
318
  msgstr "Enhanced Media Library 設定"
319
 
320
+ #: core/options-pages.php:637
321
  msgid "Export"
322
  msgstr "エクスポート"
323
 
324
+ #: core/options-pages.php:641
325
  msgid ""
326
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
327
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
329
  "another website."
330
  msgstr ""
331
 
332
+ #: core/options-pages.php:646
333
  msgid "Export Plugin Settings"
334
  msgstr "プラグイン設定をエクスポート"
335
 
336
+ #: core/options-pages.php:656
337
  msgid "Import"
338
  msgstr "インポート"
339
 
340
+ #: core/options-pages.php:660
341
  msgid ""
342
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
345
  "another website using the export button above."
346
  msgstr ""
347
 
348
+ #: core/options-pages.php:661
349
  msgid ""
350
  "All plugin settings will be overridden by the import. You will have a chance "
351
  "to restore current data from an automatic backup in case you are not "
352
  "satisfied with the result of the import."
353
  msgstr ""
354
 
355
+ #: core/options-pages.php:668
356
  msgid "Import Plugin Settings"
357
  msgstr "プラグイン設定をインポート"
358
 
359
+ #: core/options-pages.php:680
360
  msgid "Restore"
361
  msgstr "リストア(復元する)"
362
 
363
+ #: core/options-pages.php:686
364
  msgid "No backup available at the moment."
365
  msgstr "現在利用できるバックアップはありません。"
366
 
367
+ #: core/options-pages.php:688
368
  msgid "Backup will be created automatically before any import operation."
369
  msgstr "バックアップは、任意のインポート操作の前に自動的に作成されます。"
370
 
371
+ #: core/options-pages.php:692
372
  msgid ""
373
  "The backup has been automatically created before the latest import operation."
374
  msgstr ""
375
 
376
+ #: core/options-pages.php:696
377
  msgid "Restore Settings from the Backup"
378
  msgstr "バックアップから設定を復元させて下さい。"
379
 
380
+ #: core/options-pages.php:716
381
  msgid "What will be deleted:"
382
  msgstr ""
383
 
384
+ #: core/options-pages.php:721
385
  msgid "All plugin options"
386
  msgstr ""
387
 
388
+ #: core/options-pages.php:722
389
  msgid "All plugin backups stored in database"
390
  msgstr ""
391
 
392
+ #: core/options-pages.php:726
393
  msgid "What will remain intact:"
394
  msgstr ""
395
 
396
+ #: core/options-pages.php:727
397
  msgid "All media items"
398
  msgstr ""
399
 
400
+ #: core/options-pages.php:728
401
  msgid "All taxonomies not listed above"
402
  msgstr ""
403
 
404
+ #: core/options-pages.php:731
405
  msgid ""
406
  "The plugin cannot delete itself because of security reason. Please delete it "
407
  "manually from plugin list after cleanup."
408
  msgstr ""
409
 
410
+ #: core/options-pages.php:733
411
  msgid ""
412
  "If you are not sure about this operation please create a backup of your "
413
  "database prior to cleanup!"
414
  msgstr ""
415
 
416
+ #: core/options-pages.php:739
417
  msgid "Delete All Data & Deactivate"
418
  msgstr ""
419
 
420
+ #: core/options-pages.php:839
421
  msgid "Please upload a file to import settings."
422
  msgstr "設定をインポートするファイルをアップロードしてください。"
423
 
424
+ #: core/options-pages.php:865
425
  msgid "Plugin settings imported."
426
  msgstr "プラグインの設定がインポートされました。"
427
 
428
+ #: core/options-pages.php:912
429
  msgid "Plugin settings restored from the backup."
430
  msgstr "プラグインの設定は、バックアップから復元させて下さい。"
431
 
432
+ #: core/options-pages.php:1101
433
  msgid "Media Items Order"
434
  msgstr ""
435
 
436
+ #: core/options-pages.php:1108
437
  msgid "Order media items by"
438
  msgstr "メディアアイテムの順番"
439
 
440
+ #: core/options-pages.php:1111
 
441
  msgid "Date"
442
  msgstr "日付"
443
 
444
+ #: core/options-pages.php:1112
 
445
  msgid "Title"
446
  msgstr "タイトル"
447
 
448
+ #: core/options-pages.php:1113
 
449
  msgid "Custom Order"
450
  msgstr "カスタムオーダー"
451
 
452
+ #: core/options-pages.php:1115 core/options-pages.php:1127
453
  msgid "For media library and media popups"
454
  msgstr "メディアライブラリとメディアポップアップについて"
455
 
456
+ #: core/options-pages.php:1116
457
  msgid "Option allows to change order by drag and drop with Custom Order value."
458
  msgstr ""
459
  "オプションは、ドラッグすることによって順序を変更し、カスタムオーダーの値でド"
460
  "ロップすることができます。"
461
 
462
+ #: core/options-pages.php:1121
463
  msgid "Sort order"
464
  msgstr "ソート順"
465
 
466
+ #: core/options-pages.php:1124
 
467
  msgid "Ascending"
468
  msgstr "昇順"
469
 
470
+ #: core/options-pages.php:1125
 
471
  msgid "Descending"
472
  msgstr "降順"
473
 
474
+ #: core/options-pages.php:1140
475
  msgid "Media Shortcodes"
476
  msgstr "メディアのショートコード"
477
 
478
+ #: core/options-pages.php:1147 core/options-pages.php:1150
479
  msgid "Enhanced media shortcodes"
480
  msgstr "強化されたメディアのショートコード"
481
 
482
+ #: core/options-pages.php:1151
483
  msgid ""
484
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
485
  "upload date, and media items number limit"
487
  "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日付と"
488
  "メディア・アイテム数の上限を取得させます。"
489
 
490
+ #: core/options-pages.php:1152
491
  msgid "Gallery example:"
492
  msgstr "ギャラリーの例:"
493
 
494
+ #: core/options-pages.php:1153
495
  msgid "Audio playlist example:"
496
  msgstr "オーディオプレイリストの例:"
497
 
498
+ #: core/options-pages.php:1154
499
  msgid "Video playlist example:"
500
  msgstr "ビデオプレイリストの例:"
501
 
502
+ #: core/options-pages.php:1156
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr "%s警告:%s 他のギャラリープラグイン又はテーマとの非互換性の可能性!"
507
 
508
+ #: core/options-pages.php:1158
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr "%sもっと詳しく%s."
512
 
513
+ #: core/options-pages.php:1160
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
521
  "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
522
  "イン作者までご連絡ください %s か %s."
523
 
524
+ #: core/options-pages.php:1229 core/options-pages.php:1376
525
  msgid "Assign following taxonomies to Media Library:"
526
  msgstr "メディアライブラリに次のタクソノミー(分類法)を割り当てます:"
527
 
528
+ #: core/options-pages.php:1248 core/options-pages.php:1314
529
+ #: core/options-pages.php:1398
530
  msgid "Assign Taxonomy"
531
  msgstr "タクソノミーを割り当て"
532
 
533
+ #: core/options-pages.php:1249 core/options-pages.php:1399
534
  msgid "Edit Taxonomy"
535
  msgstr "タクソノミーの編集"
536
 
537
+ #: core/options-pages.php:1253 core/options-pages.php:1316
538
  msgid "Delete Taxonomy"
539
  msgstr "タクソノミーを削除します"
540
 
541
+ #: core/options-pages.php:1258 core/options-pages.php:1321
542
  msgid "Labels"
543
  msgstr "ラベル"
544
 
545
+ #: core/options-pages.php:1260 core/options-pages.php:1323
546
  msgid "Singular"
547
  msgstr "単数"
548
 
549
+ #: core/options-pages.php:1261 core/options-pages.php:1324
550
  msgid "Plural"
551
  msgstr "複数"
552
 
553
+ #: core/options-pages.php:1262 core/options-pages.php:1325
554
  msgid "Menu Name"
555
  msgstr "メニュー名"
556
 
557
+ #: core/options-pages.php:1275 core/options-pages.php:1298
558
+ #: core/options-pages.php:1338 core/options-pages.php:1402
559
  msgid "Settings"
560
  msgstr "設定"
561
 
562
+ #: core/options-pages.php:1277 core/options-pages.php:1340
563
  msgid "Taxonomy Name"
564
  msgstr "タクソノミー名"
565
 
566
+ #: core/options-pages.php:1278 core/options-pages.php:1341
567
  msgid "Hierarchical"
568
  msgstr "階層"
569
 
570
+ #: core/options-pages.php:1279 core/options-pages.php:1342
571
  msgid "Column for List View"
572
  msgstr "リスト表示の列"
573
 
574
+ #: core/options-pages.php:1280 core/options-pages.php:1300
575
+ #: core/options-pages.php:1343 core/options-pages.php:1404
576
  msgid "Filter for List View"
577
  msgstr "リスト表示のフィルター"
578
 
579
+ #: core/options-pages.php:1281 core/options-pages.php:1301
580
+ #: core/options-pages.php:1344 core/options-pages.php:1405
581
  msgid "Filter for Grid View / Media Popup"
582
  msgstr "グリット表示/メディアポップアップのフィルター"
583
 
584
+ #: core/options-pages.php:1282 core/options-pages.php:1302
585
+ #: core/options-pages.php:1345 core/options-pages.php:1406
586
  msgid "Edit in Media Popup"
587
  msgstr "メディアポップアップの編集"
588
 
589
+ #: core/options-pages.php:1283 core/options-pages.php:1346
590
  msgid "Show in Nav Menu"
591
  msgstr "ナビゲーションメニューに表示"
592
 
593
+ #: core/options-pages.php:1284 core/options-pages.php:1347
594
  msgid "Remember Terms Order (sort)"
595
  msgstr ""
596
 
597
+ #: core/options-pages.php:1285 core/options-pages.php:1348
598
  msgid "Show in REST"
599
  msgstr "リストに表示"
600
 
601
+ #: core/options-pages.php:1286 core/options-pages.php:1349
602
  msgid "Rewrite Slug"
603
  msgstr "スラッグを書き換え"
604
 
605
+ #: core/options-pages.php:1287 core/options-pages.php:1350
606
  msgid "Slug with Front"
607
  msgstr "フロントとスラッグ"
608
 
609
+ #: core/options-pages.php:1362
610
  msgid "Add New Taxonomy"
611
  msgstr "新しいタクソノミーを追加"
612
 
613
+ #: core/options-pages.php:1372
614
  msgid "Non-Media Taxonomies"
615
  msgstr "非メディアタクソノミー(記事カテゴリー及びタグで分類)"
616
 
617
+ #: core/options-pages.php:1435
618
  msgid "Options"
619
  msgstr "オプション"
620
 
621
+ #: core/options-pages.php:1445 core/options-pages.php:1448
622
  msgid "Taxonomy archive pages"
623
  msgstr "タクソノミーのアーカイブページ"
624
 
625
+ #: core/options-pages.php:1449
626
  msgid "Turn on media taxonomy archive pages on the front-end"
627
  msgstr ""
628
  "フロントエンドのメディアタクソノミー(分類)のアーカイブページをオンにします"
629
 
630
+ #: core/options-pages.php:1450
631
  msgid ""
632
  "Re-save your permalink settings after this option change to make it work."
633
  msgstr ""
634
  "これを動作させるには、このオプションを変更した後、パーマリンクの設定を再保存"
635
  "しましょう。"
636
 
637
+ #: core/options-pages.php:1456 core/options-pages.php:1459
638
  msgid "Assign all like hierarchical"
639
  msgstr "階層のように全て割り当てます"
640
 
641
+ #: core/options-pages.php:1460
642
  msgid ""
643
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
644
  msgstr ""
645
  "グリット表示の/メディアポップアップで、階層のような非階層的タクソノミーを表示"
646
  "する"
647
 
648
+ #: core/options-pages.php:1466 core/options-pages.php:1469
649
  msgid "Force filters"
650
  msgstr "フォースフィルター"
651
 
652
+ #: core/options-pages.php:1470
653
  msgid "Show media filters for ANY Media Popup"
654
  msgstr "あらゆるメディアにポップアップするフィルターを表示します。"
655
 
656
+ #: core/options-pages.php:1471
657
  msgid "Try this if filters are not shown for third-party plugins or themes."
658
  msgstr ""
659
  "フィルタが、サードパーティ製のプラグインやテーマの為に示されていない場合は、"
660
  "試してみてください。"
661
 
662
+ #: core/options-pages.php:1477 core/options-pages.php:1480
663
  msgid "Show count"
664
  msgstr ""
665
 
666
+ #: core/options-pages.php:1481
667
  msgid "Show item count per category for media filters"
668
  msgstr ""
669
 
670
+ #: core/options-pages.php:1535
671
  msgid "Add New MIME Type"
672
  msgstr "MIMEタイプ新規追加"
673
 
674
+ #: core/options-pages.php:1555 core/options-pages.php:1610
675
  msgid "Extension"
676
  msgstr "拡張子"
677
 
678
+ #: core/options-pages.php:1556 core/options-pages.php:1611
679
  msgid "MIME Type"
680
  msgstr "MIMEタイプ"
681
 
682
+ #: core/options-pages.php:1557 core/options-pages.php:1612
683
  msgid "Singular Label"
684
  msgstr "単数のラベル"
685
 
686
+ #: core/options-pages.php:1558 core/options-pages.php:1613
687
  msgid "Plural Label"
688
  msgstr "複数のラベル"
689
 
690
+ #: core/options-pages.php:1559 core/options-pages.php:1589
691
+ #: core/options-pages.php:1602 core/options-pages.php:1614
692
  msgid "Add Filter"
693
  msgstr "フィルタを追加"
694
 
695
+ #: core/options-pages.php:1560 core/options-pages.php:1590
696
+ #: core/options-pages.php:1603 core/options-pages.php:1615
697
  msgid "Allow Upload"
698
  msgstr "アップロードを許可"
699
 
700
+ #: core/options-pages.php:1591 core/options-pages.php:1604
701
  msgid "Delete MIME Type"
702
  msgstr "MIMEタイプを削除します"
703
 
704
+ #: core/options-pages.php:1651
705
  msgid "Save Changes"
706
  msgstr "変更内容を保存"
707
 
708
+ #: core/options-pages.php:1681
709
  msgid "Changelog"
710
  msgstr ""
711
 
712
+ #: core/options-pages.php:1682
713
  msgid "What's new in"
714
  msgstr ""
715
 
716
+ #: core/options-pages.php:1682
717
  msgid "version"
718
  msgstr ""
719
 
720
+ #: core/options-pages.php:1685
721
  msgid "More features under the hood"
722
  msgstr ""
723
 
724
+ #: core/options-pages.php:1687
725
  msgid "Support"
726
  msgstr ""
727
 
728
+ #: core/options-pages.php:1688
729
  msgid "Feel free to ask for help on"
730
  msgstr ""
731
 
732
+ #: core/options-pages.php:1688
733
  msgid "Support is free for both versions of the plugin."
734
  msgstr ""
735
 
736
+ #: core/options-pages.php:1690
737
  msgid "Plugin rating"
738
  msgstr ""
739
 
740
+ #: core/options-pages.php:1691
741
  msgid "Please"
742
  msgstr ""
743
 
744
+ #: core/options-pages.php:1691
745
  msgid "vote for the plugin"
746
  msgstr ""
747
 
748
+ #: core/options-pages.php:1691
749
  msgid "Thanks!"
750
  msgstr ""
751
 
752
+ #: core/options-pages.php:1693
753
  msgid "Other plugins you may find useful"
754
  msgstr ""
755
 
756
+ #: core/options-pages.php:1732
757
  msgid "Utility"
758
  msgstr ""
759
 
760
+ #: core/options-pages.php:1755
761
  msgid "Vote!"
762
  msgstr ""
763
 
770
  msgstr ""
771
 
772
  #: core/taxonomies.php:333 core/taxonomies.php:339
773
+ #: enhanced-media-library.php:508
774
  msgid "Filter by"
775
  msgstr ""
776
 
777
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
778
  msgid "Not in a"
779
  msgstr ""
780
 
781
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
782
  msgid "Remove"
783
  msgstr "削除"
784
 
785
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
786
  msgid "Deselect"
787
  msgstr "選択を解除"
788
 
789
+ #: core/taxonomies.php:1337
790
  msgid "Caption this image&hellip;"
791
  msgstr "この画像をキャプション&hellip;"
792
 
793
+ #: core/taxonomies.php:1341
794
  msgid "Describe this video&hellip;"
795
  msgstr "このビデオを説明してください&hellip;"
796
 
797
+ #: core/taxonomies.php:1343
798
  msgid "Describe this audio file&hellip;"
799
  msgstr "このオーディオファイルを説明してください&hellip;"
800
 
801
+ #: core/taxonomies.php:1345
802
  msgid "Describe this media file&hellip;"
803
  msgstr "このメディアファイルを記述します&hellip;"
804
 
805
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
806
+ msgid "All Uncategorized"
807
+ msgstr "未分類"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
 
809
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
810
+ msgid "Reset All Filters"
811
+ msgstr "絞り込みを解除"
 
 
 
 
 
 
812
 
813
+ #: enhanced-media-library.php:541
814
+ msgid "Uploaded to post #"
815
+ msgstr "投稿をアップロード #"
 
 
 
 
816
 
817
+ #: enhanced-media-library.php:542
818
+ msgid "Based On"
 
 
 
 
819
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
820
 
821
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
822
+ msgid "Media Categories"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
823
  msgstr ""
824
 
825
+ #: enhanced-media-library.php:575
826
+ msgid "Media Category"
827
  msgstr ""
828
 
829
+ #: enhanced-media-library.php:577
830
+ msgid "All Media Categories"
831
  msgstr ""
832
 
833
+ #: enhanced-media-library.php:578
834
+ msgid "Edit Media Category"
835
  msgstr ""
836
 
837
+ #: enhanced-media-library.php:579
838
+ msgid "View Media Category"
839
  msgstr ""
840
 
841
+ #: enhanced-media-library.php:580
842
+ msgid "Update Media Category"
843
  msgstr ""
844
 
845
+ #: enhanced-media-library.php:581
846
+ msgid "Add New Media Category"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
847
  msgstr ""
 
 
 
 
 
 
848
 
849
+ #: enhanced-media-library.php:582
850
+ msgid "New Media Category Name"
 
 
 
 
851
  msgstr ""
852
 
853
+ #: enhanced-media-library.php:583
854
+ msgid "Parent Media Category"
 
 
 
855
  msgstr ""
 
 
 
856
 
857
+ #: enhanced-media-library.php:584
858
+ msgid "Parent Media Category:"
 
 
 
 
 
859
  msgstr ""
 
 
 
 
860
 
861
+ #: enhanced-media-library.php:585
862
+ msgid "Search Media Categories"
863
  msgstr ""
864
 
865
  #. Plugin URI of the plugin/theme
languages/enhanced-media-library-ko_KR.mo CHANGED
Binary file
languages/enhanced-media-library-ko_KR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:35+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:35+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Korean (Republic of Korea)\n"
9
  "Language: ko_KR\n"
@@ -30,13 +30,14 @@ msgid " <span class=\"count\">(%s)</span>"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
 
33
- #: core/options-pages.php:97 core/options-pages.php:239
34
- #: core/options-pages.php:1006 core/options-pages.php:1130
35
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
36
  msgid "Media Settings"
37
  msgstr "미디어 설정"
38
 
39
- #: core/options-pages.php:106 core/options-pages.php:211
40
  msgid "Media Library"
41
  msgstr "미디어 라이브러리"
42
 
@@ -44,282 +45,282 @@ msgstr "미디어 라이브러리"
44
  msgid "Taxonomies"
45
  msgstr "카테고리"
46
 
47
- #: core/options-pages.php:124 core/options-pages.php:213
48
  msgid "MIME Types"
49
  msgstr "MIME 유형"
50
 
 
51
  #: core/options-pages.php:135 core/options-pages.php:136
52
  msgid "Enhanced Media Library"
53
  msgstr "Enhanced Media Library"
54
 
55
- #: core/options-pages.php:210
56
  msgid "General"
57
  msgstr ""
58
 
59
- #: core/options-pages.php:212 core/options-pages.php:1151
60
  msgid "Media Taxonomies"
61
  msgstr "미디어 카테고리"
62
 
63
- #: core/options-pages.php:236 core/options-pages.php:548
64
- #: core/options-pages.php:1002 core/options-pages.php:1127
65
- #: core/options-pages.php:1451
66
  msgid "You do not have sufficient permissions to access this page."
67
  msgstr "이 페이지에 접근할 권한이 없습니다."
68
 
69
- #: core/options-pages.php:250
70
  msgid "Image sizes"
71
  msgstr ""
72
 
73
- #: core/options-pages.php:251
74
  msgid ""
75
  "The sizes listed below determine the maximum dimensions in pixels to use "
76
  "when adding an image to the Media Library."
77
  msgstr ""
78
 
79
- #: core/options-pages.php:255
80
  msgid "Thumbnail size"
81
  msgstr ""
82
 
83
- #: core/options-pages.php:257
84
  msgid "Width"
85
  msgstr ""
86
 
87
- #: core/options-pages.php:259
88
  msgid "Height"
89
  msgstr ""
90
 
91
- #: core/options-pages.php:262
92
  msgid ""
93
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
94
  msgstr ""
95
 
96
- #: core/options-pages.php:267 core/options-pages.php:268
97
  msgid "Medium size"
98
  msgstr ""
99
 
100
- #: core/options-pages.php:269 core/options-pages.php:279
101
  msgid "Max Width"
102
  msgstr ""
103
 
104
- #: core/options-pages.php:271 core/options-pages.php:281
105
  msgid "Max Height"
106
  msgstr ""
107
 
108
- #: core/options-pages.php:277 core/options-pages.php:278
109
  msgid "Large size"
110
  msgstr ""
111
 
112
- #: core/options-pages.php:294
113
  msgid "Embeds"
114
  msgstr ""
115
 
116
- #: core/options-pages.php:301
117
  msgid "Uploading Files"
118
  msgstr ""
119
 
120
- #: core/options-pages.php:308
121
  msgid "Store uploads in this folder"
122
  msgstr ""
123
 
124
- #: core/options-pages.php:312
125
  #, php-format
126
  msgid "Default is %s"
127
  msgstr ""
128
 
129
- #: core/options-pages.php:318
130
  msgid "Full URL path to files"
131
  msgstr ""
132
 
133
- #: core/options-pages.php:320
134
  msgid "Configuring this is optional. By default, it should be blank."
135
  msgstr ""
136
 
137
- #: core/options-pages.php:328
138
  msgid "Organize my uploads into month- and year-based folders"
139
  msgstr ""
140
 
141
- #: core/options-pages.php:400 core/options-pages.php:1175
142
- #: core/options-pages.php:1190 core/options-pages.php:1253
143
- #: core/options-pages.php:1325
144
  msgid "Edit"
145
  msgstr "편집"
146
 
147
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
148
  msgid "Close"
149
  msgstr "닫기"
150
 
151
- #: core/options-pages.php:402 core/options-pages.php:1191
152
- #: core/options-pages.php:1254
153
  msgid "View"
154
  msgstr "보기"
155
 
156
- #: core/options-pages.php:403 core/options-pages.php:1192
157
- #: core/options-pages.php:1255
158
  msgid "Update"
159
  msgstr "업데이트"
160
 
161
- #: core/options-pages.php:404 core/options-pages.php:1193
162
- #: core/options-pages.php:1256
163
  msgid "Add New"
164
  msgstr "새로 추가하기"
165
 
166
- #: core/options-pages.php:405 core/options-pages.php:1194
167
- #: core/options-pages.php:1257
168
  msgid "New"
169
  msgstr "신규"
170
 
171
- #: core/options-pages.php:406
172
  msgid "Name"
173
  msgstr "이름"
174
 
175
- #: core/options-pages.php:407 core/options-pages.php:1195
176
- #: core/options-pages.php:1258
177
  msgid "Parent"
178
  msgstr "부모"
179
 
180
- #: core/options-pages.php:408 core/options-pages.php:644
181
- #: core/options-pages.php:1189 core/options-pages.php:1252
182
- #: core/taxonomies.php:340 enhanced-media-library.php:503
183
  msgid "All"
184
  msgstr "모두"
185
 
186
- #: core/options-pages.php:409 core/options-pages.php:1196
187
- #: core/options-pages.php:1259
188
  msgid "Search"
189
  msgstr "검색"
190
 
191
- #: core/options-pages.php:411 core/options-pages.php:1240
192
  msgid "New Taxonomy"
193
  msgstr "새로운 카테고리"
194
 
195
- #: core/options-pages.php:413
196
  msgid "Remove Taxonomy"
197
  msgstr ""
198
 
199
- #: core/options-pages.php:414
200
  msgid "Taxonomy will be removed."
201
  msgstr ""
202
 
203
- #: core/options-pages.php:415
204
  msgid ""
205
  "Taxonomy terms (categories) will remain intact in the database. If you "
206
  "create a taxonomy with the same name in the future, its terms (categories) "
207
  "will be available again."
208
  msgstr ""
209
 
210
- #: core/options-pages.php:416
211
  msgid "Media items will remain intact."
212
  msgstr ""
213
 
214
- #: core/options-pages.php:417
215
  msgid "Are you still sure?"
216
  msgstr ""
217
 
218
- #: core/options-pages.php:418
219
  msgid "Yes, remove taxonomy"
220
  msgstr ""
221
 
222
- #: core/options-pages.php:420
223
  msgid "Duplicate"
224
  msgstr ""
225
 
226
- #: core/options-pages.php:421
227
  msgid "Taxonomy with the same name already exists. Please chose other one."
228
  msgstr ""
229
 
230
- #: core/options-pages.php:423
231
  msgid "Empty Fields"
232
  msgstr ""
233
 
234
- #: core/options-pages.php:424
235
  msgid "Please choose Singular and Plural names for all new taxomonies."
236
  msgstr ""
237
 
238
- #: core/options-pages.php:425
239
  msgid "Please choose Singular name for all new taxomonies."
240
  msgstr ""
241
 
242
- #: core/options-pages.php:426
243
  msgid "Please choose Plural Name for all new taxomonies."
244
  msgstr ""
245
 
246
- #: core/options-pages.php:428
247
  msgid "Ok"
248
  msgstr ""
249
 
250
- #: core/options-pages.php:429 core/options-pages.php:434
251
- #: core/options-pages.php:478 core/options-pages.php:523
252
- #: pro/enhanced-media-library-pro.php:133
253
  msgid "Cancel"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:431 pro/core/options-pages.php:185
257
  msgid "Synchronize Now"
258
  msgstr ""
259
 
260
- #: core/options-pages.php:432 core/options-pages.php:520
261
  msgid "This operation cannot be canceled! Are you still sure?"
262
  msgstr ""
263
 
264
- #: core/options-pages.php:433
265
  msgid "Synchronize"
266
  msgstr ""
267
 
268
- #: core/options-pages.php:435
269
  msgid "Synchronizing..."
270
  msgstr ""
271
 
272
- #: core/options-pages.php:473 core/options-pages.php:1579
273
  msgid "Restore WordPress default MIME Types"
274
  msgstr ""
275
 
276
- #: core/options-pages.php:474
277
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
278
  msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
279
 
280
- #: core/options-pages.php:475
281
  msgid "Restore Defaults"
282
  msgstr ""
283
 
284
- #: core/options-pages.php:476
285
  msgid "Restoring..."
286
  msgstr ""
287
 
288
- #: core/options-pages.php:480
289
  msgid "Please fill into all fields."
290
  msgstr "모든 필드에 입력해주세요."
291
 
292
- #: core/options-pages.php:481
293
  msgid "Duplicate extensions or MIME types. Please chose other one."
294
  msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
295
 
296
- #: core/options-pages.php:518 core/options-pages.php:635
297
  msgid "Complete Cleanup"
298
  msgstr ""
299
 
300
- #: core/options-pages.php:519
301
  msgid ""
302
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
303
  "plugin data</strong> from the database including backups."
304
  msgstr ""
305
 
306
- #: core/options-pages.php:521
307
  msgid "Yes, delete all data"
308
  msgstr ""
309
 
310
- #: core/options-pages.php:522
311
  msgid "Cleaning..."
312
  msgstr ""
313
 
314
- #: core/options-pages.php:553
315
  msgid "Enhanced Media Library Settings"
316
  msgstr ""
317
 
318
- #: core/options-pages.php:563
319
  msgid "Export"
320
  msgstr ""
321
 
322
- #: core/options-pages.php:567
323
  msgid ""
324
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
325
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -327,15 +328,15 @@ msgid ""
327
  "another website."
328
  msgstr ""
329
 
330
- #: core/options-pages.php:572
331
  msgid "Export Plugin Settings"
332
  msgstr ""
333
 
334
- #: core/options-pages.php:582
335
  msgid "Import"
336
  msgstr ""
337
 
338
- #: core/options-pages.php:586
339
  msgid ""
340
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
341
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -343,173 +344,168 @@ msgid ""
343
  "another website using the export button above."
344
  msgstr ""
345
 
346
- #: core/options-pages.php:587
347
  msgid ""
348
  "All plugin settings will be overridden by the import. You will have a chance "
349
  "to restore current data from an automatic backup in case you are not "
350
  "satisfied with the result of the import."
351
  msgstr ""
352
 
353
- #: core/options-pages.php:594
354
  msgid "Import Plugin Settings"
355
  msgstr ""
356
 
357
- #: core/options-pages.php:606
358
  msgid "Restore"
359
  msgstr ""
360
 
361
- #: core/options-pages.php:612
362
  msgid "No backup available at the moment."
363
  msgstr ""
364
 
365
- #: core/options-pages.php:614
366
  msgid "Backup will be created automatically before any import operation."
367
  msgstr ""
368
 
369
- #: core/options-pages.php:618
370
  msgid ""
371
  "The backup has been automatically created before the latest import operation."
372
  msgstr ""
373
 
374
- #: core/options-pages.php:622
375
  msgid "Restore Settings from the Backup"
376
  msgstr ""
377
 
378
- #: core/options-pages.php:642
379
  msgid "What will be deleted:"
380
  msgstr ""
381
 
382
- #: core/options-pages.php:647
383
  msgid "All plugin options"
384
  msgstr ""
385
 
386
- #: core/options-pages.php:648
387
  msgid "All plugin backups stored in database"
388
  msgstr ""
389
 
390
- #: core/options-pages.php:652
391
  msgid "What will remain intact:"
392
  msgstr ""
393
 
394
- #: core/options-pages.php:653
395
  msgid "All media items"
396
  msgstr ""
397
 
398
- #: core/options-pages.php:654
399
  msgid "All taxonomies not listed above"
400
  msgstr ""
401
 
402
- #: core/options-pages.php:657
403
  msgid ""
404
  "The plugin cannot delete itself because of security reason. Please delete it "
405
  "manually from plugin list after cleanup."
406
  msgstr ""
407
 
408
- #: core/options-pages.php:659
409
  msgid ""
410
  "If you are not sure about this operation please create a backup of your "
411
  "database prior to cleanup!"
412
  msgstr ""
413
 
414
- #: core/options-pages.php:665
415
  msgid "Delete All Data & Deactivate"
416
  msgstr ""
417
 
418
- #: core/options-pages.php:765
419
  msgid "Please upload a file to import settings."
420
  msgstr ""
421
 
422
- #: core/options-pages.php:791
423
  msgid "Plugin settings imported."
424
  msgstr ""
425
 
426
- #: core/options-pages.php:838
427
  msgid "Plugin settings restored from the backup."
428
  msgstr ""
429
 
430
- #: core/options-pages.php:1027
431
  msgid "Media Items Order"
432
  msgstr ""
433
 
434
- #: core/options-pages.php:1034
435
  msgid "Order media items by"
436
  msgstr ""
437
 
438
- #: core/options-pages.php:1037 pro/core/medialist.php:28
439
- #: pro/core/medialist.php:73
440
  msgid "Date"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:1038 pro/core/medialist.php:31
444
- #: pro/core/medialist.php:76
445
  msgid "Title"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:1039 pro/core/medialist.php:34
449
- #: pro/core/medialist.php:79
450
  msgid "Custom Order"
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1041 core/options-pages.php:1053
454
  msgid "For media library and media popups"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1042
458
  msgid "Option allows to change order by drag and drop with Custom Order value."
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1047
462
  msgid "Sort order"
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1050 pro/core/medialist.php:47
466
- #: pro/core/medialist.php:92
467
  msgid "Ascending"
468
  msgstr ""
469
 
470
- #: core/options-pages.php:1051 pro/core/medialist.php:50
471
- #: pro/core/medialist.php:95
472
  msgid "Descending"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1066
476
  msgid "Media Shortcodes"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1073 core/options-pages.php:1076
480
  msgid "Enhanced media shortcodes"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1077
484
  msgid ""
485
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
486
  "upload date, and media items number limit"
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1078
490
  msgid "Gallery example:"
491
  msgstr ""
492
 
493
- #: core/options-pages.php:1079
494
  msgid "Audio playlist example:"
495
  msgstr ""
496
 
497
- #: core/options-pages.php:1080
498
  msgid "Video playlist example:"
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1082
502
  #, php-format
503
  msgid ""
504
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
505
  msgstr ""
506
 
507
- #: core/options-pages.php:1084
508
  #, php-format
509
  msgid "%sLearn more%s."
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1086
513
  #, php-format
514
  msgid ""
515
  "Please check out your gallery front-end and back-end functionality once this "
@@ -517,237 +513,237 @@ msgid ""
517
  "%s."
518
  msgstr ""
519
 
520
- #: core/options-pages.php:1155 core/options-pages.php:1302
521
  msgid "Assign following taxonomies to Media Library:"
522
  msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
523
 
524
- #: core/options-pages.php:1174 core/options-pages.php:1240
525
- #: core/options-pages.php:1324
526
  msgid "Assign Taxonomy"
527
  msgstr "카테고리 할당"
528
 
529
- #: core/options-pages.php:1175 core/options-pages.php:1325
530
  msgid "Edit Taxonomy"
531
  msgstr "카테고리 편집"
532
 
533
- #: core/options-pages.php:1179 core/options-pages.php:1242
534
  msgid "Delete Taxonomy"
535
  msgstr "카테고리 삭제"
536
 
537
- #: core/options-pages.php:1184 core/options-pages.php:1247
538
  msgid "Labels"
539
  msgstr "라벨"
540
 
541
- #: core/options-pages.php:1186 core/options-pages.php:1249
542
  msgid "Singular"
543
  msgstr "단수"
544
 
545
- #: core/options-pages.php:1187 core/options-pages.php:1250
546
  msgid "Plural"
547
  msgstr "복수"
548
 
549
- #: core/options-pages.php:1188 core/options-pages.php:1251
550
  msgid "Menu Name"
551
  msgstr "메뉴명"
552
 
553
- #: core/options-pages.php:1201 core/options-pages.php:1224
554
- #: core/options-pages.php:1264 core/options-pages.php:1328
555
  msgid "Settings"
556
  msgstr "설정"
557
 
558
- #: core/options-pages.php:1203 core/options-pages.php:1266
559
  msgid "Taxonomy Name"
560
  msgstr "카테고리명"
561
 
562
- #: core/options-pages.php:1204 core/options-pages.php:1267
563
  msgid "Hierarchical"
564
  msgstr "계층 구조"
565
 
566
- #: core/options-pages.php:1205 core/options-pages.php:1268
567
  msgid "Column for List View"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1206 core/options-pages.php:1226
571
- #: core/options-pages.php:1269 core/options-pages.php:1330
572
  msgid "Filter for List View"
573
  msgstr ""
574
 
575
- #: core/options-pages.php:1207 core/options-pages.php:1227
576
- #: core/options-pages.php:1270 core/options-pages.php:1331
577
  msgid "Filter for Grid View / Media Popup"
578
  msgstr ""
579
 
580
- #: core/options-pages.php:1208 core/options-pages.php:1228
581
- #: core/options-pages.php:1271 core/options-pages.php:1332
582
  msgid "Edit in Media Popup"
583
  msgstr "미디어 팝업에서 편집"
584
 
585
- #: core/options-pages.php:1209 core/options-pages.php:1272
586
  msgid "Show in Nav Menu"
587
  msgstr "탐색 메뉴에서 표시"
588
 
589
- #: core/options-pages.php:1210 core/options-pages.php:1273
590
  msgid "Remember Terms Order (sort)"
591
  msgstr ""
592
 
593
- #: core/options-pages.php:1211 core/options-pages.php:1274
594
  msgid "Show in REST"
595
  msgstr ""
596
 
597
- #: core/options-pages.php:1212 core/options-pages.php:1275
598
  msgid "Rewrite Slug"
599
  msgstr "슬러그 다시 쓰기"
600
 
601
- #: core/options-pages.php:1213 core/options-pages.php:1276
602
  msgid "Slug with Front"
603
  msgstr "프런트를 포함한 슬러그"
604
 
605
- #: core/options-pages.php:1288
606
  msgid "Add New Taxonomy"
607
  msgstr "새로운 카테고리 추가"
608
 
609
- #: core/options-pages.php:1298
610
  msgid "Non-Media Taxonomies"
611
  msgstr "비 미디어 카테고리"
612
 
613
- #: core/options-pages.php:1361
614
  msgid "Options"
615
  msgstr "옵션"
616
 
617
- #: core/options-pages.php:1371 core/options-pages.php:1374
618
  msgid "Taxonomy archive pages"
619
  msgstr "카테고리 보관 페이지"
620
 
621
- #: core/options-pages.php:1375
622
  msgid "Turn on media taxonomy archive pages on the front-end"
623
  msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
624
 
625
- #: core/options-pages.php:1376
626
  msgid ""
627
  "Re-save your permalink settings after this option change to make it work."
628
  msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
629
 
630
- #: core/options-pages.php:1382 core/options-pages.php:1385
631
  msgid "Assign all like hierarchical"
632
  msgstr "모두 계층 구조와 같이 할당"
633
 
634
- #: core/options-pages.php:1386
635
  msgid ""
636
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
637
  msgstr ""
638
  "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
639
 
640
- #: core/options-pages.php:1392 core/options-pages.php:1395
641
  msgid "Force filters"
642
  msgstr "필터 강제 적용"
643
 
644
- #: core/options-pages.php:1396
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr ""
647
 
648
- #: core/options-pages.php:1397
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1403 core/options-pages.php:1406
653
  msgid "Show count"
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1407
657
  msgid "Show item count per category for media filters"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1461
661
  msgid "Add New MIME Type"
662
  msgstr "새로운 MIME 유형 추가"
663
 
664
- #: core/options-pages.php:1481 core/options-pages.php:1536
665
  msgid "Extension"
666
  msgstr "확장자"
667
 
668
- #: core/options-pages.php:1482 core/options-pages.php:1537
669
  msgid "MIME Type"
670
  msgstr "MIME 유형"
671
 
672
- #: core/options-pages.php:1483 core/options-pages.php:1538
673
  msgid "Singular Label"
674
  msgstr "단수 라벨"
675
 
676
- #: core/options-pages.php:1484 core/options-pages.php:1539
677
  msgid "Plural Label"
678
  msgstr "복수 라벨"
679
 
680
- #: core/options-pages.php:1485 core/options-pages.php:1515
681
- #: core/options-pages.php:1528 core/options-pages.php:1540
682
  msgid "Add Filter"
683
  msgstr "필터 추가"
684
 
685
- #: core/options-pages.php:1486 core/options-pages.php:1516
686
- #: core/options-pages.php:1529 core/options-pages.php:1541
687
  msgid "Allow Upload"
688
  msgstr "업로드 허용"
689
 
690
- #: core/options-pages.php:1517 core/options-pages.php:1530
691
  msgid "Delete MIME Type"
692
  msgstr "MIME 유형 삭제"
693
 
694
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
695
  msgid "Save Changes"
696
  msgstr "변경 사항 저장"
697
 
698
- #: core/options-pages.php:1607
699
  msgid "Changelog"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1608
703
  msgid "What's new in"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1608
707
  msgid "version"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1611
711
  msgid "More features under the hood"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1613
715
  msgid "Support"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1614
719
  msgid "Feel free to ask for help on"
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1614
723
  msgid "Support is free for both versions of the plugin."
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1616
727
  msgid "Plugin rating"
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1617
731
  msgid "Please"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1617
735
  msgid "vote for the plugin"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1617
739
  msgid "Thanks!"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1619
743
  msgid "Other plugins you may find useful"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1658
747
  msgid "Utility"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1681
751
  msgid "Vote!"
752
  msgstr ""
753
 
@@ -760,357 +756,96 @@ msgid "Media Library settings saved."
760
  msgstr ""
761
 
762
  #: core/taxonomies.php:333 core/taxonomies.php:339
763
- #: enhanced-media-library.php:502
764
  msgid "Filter by"
765
  msgstr "필터 적용:"
766
 
767
- #: core/taxonomies.php:341 enhanced-media-library.php:504
768
  msgid "Not in a"
769
  msgstr "포함되지 않음:"
770
 
771
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
772
- msgid "All Uncategorized"
773
- msgstr "모두 미분류됨"
774
-
775
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
776
- msgid "Reset All Filters"
777
- msgstr "모든 필터 재설정"
778
-
779
- #: enhanced-media-library.php:535
780
- msgid "Uploaded to post #"
781
- msgstr ""
782
-
783
- #: enhanced-media-library.php:536
784
- msgid "Based On"
785
- msgstr ""
786
-
787
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
788
- msgid "Media Categories"
789
- msgstr ""
790
-
791
- #: enhanced-media-library.php:582
792
- msgid "Media Category"
793
- msgstr ""
794
-
795
- #: enhanced-media-library.php:584
796
- msgid "All Media Categories"
797
- msgstr ""
798
-
799
- #: enhanced-media-library.php:585
800
- msgid "Edit Media Category"
801
- msgstr ""
802
-
803
- #: enhanced-media-library.php:586
804
- msgid "View Media Category"
805
- msgstr ""
806
-
807
- #: enhanced-media-library.php:587
808
- msgid "Update Media Category"
809
- msgstr ""
810
-
811
- #: enhanced-media-library.php:588
812
- msgid "Add New Media Category"
813
- msgstr ""
814
-
815
- #: enhanced-media-library.php:589
816
- msgid "New Media Category Name"
817
- msgstr ""
818
-
819
- #: enhanced-media-library.php:590
820
- msgid "Parent Media Category"
821
- msgstr ""
822
-
823
- #: enhanced-media-library.php:591
824
- msgid "Parent Media Category:"
825
- msgstr ""
826
-
827
- #: enhanced-media-library.php:592
828
- msgid "Search Media Categories"
829
- msgstr ""
830
-
831
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
832
  msgid "Remove"
833
  msgstr "제거"
834
 
835
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
836
  msgid "Deselect"
837
  msgstr "선택 해제"
838
 
839
- #: pro/core/bulk-edit.php:105
840
  msgid "Caption this image&hellip;"
841
  msgstr "이 이미지에 캡션을 추가..."
842
 
843
- #: pro/core/bulk-edit.php:109
844
  msgid "Describe this video&hellip;"
845
  msgstr "이 비디오를 설명..."
846
 
847
- #: pro/core/bulk-edit.php:111
848
  msgid "Describe this audio file&hellip;"
849
  msgstr "이 오디오 파일을 설명..."
850
 
851
- #: pro/core/bulk-edit.php:113
852
  msgid "Describe this media file&hellip;"
853
  msgstr "이 미디어 파일을 설명..."
854
 
855
- #: pro/core/bulk-edit.php:122
856
- msgid "Attachments Details"
857
- msgstr "첨부 파일 세부 정보"
858
-
859
- #: pro/core/bulk-edit.php:175
860
- msgid "Select All"
861
- msgstr "모두 선택"
862
-
863
- #: pro/core/bulk-edit.php:176
864
- msgid "Deselect All"
865
- msgstr "모두 선택 해제"
866
-
867
- #: pro/core/bulk-edit.php:177
868
- msgid "Delete Selected"
869
- msgstr "선택 삭제"
870
-
871
- #: pro/core/bulk-edit.php:178
872
- msgid "Trash Selected"
873
- msgstr ""
874
-
875
- #: pro/core/bulk-edit.php:179
876
- msgid "Restore Selected"
877
- msgstr ""
878
-
879
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
880
- msgid "Delete Selected Permanently"
881
- msgstr ""
882
-
883
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
884
- msgid "Order By"
885
- msgstr ""
886
-
887
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
888
- msgid "Random"
889
- msgstr ""
890
-
891
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
892
- msgid "Order"
893
- msgstr ""
894
-
895
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
896
- msgid "Limit"
897
- msgstr ""
898
-
899
- #: pro/core/options-pages.php:78
900
- msgid "Your license has been deactivated."
901
- msgstr ""
902
-
903
- #: pro/core/options-pages.php:88
904
- msgid "Please check if your license key is correct and try again."
905
- msgstr ""
906
-
907
- #: pro/core/options-pages.php:104
908
- #, php-format
909
- msgid ""
910
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
911
- "authors</a>."
912
- msgstr ""
913
-
914
- #: pro/core/options-pages.php:119
915
- #, php-format
916
- msgid ""
917
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
918
- "plugin authors</a>."
919
- msgstr ""
920
-
921
- #: pro/core/options-pages.php:130
922
- msgid "You license has been activated."
923
- msgstr ""
924
-
925
- #: pro/core/options-pages.php:184
926
- #, php-format
927
- msgid "Auto-assign media items to parent %s %s on upload"
928
- msgstr ""
929
-
930
- #: pro/core/options-pages.php:185
931
- #, php-format
932
- msgid ""
933
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
934
- "attached to a %s will be assigned to %s of their parent %s. Currently "
935
- "assigned %s will not be saved. Media items that are not attached to any %s "
936
- "will not be affected."
937
- msgstr ""
938
-
939
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
940
- msgid "Bulk Edit"
941
- msgstr "일괄 편집"
942
-
943
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
944
- msgid "Turn off 'Save Changes' button"
945
- msgstr "'변경 사항 저장' 버튼 해제"
946
-
947
- #: pro/core/options-pages.php:220
948
- msgid "Save changes on the fly"
949
- msgstr "변경 사항 즉시 저장"
950
-
951
- #: pro/core/options-pages.php:221
952
- msgid ""
953
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
954
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
955
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
956
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
957
- "files / taxonomies with this option turned on."
958
- msgstr ""
959
-
960
- #: pro/core/options-pages.php:222
961
- msgid ""
962
- "Strongly NOT recommended option if you work with more than hundred of files "
963
- "at a time."
964
- msgstr ""
965
- "한 번에 100 개 이상의 파일을 작업을하는 경우 절대로 권장하지 않는 옵션임."
966
-
967
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
968
- msgid "License Key"
969
- msgstr "라이센스 키"
970
-
971
- #: pro/core/options-pages.php:273
972
- #, php-format
973
- msgid ""
974
- "To unlock updates please enter your license key below. You can get your "
975
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
976
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
977
- msgstr ""
978
-
979
- #: pro/core/options-pages.php:283
980
- msgid "Activate License"
981
- msgstr "라이센스 활성화"
982
-
983
- #: pro/core/options-pages.php:290
984
- msgid "Your license is active!"
985
- msgstr "라이센스가 활성화되었습니다!"
986
-
987
- #: pro/core/options-pages.php:294
988
- msgid "Deactivate License"
989
- msgstr ""
990
-
991
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
992
- msgid ""
993
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
994
- "this server&#8217;s configuration. If you continue to have problems, please "
995
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
996
- msgstr ""
997
- "예기치 않은 오류가 발생했습니다. WordPress.org 또는 이 서버의 구성에 문제가 "
998
- "있을 수 있습니다. 문제가 계속될 경우, <a href=\"https://wordpress.org/"
999
- "support/\">지원 포럼</a>을 시도해 보시기 바랍니다."
1000
-
1001
- #: pro/core/update.php:113
1002
- msgid ""
1003
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1004
- "contact your server administrator.)"
1005
- msgstr ""
1006
- "(워드프레스가 WordPress.org에 보안 연결을 설정할 수 없습니다. 서버 관리자에"
1007
- "게 문의하세요.)"
1008
-
1009
- #: pro/core/update.php:181
1010
- #, php-format
1011
- msgid ""
1012
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1013
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1014
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1015
- msgstr ""
1016
-
1017
- #: pro/enhanced-media-library-pro.php:119
1018
- msgid "ALL files belong to this item"
1019
- msgstr "이 항목에 모든 파일이 속합니다"
1020
-
1021
- #: pro/enhanced-media-library-pro.php:120
1022
- msgid "SOME files belong to this item"
1023
- msgstr "이 항목에 SOME 파일이 속합니다"
1024
-
1025
- #: pro/enhanced-media-library-pro.php:121
1026
- msgid "NO files belong to this item"
1027
- msgstr "이 항목에 속한 파일이 없습니다"
1028
-
1029
- #: pro/enhanced-media-library-pro.php:122
1030
- msgid "Changes saved."
1031
- msgstr "변경 사항이 저장됨."
1032
-
1033
- #: pro/enhanced-media-library-pro.php:123
1034
- msgid "Something went wrong."
1035
- msgstr "문제가 발생했습니다."
1036
-
1037
- #: pro/enhanced-media-library-pro.php:126
1038
- msgid "Edit Media Files"
1039
- msgstr "미디어 파일 편집"
1040
 
1041
- #: pro/enhanced-media-library-pro.php:129
1042
- msgid "Selecting"
1043
- msgstr ""
1044
 
1045
- #: pro/enhanced-media-library-pro.php:131
1046
- msgid "You are about to permanently delete all selected items."
1047
  msgstr ""
1048
 
1049
- #: pro/enhanced-media-library-pro.php:132
1050
- msgid "Delete"
1051
  msgstr ""
1052
 
1053
- #: pro/enhanced-media-library-pro.php:134
1054
- msgid "Moving to Trash"
1055
  msgstr ""
1056
 
1057
- #: pro/enhanced-media-library-pro.php:135
1058
- msgid "Restoring"
1059
  msgstr ""
1060
 
1061
- #: pro/enhanced-media-library-pro.php:136
1062
- msgid "Deleting"
1063
  msgstr ""
1064
 
1065
- #: pro/enhanced-media-library-pro.php:160
1066
- msgid "Create a filter-based gallery"
1067
  msgstr ""
1068
 
1069
- #: pro/enhanced-media-library-pro.php:161
1070
- msgid "Create a filter-based playlist"
1071
  msgstr ""
1072
 
1073
- #: pro/enhanced-media-library-pro.php:162
1074
- msgid "Create a filter-based video playlist"
1075
  msgstr ""
1076
 
1077
- #: pro/enhanced-media-library-pro.php:240
1078
- msgid ""
1079
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1080
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1081
- "will remain intact."
1082
  msgstr ""
1083
 
1084
- #: pro/enhanced-media-library-pro.php:240
1085
- msgid "Return to Plugins"
1086
- msgstr "플러그인으로 돌아가기"
1087
-
1088
- #: pro/enhanced-media-library-pro.php:291
1089
- msgid ""
1090
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1091
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1092
- "be active. Please network deactivate and delete the free versions of the "
1093
- "plugin. All your data will remain intact."
1094
  msgstr ""
1095
 
1096
- #: pro/enhanced-media-library-pro.php:308
1097
- msgid ""
1098
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1099
- "be active. Please deactivate and delete the free version of the plugin. All "
1100
- "your data will remain intact."
1101
  msgstr ""
1102
 
1103
- #: pro/enhanced-media-library-pro.php:324
1104
- msgid ""
1105
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1106
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1107
- "version to be active. Please deactivate (or network deactivate) and delete "
1108
- "the free version of the plugin for this site. All your data will remail "
1109
- "intact."
1110
  msgstr ""
1111
 
1112
- #. Plugin Name of the plugin/theme
1113
- msgid "Enhanced Media Library PRO"
1114
  msgstr ""
1115
 
1116
  #. Plugin URI of the plugin/theme
@@ -1126,6 +861,3 @@ msgstr "이 플러그인은 많은 미디어 파일을 관리해야 하는 사
1126
  #. Author of the plugin/theme
1127
  msgid "wpUXsolutions"
1128
  msgstr ""
1129
-
1130
- #~ msgid "Not in"
1131
- #~ msgstr "포함되지 않음:"
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-13 03:04+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:04+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Korean (Republic of Korea)\n"
9
  "Language: ko_KR\n"
30
  msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
 
33
+ #: core/options-pages.php:97 core/options-pages.php:220
34
+ #: core/options-pages.php:313 core/options-pages.php:1080
35
+ #: core/options-pages.php:1204 core/options-pages.php:1529
36
+ #: core/options-pages.php:1729
37
  msgid "Media Settings"
38
  msgstr "미디어 설정"
39
 
40
+ #: core/options-pages.php:106 core/options-pages.php:285
41
  msgid "Media Library"
42
  msgstr "미디어 라이브러리"
43
 
45
  msgid "Taxonomies"
46
  msgstr "카테고리"
47
 
48
+ #: core/options-pages.php:124 core/options-pages.php:287
49
  msgid "MIME Types"
50
  msgstr "MIME 유형"
51
 
52
+ #. Plugin Name of the plugin/theme
53
  #: core/options-pages.php:135 core/options-pages.php:136
54
  msgid "Enhanced Media Library"
55
  msgstr "Enhanced Media Library"
56
 
57
+ #: core/options-pages.php:284
58
  msgid "General"
59
  msgstr ""
60
 
61
+ #: core/options-pages.php:286 core/options-pages.php:1225
62
  msgid "Media Taxonomies"
63
  msgstr "미디어 카테고리"
64
 
65
+ #: core/options-pages.php:310 core/options-pages.php:622
66
+ #: core/options-pages.php:1076 core/options-pages.php:1201
67
+ #: core/options-pages.php:1525
68
  msgid "You do not have sufficient permissions to access this page."
69
  msgstr "이 페이지에 접근할 권한이 없습니다."
70
 
71
+ #: core/options-pages.php:324
72
  msgid "Image sizes"
73
  msgstr ""
74
 
75
+ #: core/options-pages.php:325
76
  msgid ""
77
  "The sizes listed below determine the maximum dimensions in pixels to use "
78
  "when adding an image to the Media Library."
79
  msgstr ""
80
 
81
+ #: core/options-pages.php:329
82
  msgid "Thumbnail size"
83
  msgstr ""
84
 
85
+ #: core/options-pages.php:331
86
  msgid "Width"
87
  msgstr ""
88
 
89
+ #: core/options-pages.php:333
90
  msgid "Height"
91
  msgstr ""
92
 
93
+ #: core/options-pages.php:336
94
  msgid ""
95
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:341 core/options-pages.php:342
99
  msgid "Medium size"
100
  msgstr ""
101
 
102
+ #: core/options-pages.php:343 core/options-pages.php:353
103
  msgid "Max Width"
104
  msgstr ""
105
 
106
+ #: core/options-pages.php:345 core/options-pages.php:355
107
  msgid "Max Height"
108
  msgstr ""
109
 
110
+ #: core/options-pages.php:351 core/options-pages.php:352
111
  msgid "Large size"
112
  msgstr ""
113
 
114
+ #: core/options-pages.php:368
115
  msgid "Embeds"
116
  msgstr ""
117
 
118
+ #: core/options-pages.php:375
119
  msgid "Uploading Files"
120
  msgstr ""
121
 
122
+ #: core/options-pages.php:382
123
  msgid "Store uploads in this folder"
124
  msgstr ""
125
 
126
+ #: core/options-pages.php:386
127
  #, php-format
128
  msgid "Default is %s"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:392
132
  msgid "Full URL path to files"
133
  msgstr ""
134
 
135
+ #: core/options-pages.php:394
136
  msgid "Configuring this is optional. By default, it should be blank."
137
  msgstr ""
138
 
139
+ #: core/options-pages.php:402
140
  msgid "Organize my uploads into month- and year-based folders"
141
  msgstr ""
142
 
143
+ #: core/options-pages.php:474 core/options-pages.php:1249
144
+ #: core/options-pages.php:1264 core/options-pages.php:1327
145
+ #: core/options-pages.php:1399
146
  msgid "Edit"
147
  msgstr "편집"
148
 
149
+ #: core/options-pages.php:475
150
  msgid "Close"
151
  msgstr "닫기"
152
 
153
+ #: core/options-pages.php:476 core/options-pages.php:1265
154
+ #: core/options-pages.php:1328
155
  msgid "View"
156
  msgstr "보기"
157
 
158
+ #: core/options-pages.php:477 core/options-pages.php:1266
159
+ #: core/options-pages.php:1329
160
  msgid "Update"
161
  msgstr "업데이트"
162
 
163
+ #: core/options-pages.php:478 core/options-pages.php:1267
164
+ #: core/options-pages.php:1330
165
  msgid "Add New"
166
  msgstr "새로 추가하기"
167
 
168
+ #: core/options-pages.php:479 core/options-pages.php:1268
169
+ #: core/options-pages.php:1331
170
  msgid "New"
171
  msgstr "신규"
172
 
173
+ #: core/options-pages.php:480
174
  msgid "Name"
175
  msgstr "이름"
176
 
177
+ #: core/options-pages.php:481 core/options-pages.php:1269
178
+ #: core/options-pages.php:1332
179
  msgid "Parent"
180
  msgstr "부모"
181
 
182
+ #: core/options-pages.php:482 core/options-pages.php:718
183
+ #: core/options-pages.php:1263 core/options-pages.php:1326
184
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
185
  msgid "All"
186
  msgstr "모두"
187
 
188
+ #: core/options-pages.php:483 core/options-pages.php:1270
189
+ #: core/options-pages.php:1333
190
  msgid "Search"
191
  msgstr "검색"
192
 
193
+ #: core/options-pages.php:485 core/options-pages.php:1314
194
  msgid "New Taxonomy"
195
  msgstr "새로운 카테고리"
196
 
197
+ #: core/options-pages.php:487
198
  msgid "Remove Taxonomy"
199
  msgstr ""
200
 
201
+ #: core/options-pages.php:488
202
  msgid "Taxonomy will be removed."
203
  msgstr ""
204
 
205
+ #: core/options-pages.php:489
206
  msgid ""
207
  "Taxonomy terms (categories) will remain intact in the database. If you "
208
  "create a taxonomy with the same name in the future, its terms (categories) "
209
  "will be available again."
210
  msgstr ""
211
 
212
+ #: core/options-pages.php:490
213
  msgid "Media items will remain intact."
214
  msgstr ""
215
 
216
+ #: core/options-pages.php:491
217
  msgid "Are you still sure?"
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:492
221
  msgid "Yes, remove taxonomy"
222
  msgstr ""
223
 
224
+ #: core/options-pages.php:494
225
  msgid "Duplicate"
226
  msgstr ""
227
 
228
+ #: core/options-pages.php:495
229
  msgid "Taxonomy with the same name already exists. Please chose other one."
230
  msgstr ""
231
 
232
+ #: core/options-pages.php:497
233
  msgid "Empty Fields"
234
  msgstr ""
235
 
236
+ #: core/options-pages.php:498
237
  msgid "Please choose Singular and Plural names for all new taxomonies."
238
  msgstr ""
239
 
240
+ #: core/options-pages.php:499
241
  msgid "Please choose Singular name for all new taxomonies."
242
  msgstr ""
243
 
244
+ #: core/options-pages.php:500
245
  msgid "Please choose Plural Name for all new taxomonies."
246
  msgstr ""
247
 
248
+ #: core/options-pages.php:502
249
  msgid "Ok"
250
  msgstr ""
251
 
252
+ #: core/options-pages.php:503 core/options-pages.php:508
253
+ #: core/options-pages.php:552 core/options-pages.php:597
 
254
  msgid "Cancel"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:505
258
  msgid "Synchronize Now"
259
  msgstr ""
260
 
261
+ #: core/options-pages.php:506 core/options-pages.php:594
262
  msgid "This operation cannot be canceled! Are you still sure?"
263
  msgstr ""
264
 
265
+ #: core/options-pages.php:507
266
  msgid "Synchronize"
267
  msgstr ""
268
 
269
+ #: core/options-pages.php:509
270
  msgid "Synchronizing..."
271
  msgstr ""
272
 
273
+ #: core/options-pages.php:547 core/options-pages.php:1653
274
  msgid "Restore WordPress default MIME Types"
275
  msgstr ""
276
 
277
+ #: core/options-pages.php:548
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
280
 
281
+ #: core/options-pages.php:549
282
  msgid "Restore Defaults"
283
  msgstr ""
284
 
285
+ #: core/options-pages.php:550
286
  msgid "Restoring..."
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:554
290
  msgid "Please fill into all fields."
291
  msgstr "모든 필드에 입력해주세요."
292
 
293
+ #: core/options-pages.php:555
294
  msgid "Duplicate extensions or MIME types. Please chose other one."
295
  msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
296
 
297
+ #: core/options-pages.php:592 core/options-pages.php:709
298
  msgid "Complete Cleanup"
299
  msgstr ""
300
 
301
+ #: core/options-pages.php:593
302
  msgid ""
303
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
304
  "plugin data</strong> from the database including backups."
305
  msgstr ""
306
 
307
+ #: core/options-pages.php:595
308
  msgid "Yes, delete all data"
309
  msgstr ""
310
 
311
+ #: core/options-pages.php:596
312
  msgid "Cleaning..."
313
  msgstr ""
314
 
315
+ #: core/options-pages.php:627
316
  msgid "Enhanced Media Library Settings"
317
  msgstr ""
318
 
319
+ #: core/options-pages.php:637
320
  msgid "Export"
321
  msgstr ""
322
 
323
+ #: core/options-pages.php:641
324
  msgid ""
325
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
326
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
328
  "another website."
329
  msgstr ""
330
 
331
+ #: core/options-pages.php:646
332
  msgid "Export Plugin Settings"
333
  msgstr ""
334
 
335
+ #: core/options-pages.php:656
336
  msgid "Import"
337
  msgstr ""
338
 
339
+ #: core/options-pages.php:660
340
  msgid ""
341
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
342
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
344
  "another website using the export button above."
345
  msgstr ""
346
 
347
+ #: core/options-pages.php:661
348
  msgid ""
349
  "All plugin settings will be overridden by the import. You will have a chance "
350
  "to restore current data from an automatic backup in case you are not "
351
  "satisfied with the result of the import."
352
  msgstr ""
353
 
354
+ #: core/options-pages.php:668
355
  msgid "Import Plugin Settings"
356
  msgstr ""
357
 
358
+ #: core/options-pages.php:680
359
  msgid "Restore"
360
  msgstr ""
361
 
362
+ #: core/options-pages.php:686
363
  msgid "No backup available at the moment."
364
  msgstr ""
365
 
366
+ #: core/options-pages.php:688
367
  msgid "Backup will be created automatically before any import operation."
368
  msgstr ""
369
 
370
+ #: core/options-pages.php:692
371
  msgid ""
372
  "The backup has been automatically created before the latest import operation."
373
  msgstr ""
374
 
375
+ #: core/options-pages.php:696
376
  msgid "Restore Settings from the Backup"
377
  msgstr ""
378
 
379
+ #: core/options-pages.php:716
380
  msgid "What will be deleted:"
381
  msgstr ""
382
 
383
+ #: core/options-pages.php:721
384
  msgid "All plugin options"
385
  msgstr ""
386
 
387
+ #: core/options-pages.php:722
388
  msgid "All plugin backups stored in database"
389
  msgstr ""
390
 
391
+ #: core/options-pages.php:726
392
  msgid "What will remain intact:"
393
  msgstr ""
394
 
395
+ #: core/options-pages.php:727
396
  msgid "All media items"
397
  msgstr ""
398
 
399
+ #: core/options-pages.php:728
400
  msgid "All taxonomies not listed above"
401
  msgstr ""
402
 
403
+ #: core/options-pages.php:731
404
  msgid ""
405
  "The plugin cannot delete itself because of security reason. Please delete it "
406
  "manually from plugin list after cleanup."
407
  msgstr ""
408
 
409
+ #: core/options-pages.php:733
410
  msgid ""
411
  "If you are not sure about this operation please create a backup of your "
412
  "database prior to cleanup!"
413
  msgstr ""
414
 
415
+ #: core/options-pages.php:739
416
  msgid "Delete All Data & Deactivate"
417
  msgstr ""
418
 
419
+ #: core/options-pages.php:839
420
  msgid "Please upload a file to import settings."
421
  msgstr ""
422
 
423
+ #: core/options-pages.php:865
424
  msgid "Plugin settings imported."
425
  msgstr ""
426
 
427
+ #: core/options-pages.php:912
428
  msgid "Plugin settings restored from the backup."
429
  msgstr ""
430
 
431
+ #: core/options-pages.php:1101
432
  msgid "Media Items Order"
433
  msgstr ""
434
 
435
+ #: core/options-pages.php:1108
436
  msgid "Order media items by"
437
  msgstr ""
438
 
439
+ #: core/options-pages.php:1111
 
440
  msgid "Date"
441
  msgstr ""
442
 
443
+ #: core/options-pages.php:1112
 
444
  msgid "Title"
445
  msgstr ""
446
 
447
+ #: core/options-pages.php:1113
 
448
  msgid "Custom Order"
449
  msgstr ""
450
 
451
+ #: core/options-pages.php:1115 core/options-pages.php:1127
452
  msgid "For media library and media popups"
453
  msgstr ""
454
 
455
+ #: core/options-pages.php:1116
456
  msgid "Option allows to change order by drag and drop with Custom Order value."
457
  msgstr ""
458
 
459
+ #: core/options-pages.php:1121
460
  msgid "Sort order"
461
  msgstr ""
462
 
463
+ #: core/options-pages.php:1124
 
464
  msgid "Ascending"
465
  msgstr ""
466
 
467
+ #: core/options-pages.php:1125
 
468
  msgid "Descending"
469
  msgstr ""
470
 
471
+ #: core/options-pages.php:1140
472
  msgid "Media Shortcodes"
473
  msgstr ""
474
 
475
+ #: core/options-pages.php:1147 core/options-pages.php:1150
476
  msgid "Enhanced media shortcodes"
477
  msgstr ""
478
 
479
+ #: core/options-pages.php:1151
480
  msgid ""
481
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
482
  "upload date, and media items number limit"
483
  msgstr ""
484
 
485
+ #: core/options-pages.php:1152
486
  msgid "Gallery example:"
487
  msgstr ""
488
 
489
+ #: core/options-pages.php:1153
490
  msgid "Audio playlist example:"
491
  msgstr ""
492
 
493
+ #: core/options-pages.php:1154
494
  msgid "Video playlist example:"
495
  msgstr ""
496
 
497
+ #: core/options-pages.php:1156
498
  #, php-format
499
  msgid ""
500
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
501
  msgstr ""
502
 
503
+ #: core/options-pages.php:1158
504
  #, php-format
505
  msgid "%sLearn more%s."
506
  msgstr ""
507
 
508
+ #: core/options-pages.php:1160
509
  #, php-format
510
  msgid ""
511
  "Please check out your gallery front-end and back-end functionality once this "
513
  "%s."
514
  msgstr ""
515
 
516
+ #: core/options-pages.php:1229 core/options-pages.php:1376
517
  msgid "Assign following taxonomies to Media Library:"
518
  msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
519
 
520
+ #: core/options-pages.php:1248 core/options-pages.php:1314
521
+ #: core/options-pages.php:1398
522
  msgid "Assign Taxonomy"
523
  msgstr "카테고리 할당"
524
 
525
+ #: core/options-pages.php:1249 core/options-pages.php:1399
526
  msgid "Edit Taxonomy"
527
  msgstr "카테고리 편집"
528
 
529
+ #: core/options-pages.php:1253 core/options-pages.php:1316
530
  msgid "Delete Taxonomy"
531
  msgstr "카테고리 삭제"
532
 
533
+ #: core/options-pages.php:1258 core/options-pages.php:1321
534
  msgid "Labels"
535
  msgstr "라벨"
536
 
537
+ #: core/options-pages.php:1260 core/options-pages.php:1323
538
  msgid "Singular"
539
  msgstr "단수"
540
 
541
+ #: core/options-pages.php:1261 core/options-pages.php:1324
542
  msgid "Plural"
543
  msgstr "복수"
544
 
545
+ #: core/options-pages.php:1262 core/options-pages.php:1325
546
  msgid "Menu Name"
547
  msgstr "메뉴명"
548
 
549
+ #: core/options-pages.php:1275 core/options-pages.php:1298
550
+ #: core/options-pages.php:1338 core/options-pages.php:1402
551
  msgid "Settings"
552
  msgstr "설정"
553
 
554
+ #: core/options-pages.php:1277 core/options-pages.php:1340
555
  msgid "Taxonomy Name"
556
  msgstr "카테고리명"
557
 
558
+ #: core/options-pages.php:1278 core/options-pages.php:1341
559
  msgid "Hierarchical"
560
  msgstr "계층 구조"
561
 
562
+ #: core/options-pages.php:1279 core/options-pages.php:1342
563
  msgid "Column for List View"
564
  msgstr ""
565
 
566
+ #: core/options-pages.php:1280 core/options-pages.php:1300
567
+ #: core/options-pages.php:1343 core/options-pages.php:1404
568
  msgid "Filter for List View"
569
  msgstr ""
570
 
571
+ #: core/options-pages.php:1281 core/options-pages.php:1301
572
+ #: core/options-pages.php:1344 core/options-pages.php:1405
573
  msgid "Filter for Grid View / Media Popup"
574
  msgstr ""
575
 
576
+ #: core/options-pages.php:1282 core/options-pages.php:1302
577
+ #: core/options-pages.php:1345 core/options-pages.php:1406
578
  msgid "Edit in Media Popup"
579
  msgstr "미디어 팝업에서 편집"
580
 
581
+ #: core/options-pages.php:1283 core/options-pages.php:1346
582
  msgid "Show in Nav Menu"
583
  msgstr "탐색 메뉴에서 표시"
584
 
585
+ #: core/options-pages.php:1284 core/options-pages.php:1347
586
  msgid "Remember Terms Order (sort)"
587
  msgstr ""
588
 
589
+ #: core/options-pages.php:1285 core/options-pages.php:1348
590
  msgid "Show in REST"
591
  msgstr ""
592
 
593
+ #: core/options-pages.php:1286 core/options-pages.php:1349
594
  msgid "Rewrite Slug"
595
  msgstr "슬러그 다시 쓰기"
596
 
597
+ #: core/options-pages.php:1287 core/options-pages.php:1350
598
  msgid "Slug with Front"
599
  msgstr "프런트를 포함한 슬러그"
600
 
601
+ #: core/options-pages.php:1362
602
  msgid "Add New Taxonomy"
603
  msgstr "새로운 카테고리 추가"
604
 
605
+ #: core/options-pages.php:1372
606
  msgid "Non-Media Taxonomies"
607
  msgstr "비 미디어 카테고리"
608
 
609
+ #: core/options-pages.php:1435
610
  msgid "Options"
611
  msgstr "옵션"
612
 
613
+ #: core/options-pages.php:1445 core/options-pages.php:1448
614
  msgid "Taxonomy archive pages"
615
  msgstr "카테고리 보관 페이지"
616
 
617
+ #: core/options-pages.php:1449
618
  msgid "Turn on media taxonomy archive pages on the front-end"
619
  msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
620
 
621
+ #: core/options-pages.php:1450
622
  msgid ""
623
  "Re-save your permalink settings after this option change to make it work."
624
  msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
625
 
626
+ #: core/options-pages.php:1456 core/options-pages.php:1459
627
  msgid "Assign all like hierarchical"
628
  msgstr "모두 계층 구조와 같이 할당"
629
 
630
+ #: core/options-pages.php:1460
631
  msgid ""
632
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
633
  msgstr ""
634
  "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
635
 
636
+ #: core/options-pages.php:1466 core/options-pages.php:1469
637
  msgid "Force filters"
638
  msgstr "필터 강제 적용"
639
 
640
+ #: core/options-pages.php:1470
641
  msgid "Show media filters for ANY Media Popup"
642
  msgstr ""
643
 
644
+ #: core/options-pages.php:1471
645
  msgid "Try this if filters are not shown for third-party plugins or themes."
646
  msgstr ""
647
 
648
+ #: core/options-pages.php:1477 core/options-pages.php:1480
649
  msgid "Show count"
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1481
653
  msgid "Show item count per category for media filters"
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1535
657
  msgid "Add New MIME Type"
658
  msgstr "새로운 MIME 유형 추가"
659
 
660
+ #: core/options-pages.php:1555 core/options-pages.php:1610
661
  msgid "Extension"
662
  msgstr "확장자"
663
 
664
+ #: core/options-pages.php:1556 core/options-pages.php:1611
665
  msgid "MIME Type"
666
  msgstr "MIME 유형"
667
 
668
+ #: core/options-pages.php:1557 core/options-pages.php:1612
669
  msgid "Singular Label"
670
  msgstr "단수 라벨"
671
 
672
+ #: core/options-pages.php:1558 core/options-pages.php:1613
673
  msgid "Plural Label"
674
  msgstr "복수 라벨"
675
 
676
+ #: core/options-pages.php:1559 core/options-pages.php:1589
677
+ #: core/options-pages.php:1602 core/options-pages.php:1614
678
  msgid "Add Filter"
679
  msgstr "필터 추가"
680
 
681
+ #: core/options-pages.php:1560 core/options-pages.php:1590
682
+ #: core/options-pages.php:1603 core/options-pages.php:1615
683
  msgid "Allow Upload"
684
  msgstr "업로드 허용"
685
 
686
+ #: core/options-pages.php:1591 core/options-pages.php:1604
687
  msgid "Delete MIME Type"
688
  msgstr "MIME 유형 삭제"
689
 
690
+ #: core/options-pages.php:1651
691
  msgid "Save Changes"
692
  msgstr "변경 사항 저장"
693
 
694
+ #: core/options-pages.php:1681
695
  msgid "Changelog"
696
  msgstr ""
697
 
698
+ #: core/options-pages.php:1682
699
  msgid "What's new in"
700
  msgstr ""
701
 
702
+ #: core/options-pages.php:1682
703
  msgid "version"
704
  msgstr ""
705
 
706
+ #: core/options-pages.php:1685
707
  msgid "More features under the hood"
708
  msgstr ""
709
 
710
+ #: core/options-pages.php:1687
711
  msgid "Support"
712
  msgstr ""
713
 
714
+ #: core/options-pages.php:1688
715
  msgid "Feel free to ask for help on"
716
  msgstr ""
717
 
718
+ #: core/options-pages.php:1688
719
  msgid "Support is free for both versions of the plugin."
720
  msgstr ""
721
 
722
+ #: core/options-pages.php:1690
723
  msgid "Plugin rating"
724
  msgstr ""
725
 
726
+ #: core/options-pages.php:1691
727
  msgid "Please"
728
  msgstr ""
729
 
730
+ #: core/options-pages.php:1691
731
  msgid "vote for the plugin"
732
  msgstr ""
733
 
734
+ #: core/options-pages.php:1691
735
  msgid "Thanks!"
736
  msgstr ""
737
 
738
+ #: core/options-pages.php:1693
739
  msgid "Other plugins you may find useful"
740
  msgstr ""
741
 
742
+ #: core/options-pages.php:1732
743
  msgid "Utility"
744
  msgstr ""
745
 
746
+ #: core/options-pages.php:1755
747
  msgid "Vote!"
748
  msgstr ""
749
 
756
  msgstr ""
757
 
758
  #: core/taxonomies.php:333 core/taxonomies.php:339
759
+ #: enhanced-media-library.php:508
760
  msgid "Filter by"
761
  msgstr "필터 적용:"
762
 
763
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
764
  msgid "Not in a"
765
  msgstr "포함되지 않음:"
766
 
767
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
768
  msgid "Remove"
769
  msgstr "제거"
770
 
771
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
772
  msgid "Deselect"
773
  msgstr "선택 해제"
774
 
775
+ #: core/taxonomies.php:1337
776
  msgid "Caption this image&hellip;"
777
  msgstr "이 이미지에 캡션을 추가..."
778
 
779
+ #: core/taxonomies.php:1341
780
  msgid "Describe this video&hellip;"
781
  msgstr "이 비디오를 설명..."
782
 
783
+ #: core/taxonomies.php:1343
784
  msgid "Describe this audio file&hellip;"
785
  msgstr "이 오디오 파일을 설명..."
786
 
787
+ #: core/taxonomies.php:1345
788
  msgid "Describe this media file&hellip;"
789
  msgstr "이 미디어 파일을 설명..."
790
 
791
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
792
+ msgid "All Uncategorized"
793
+ msgstr "모두 미분류됨"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
794
 
795
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
796
+ msgid "Reset All Filters"
797
+ msgstr "모든 필터 재설정"
798
 
799
+ #: enhanced-media-library.php:541
800
+ msgid "Uploaded to post #"
801
  msgstr ""
802
 
803
+ #: enhanced-media-library.php:542
804
+ msgid "Based On"
805
  msgstr ""
806
 
807
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
808
+ msgid "Media Categories"
809
  msgstr ""
810
 
811
+ #: enhanced-media-library.php:575
812
+ msgid "Media Category"
813
  msgstr ""
814
 
815
+ #: enhanced-media-library.php:577
816
+ msgid "All Media Categories"
817
  msgstr ""
818
 
819
+ #: enhanced-media-library.php:578
820
+ msgid "Edit Media Category"
821
  msgstr ""
822
 
823
+ #: enhanced-media-library.php:579
824
+ msgid "View Media Category"
825
  msgstr ""
826
 
827
+ #: enhanced-media-library.php:580
828
+ msgid "Update Media Category"
829
  msgstr ""
830
 
831
+ #: enhanced-media-library.php:581
832
+ msgid "Add New Media Category"
 
 
 
833
  msgstr ""
834
 
835
+ #: enhanced-media-library.php:582
836
+ msgid "New Media Category Name"
 
 
 
 
 
 
 
 
837
  msgstr ""
838
 
839
+ #: enhanced-media-library.php:583
840
+ msgid "Parent Media Category"
 
 
 
841
  msgstr ""
842
 
843
+ #: enhanced-media-library.php:584
844
+ msgid "Parent Media Category:"
 
 
 
 
 
845
  msgstr ""
846
 
847
+ #: enhanced-media-library.php:585
848
+ msgid "Search Media Categories"
849
  msgstr ""
850
 
851
  #. Plugin URI of the plugin/theme
861
  #. Author of the plugin/theme
862
  msgid "wpUXsolutions"
863
  msgstr ""
 
 
 
languages/enhanced-media-library-nl_NL.mo CHANGED
Binary file
languages/enhanced-media-library-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library v1.0.4\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
5
- "POT-Creation-Date: 2016-11-29 19:45+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:45+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: De B.A.A.T. <de_baat@de-baat.nl>\n"
9
  "Language: nl_NL\n"
@@ -35,13 +35,14 @@ msgstr[0] ""
35
  msgstr[1] ""
36
 
37
  # @ eml
38
- #: core/options-pages.php:97 core/options-pages.php:239
39
- #: core/options-pages.php:1006 core/options-pages.php:1130
40
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
41
  msgid "Media Settings"
42
  msgstr "Media Instellingen"
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:211
45
  msgid "Media Library"
46
  msgstr ""
47
 
@@ -51,301 +52,301 @@ msgid "Taxonomies"
51
  msgstr "Taxonomies"
52
 
53
  # @ eml
54
- #: core/options-pages.php:124 core/options-pages.php:213
55
  msgid "MIME Types"
56
  msgstr "MIME Types"
57
 
58
  # @ eml
 
59
  #: core/options-pages.php:135 core/options-pages.php:136
60
  msgid "Enhanced Media Library"
61
  msgstr ""
62
 
63
- #: core/options-pages.php:210
64
  msgid "General"
65
  msgstr ""
66
 
67
  # @ eml
68
- #: core/options-pages.php:212 core/options-pages.php:1151
69
  msgid "Media Taxonomies"
70
  msgstr "Media Taxonomies"
71
 
72
  # @ eml
73
- #: core/options-pages.php:236 core/options-pages.php:548
74
- #: core/options-pages.php:1002 core/options-pages.php:1127
75
- #: core/options-pages.php:1451
76
  msgid "You do not have sufficient permissions to access this page."
77
  msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
78
 
79
- #: core/options-pages.php:250
80
  msgid "Image sizes"
81
  msgstr ""
82
 
83
- #: core/options-pages.php:251
84
  msgid ""
85
  "The sizes listed below determine the maximum dimensions in pixels to use "
86
  "when adding an image to the Media Library."
87
  msgstr ""
88
 
89
- #: core/options-pages.php:255
90
  msgid "Thumbnail size"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:257
94
  msgid "Width"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:259
98
  msgid "Height"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:262
102
  msgid ""
103
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:267 core/options-pages.php:268
107
  msgid "Medium size"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:269 core/options-pages.php:279
111
  msgid "Max Width"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:271 core/options-pages.php:281
115
  msgid "Max Height"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:277 core/options-pages.php:278
119
  msgid "Large size"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:294
123
  msgid "Embeds"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:301
127
  msgid "Uploading Files"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:308
131
  msgid "Store uploads in this folder"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:312
135
  #, php-format
136
  msgid "Default is %s"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:318
140
  msgid "Full URL path to files"
141
  msgstr ""
142
 
143
- #: core/options-pages.php:320
144
  msgid "Configuring this is optional. By default, it should be blank."
145
  msgstr ""
146
 
147
- #: core/options-pages.php:328
148
  msgid "Organize my uploads into month- and year-based folders"
149
  msgstr ""
150
 
151
  # @ eml
152
- #: core/options-pages.php:400 core/options-pages.php:1175
153
- #: core/options-pages.php:1190 core/options-pages.php:1253
154
- #: core/options-pages.php:1325
155
  msgid "Edit"
156
  msgstr "Bewerk"
157
 
158
  # @ eml
159
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
160
  msgid "Close"
161
  msgstr "Sluit"
162
 
163
  # @ eml
164
- #: core/options-pages.php:402 core/options-pages.php:1191
165
- #: core/options-pages.php:1254
166
  msgid "View"
167
  msgstr "Bekijk"
168
 
169
  # @ eml
170
- #: core/options-pages.php:403 core/options-pages.php:1192
171
- #: core/options-pages.php:1255
172
  msgid "Update"
173
  msgstr "Werk bij"
174
 
175
  # @ eml
176
- #: core/options-pages.php:404 core/options-pages.php:1193
177
- #: core/options-pages.php:1256
178
  msgid "Add New"
179
  msgstr "Voeg Nieuw Toe"
180
 
181
  # @ eml
182
- #: core/options-pages.php:405 core/options-pages.php:1194
183
- #: core/options-pages.php:1257
184
  msgid "New"
185
  msgstr "Nieuw"
186
 
187
  # @ eml
188
- #: core/options-pages.php:406
189
  msgid "Name"
190
  msgstr "Naam"
191
 
192
  # @ eml
193
- #: core/options-pages.php:407 core/options-pages.php:1195
194
- #: core/options-pages.php:1258
195
  msgid "Parent"
196
  msgstr "Parent"
197
 
198
  # @ eml
199
- #: core/options-pages.php:408 core/options-pages.php:644
200
- #: core/options-pages.php:1189 core/options-pages.php:1252
201
- #: core/taxonomies.php:340 enhanced-media-library.php:503
202
  msgid "All"
203
  msgstr "Allemaal"
204
 
205
  # @ eml
206
- #: core/options-pages.php:409 core/options-pages.php:1196
207
- #: core/options-pages.php:1259
208
  msgid "Search"
209
  msgstr "Zoek"
210
 
211
  # @ eml
212
- #: core/options-pages.php:411 core/options-pages.php:1240
213
  msgid "New Taxonomy"
214
  msgstr "Nieuwe Taxonomy"
215
 
216
- #: core/options-pages.php:413
217
  msgid "Remove Taxonomy"
218
  msgstr ""
219
 
220
- #: core/options-pages.php:414
221
  msgid "Taxonomy will be removed."
222
  msgstr ""
223
 
224
- #: core/options-pages.php:415
225
  msgid ""
226
  "Taxonomy terms (categories) will remain intact in the database. If you "
227
  "create a taxonomy with the same name in the future, its terms (categories) "
228
  "will be available again."
229
  msgstr ""
230
 
231
- #: core/options-pages.php:416
232
  msgid "Media items will remain intact."
233
  msgstr ""
234
 
235
- #: core/options-pages.php:417
236
  msgid "Are you still sure?"
237
  msgstr ""
238
 
239
- #: core/options-pages.php:418
240
  msgid "Yes, remove taxonomy"
241
  msgstr ""
242
 
243
- #: core/options-pages.php:420
244
  msgid "Duplicate"
245
  msgstr ""
246
 
247
- #: core/options-pages.php:421
248
  msgid "Taxonomy with the same name already exists. Please chose other one."
249
  msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
250
 
251
- #: core/options-pages.php:423
252
  msgid "Empty Fields"
253
  msgstr ""
254
 
255
- #: core/options-pages.php:424
256
  msgid "Please choose Singular and Plural names for all new taxomonies."
257
  msgstr ""
258
 
259
- #: core/options-pages.php:425
260
  msgid "Please choose Singular name for all new taxomonies."
261
  msgstr ""
262
 
263
- #: core/options-pages.php:426
264
  msgid "Please choose Plural Name for all new taxomonies."
265
  msgstr ""
266
 
267
- #: core/options-pages.php:428
268
  msgid "Ok"
269
  msgstr ""
270
 
271
- #: core/options-pages.php:429 core/options-pages.php:434
272
- #: core/options-pages.php:478 core/options-pages.php:523
273
- #: pro/enhanced-media-library-pro.php:133
274
  msgid "Cancel"
275
  msgstr ""
276
 
277
- #: core/options-pages.php:431 pro/core/options-pages.php:185
278
  msgid "Synchronize Now"
279
  msgstr ""
280
 
281
- #: core/options-pages.php:432 core/options-pages.php:520
282
  msgid "This operation cannot be canceled! Are you still sure?"
283
  msgstr ""
284
 
285
- #: core/options-pages.php:433
286
  msgid "Synchronize"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:435
290
  msgid "Synchronizing..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:473 core/options-pages.php:1579
294
  msgid "Restore WordPress default MIME Types"
295
  msgstr ""
296
 
297
  # @ eml
298
- #: core/options-pages.php:474
299
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
300
  msgstr ""
301
  "Waarschuwing! Al je persoonlijke MIME Types zullen door deze operatie "
302
  "verwijderd worden."
303
 
304
- #: core/options-pages.php:475
305
  msgid "Restore Defaults"
306
  msgstr ""
307
 
308
- #: core/options-pages.php:476
309
  msgid "Restoring..."
310
  msgstr ""
311
 
312
  # @ eml
313
- #: core/options-pages.php:480
314
  msgid "Please fill into all fields."
315
  msgstr "Vul aub alle velden in."
316
 
317
  # @ eml
318
- #: core/options-pages.php:481
319
  msgid "Duplicate extensions or MIME types. Please chose other one."
320
  msgstr "Dubbele extensies of MIME types. Kies aub een andere."
321
 
322
- #: core/options-pages.php:518 core/options-pages.php:635
323
  msgid "Complete Cleanup"
324
  msgstr ""
325
 
326
- #: core/options-pages.php:519
327
  msgid ""
328
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
329
  "plugin data</strong> from the database including backups."
330
  msgstr ""
331
 
332
- #: core/options-pages.php:521
333
  msgid "Yes, delete all data"
334
  msgstr ""
335
 
336
- #: core/options-pages.php:522
337
  msgid "Cleaning..."
338
  msgstr ""
339
 
340
- #: core/options-pages.php:553
341
  msgid "Enhanced Media Library Settings"
342
  msgstr ""
343
 
344
- #: core/options-pages.php:563
345
  msgid "Export"
346
  msgstr ""
347
 
348
- #: core/options-pages.php:567
349
  msgid ""
350
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
351
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -353,15 +354,15 @@ msgid ""
353
  "another website."
354
  msgstr ""
355
 
356
- #: core/options-pages.php:572
357
  msgid "Export Plugin Settings"
358
  msgstr ""
359
 
360
- #: core/options-pages.php:582
361
  msgid "Import"
362
  msgstr ""
363
 
364
- #: core/options-pages.php:586
365
  msgid ""
366
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
367
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -369,173 +370,168 @@ msgid ""
369
  "another website using the export button above."
370
  msgstr ""
371
 
372
- #: core/options-pages.php:587
373
  msgid ""
374
  "All plugin settings will be overridden by the import. You will have a chance "
375
  "to restore current data from an automatic backup in case you are not "
376
  "satisfied with the result of the import."
377
  msgstr ""
378
 
379
- #: core/options-pages.php:594
380
  msgid "Import Plugin Settings"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:606
384
  msgid "Restore"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:612
388
  msgid "No backup available at the moment."
389
  msgstr ""
390
 
391
- #: core/options-pages.php:614
392
  msgid "Backup will be created automatically before any import operation."
393
  msgstr ""
394
 
395
- #: core/options-pages.php:618
396
  msgid ""
397
  "The backup has been automatically created before the latest import operation."
398
  msgstr ""
399
 
400
- #: core/options-pages.php:622
401
  msgid "Restore Settings from the Backup"
402
  msgstr ""
403
 
404
- #: core/options-pages.php:642
405
  msgid "What will be deleted:"
406
  msgstr ""
407
 
408
- #: core/options-pages.php:647
409
  msgid "All plugin options"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:648
413
  msgid "All plugin backups stored in database"
414
  msgstr ""
415
 
416
- #: core/options-pages.php:652
417
  msgid "What will remain intact:"
418
  msgstr ""
419
 
420
- #: core/options-pages.php:653
421
  msgid "All media items"
422
  msgstr ""
423
 
424
- #: core/options-pages.php:654
425
  msgid "All taxonomies not listed above"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:657
429
  msgid ""
430
  "The plugin cannot delete itself because of security reason. Please delete it "
431
  "manually from plugin list after cleanup."
432
  msgstr ""
433
 
434
- #: core/options-pages.php:659
435
  msgid ""
436
  "If you are not sure about this operation please create a backup of your "
437
  "database prior to cleanup!"
438
  msgstr ""
439
 
440
- #: core/options-pages.php:665
441
  msgid "Delete All Data & Deactivate"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:765
445
  msgid "Please upload a file to import settings."
446
  msgstr ""
447
 
448
- #: core/options-pages.php:791
449
  msgid "Plugin settings imported."
450
  msgstr ""
451
 
452
- #: core/options-pages.php:838
453
  msgid "Plugin settings restored from the backup."
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1027
457
  msgid "Media Items Order"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1034
461
  msgid "Order media items by"
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1037 pro/core/medialist.php:28
465
- #: pro/core/medialist.php:73
466
  msgid "Date"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1038 pro/core/medialist.php:31
470
- #: pro/core/medialist.php:76
471
  msgid "Title"
472
  msgstr ""
473
 
474
- #: core/options-pages.php:1039 pro/core/medialist.php:34
475
- #: pro/core/medialist.php:79
476
  msgid "Custom Order"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1041 core/options-pages.php:1053
480
  msgid "For media library and media popups"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1042
484
  msgid "Option allows to change order by drag and drop with Custom Order value."
485
  msgstr ""
486
 
487
- #: core/options-pages.php:1047
488
  msgid "Sort order"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1050 pro/core/medialist.php:47
492
- #: pro/core/medialist.php:92
493
  msgid "Ascending"
494
  msgstr ""
495
 
496
- #: core/options-pages.php:1051 pro/core/medialist.php:50
497
- #: pro/core/medialist.php:95
498
  msgid "Descending"
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1066
502
  msgid "Media Shortcodes"
503
  msgstr ""
504
 
505
- #: core/options-pages.php:1073 core/options-pages.php:1076
506
  msgid "Enhanced media shortcodes"
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1077
510
  msgid ""
511
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
512
  "upload date, and media items number limit"
513
  msgstr ""
514
 
515
- #: core/options-pages.php:1078
516
  msgid "Gallery example:"
517
  msgstr ""
518
 
519
- #: core/options-pages.php:1079
520
  msgid "Audio playlist example:"
521
  msgstr ""
522
 
523
- #: core/options-pages.php:1080
524
  msgid "Video playlist example:"
525
  msgstr ""
526
 
527
- #: core/options-pages.php:1082
528
  #, php-format
529
  msgid ""
530
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
531
  msgstr ""
532
 
533
- #: core/options-pages.php:1084
534
  #, php-format
535
  msgid "%sLearn more%s."
536
  msgstr ""
537
 
538
- #: core/options-pages.php:1086
539
  #, php-format
540
  msgid ""
541
  "Please check out your gallery front-end and back-end functionality once this "
@@ -544,256 +540,256 @@ msgid ""
544
  msgstr ""
545
 
546
  # @ eml
547
- #: core/options-pages.php:1155 core/options-pages.php:1302
548
  msgid "Assign following taxonomies to Media Library:"
549
  msgstr "Ken de volgende taxonomies toe aan de Media Library:"
550
 
551
  # @ eml
552
- #: core/options-pages.php:1174 core/options-pages.php:1240
553
- #: core/options-pages.php:1324
554
  msgid "Assign Taxonomy"
555
  msgstr "Toekennen Taxonomie"
556
 
557
  # @ eml
558
- #: core/options-pages.php:1175 core/options-pages.php:1325
559
  msgid "Edit Taxonomy"
560
  msgstr "Bewerk Taxonomie"
561
 
562
  # @ eml
563
- #: core/options-pages.php:1179 core/options-pages.php:1242
564
  msgid "Delete Taxonomy"
565
  msgstr "Verwijder Taxonomie"
566
 
567
  # @ eml
568
- #: core/options-pages.php:1184 core/options-pages.php:1247
569
  msgid "Labels"
570
  msgstr "Labels"
571
 
572
  # @ eml
573
- #: core/options-pages.php:1186 core/options-pages.php:1249
574
  msgid "Singular"
575
  msgstr "Enkelvoud"
576
 
577
  # @ eml
578
- #: core/options-pages.php:1187 core/options-pages.php:1250
579
  msgid "Plural"
580
  msgstr "Meervoud"
581
 
582
  # @ eml
583
- #: core/options-pages.php:1188 core/options-pages.php:1251
584
  msgid "Menu Name"
585
  msgstr "Menu Naam"
586
 
587
  # @ eml
588
- #: core/options-pages.php:1201 core/options-pages.php:1224
589
- #: core/options-pages.php:1264 core/options-pages.php:1328
590
  msgid "Settings"
591
  msgstr "Instellingen"
592
 
593
- #: core/options-pages.php:1203 core/options-pages.php:1266
594
  msgid "Taxonomy Name"
595
  msgstr ""
596
 
597
  # @ eml
598
- #: core/options-pages.php:1204 core/options-pages.php:1267
599
  msgid "Hierarchical"
600
  msgstr "Hiërarchisch"
601
 
602
- #: core/options-pages.php:1205 core/options-pages.php:1268
603
  msgid "Column for List View"
604
  msgstr ""
605
 
606
- #: core/options-pages.php:1206 core/options-pages.php:1226
607
- #: core/options-pages.php:1269 core/options-pages.php:1330
608
  msgid "Filter for List View"
609
  msgstr ""
610
 
611
- #: core/options-pages.php:1207 core/options-pages.php:1227
612
- #: core/options-pages.php:1270 core/options-pages.php:1331
613
  msgid "Filter for Grid View / Media Popup"
614
  msgstr ""
615
 
616
- #: core/options-pages.php:1208 core/options-pages.php:1228
617
- #: core/options-pages.php:1271 core/options-pages.php:1332
618
  msgid "Edit in Media Popup"
619
  msgstr ""
620
 
621
  # @ eml
622
- #: core/options-pages.php:1209 core/options-pages.php:1272
623
  msgid "Show in Nav Menu"
624
  msgstr "Toon in Nav Menu"
625
 
626
- #: core/options-pages.php:1210 core/options-pages.php:1273
627
  msgid "Remember Terms Order (sort)"
628
  msgstr ""
629
 
630
- #: core/options-pages.php:1211 core/options-pages.php:1274
631
  msgid "Show in REST"
632
  msgstr ""
633
 
634
- #: core/options-pages.php:1212 core/options-pages.php:1275
635
  msgid "Rewrite Slug"
636
  msgstr ""
637
 
638
- #: core/options-pages.php:1213 core/options-pages.php:1276
639
  msgid "Slug with Front"
640
  msgstr ""
641
 
642
  # @ eml
643
- #: core/options-pages.php:1288
644
  msgid "Add New Taxonomy"
645
  msgstr "Voeg Nieuwe Taxonomie Toe"
646
 
647
  # @ eml
648
- #: core/options-pages.php:1298
649
  msgid "Non-Media Taxonomies"
650
  msgstr "Niet-Media Taxonomies"
651
 
652
- #: core/options-pages.php:1361
653
  msgid "Options"
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1371 core/options-pages.php:1374
657
  msgid "Taxonomy archive pages"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1375
661
  msgid "Turn on media taxonomy archive pages on the front-end"
662
  msgstr ""
663
 
664
- #: core/options-pages.php:1376
665
  msgid ""
666
  "Re-save your permalink settings after this option change to make it work."
667
  msgstr ""
668
 
669
- #: core/options-pages.php:1382 core/options-pages.php:1385
670
  msgid "Assign all like hierarchical"
671
  msgstr ""
672
 
673
- #: core/options-pages.php:1386
674
  msgid ""
675
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
676
  msgstr ""
677
 
678
- #: core/options-pages.php:1392 core/options-pages.php:1395
679
  msgid "Force filters"
680
  msgstr ""
681
 
682
- #: core/options-pages.php:1396
683
  msgid "Show media filters for ANY Media Popup"
684
  msgstr ""
685
 
686
- #: core/options-pages.php:1397
687
  msgid "Try this if filters are not shown for third-party plugins or themes."
688
  msgstr ""
689
 
690
- #: core/options-pages.php:1403 core/options-pages.php:1406
691
  msgid "Show count"
692
  msgstr ""
693
 
694
- #: core/options-pages.php:1407
695
  msgid "Show item count per category for media filters"
696
  msgstr ""
697
 
698
  # @ eml
699
- #: core/options-pages.php:1461
700
  msgid "Add New MIME Type"
701
  msgstr "Voeg Nieuw MIME Type Toe"
702
 
703
  # @ eml
704
- #: core/options-pages.php:1481 core/options-pages.php:1536
705
  msgid "Extension"
706
  msgstr "Extensie"
707
 
708
  # @ eml
709
- #: core/options-pages.php:1482 core/options-pages.php:1537
710
  msgid "MIME Type"
711
  msgstr "MIME Type"
712
 
713
  # @ eml
714
- #: core/options-pages.php:1483 core/options-pages.php:1538
715
  msgid "Singular Label"
716
  msgstr "Enkelvoud Label"
717
 
718
  # @ eml
719
- #: core/options-pages.php:1484 core/options-pages.php:1539
720
  msgid "Plural Label"
721
  msgstr "Meervoud Label"
722
 
723
  # @ eml
724
- #: core/options-pages.php:1485 core/options-pages.php:1515
725
- #: core/options-pages.php:1528 core/options-pages.php:1540
726
  msgid "Add Filter"
727
  msgstr "Voeg Filter Toe"
728
 
729
  # @ eml
730
- #: core/options-pages.php:1486 core/options-pages.php:1516
731
- #: core/options-pages.php:1529 core/options-pages.php:1541
732
  msgid "Allow Upload"
733
  msgstr "Sta Upload Toe"
734
 
735
  # @ eml
736
- #: core/options-pages.php:1517 core/options-pages.php:1530
737
  msgid "Delete MIME Type"
738
  msgstr "Verwijder MIME Type"
739
 
740
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
741
  msgid "Save Changes"
742
  msgstr ""
743
 
744
- #: core/options-pages.php:1607
745
  msgid "Changelog"
746
  msgstr ""
747
 
748
- #: core/options-pages.php:1608
749
  msgid "What's new in"
750
  msgstr ""
751
 
752
- #: core/options-pages.php:1608
753
  msgid "version"
754
  msgstr ""
755
 
756
- #: core/options-pages.php:1611
757
  msgid "More features under the hood"
758
  msgstr ""
759
 
760
- #: core/options-pages.php:1613
761
  msgid "Support"
762
  msgstr ""
763
 
764
- #: core/options-pages.php:1614
765
  msgid "Feel free to ask for help on"
766
  msgstr ""
767
 
768
- #: core/options-pages.php:1614
769
  msgid "Support is free for both versions of the plugin."
770
  msgstr ""
771
 
772
- #: core/options-pages.php:1616
773
  msgid "Plugin rating"
774
  msgstr ""
775
 
776
- #: core/options-pages.php:1617
777
  msgid "Please"
778
  msgstr ""
779
 
780
- #: core/options-pages.php:1617
781
  msgid "vote for the plugin"
782
  msgstr ""
783
 
784
- #: core/options-pages.php:1617
785
  msgid "Thanks!"
786
  msgstr ""
787
 
788
- #: core/options-pages.php:1619
789
  msgid "Other plugins you may find useful"
790
  msgstr ""
791
 
792
- #: core/options-pages.php:1658
793
  msgid "Utility"
794
  msgstr ""
795
 
796
- #: core/options-pages.php:1681
797
  msgid "Vote!"
798
  msgstr ""
799
 
@@ -806,351 +802,96 @@ msgid "Media Library settings saved."
806
  msgstr ""
807
 
808
  #: core/taxonomies.php:333 core/taxonomies.php:339
809
- #: enhanced-media-library.php:502
810
  msgid "Filter by"
811
  msgstr ""
812
 
813
- #: core/taxonomies.php:341 enhanced-media-library.php:504
814
  msgid "Not in a"
815
  msgstr ""
816
 
817
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
818
- msgid "All Uncategorized"
819
- msgstr ""
820
-
821
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
822
- msgid "Reset All Filters"
823
- msgstr ""
824
-
825
- #: enhanced-media-library.php:535
826
- msgid "Uploaded to post #"
827
- msgstr ""
828
-
829
- #: enhanced-media-library.php:536
830
- msgid "Based On"
831
- msgstr ""
832
-
833
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
834
- msgid "Media Categories"
835
- msgstr ""
836
-
837
- #: enhanced-media-library.php:582
838
- msgid "Media Category"
839
- msgstr ""
840
-
841
- #: enhanced-media-library.php:584
842
- msgid "All Media Categories"
843
- msgstr ""
844
-
845
- #: enhanced-media-library.php:585
846
- msgid "Edit Media Category"
847
- msgstr ""
848
-
849
- #: enhanced-media-library.php:586
850
- msgid "View Media Category"
851
- msgstr ""
852
-
853
- #: enhanced-media-library.php:587
854
- msgid "Update Media Category"
855
- msgstr ""
856
-
857
- #: enhanced-media-library.php:588
858
- msgid "Add New Media Category"
859
- msgstr ""
860
-
861
- #: enhanced-media-library.php:589
862
- msgid "New Media Category Name"
863
- msgstr ""
864
-
865
- #: enhanced-media-library.php:590
866
- msgid "Parent Media Category"
867
- msgstr ""
868
-
869
- #: enhanced-media-library.php:591
870
- msgid "Parent Media Category:"
871
- msgstr ""
872
-
873
- #: enhanced-media-library.php:592
874
- msgid "Search Media Categories"
875
- msgstr ""
876
-
877
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
878
  msgid "Remove"
879
  msgstr ""
880
 
881
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
882
  msgid "Deselect"
883
  msgstr ""
884
 
885
- #: pro/core/bulk-edit.php:105
886
  msgid "Caption this image&hellip;"
887
  msgstr ""
888
 
889
- #: pro/core/bulk-edit.php:109
890
  msgid "Describe this video&hellip;"
891
  msgstr ""
892
 
893
- #: pro/core/bulk-edit.php:111
894
  msgid "Describe this audio file&hellip;"
895
  msgstr ""
896
 
897
- #: pro/core/bulk-edit.php:113
898
  msgid "Describe this media file&hellip;"
899
  msgstr ""
900
 
901
- #: pro/core/bulk-edit.php:122
902
- msgid "Attachments Details"
903
- msgstr ""
904
-
905
- #: pro/core/bulk-edit.php:175
906
- msgid "Select All"
907
- msgstr ""
908
-
909
- #: pro/core/bulk-edit.php:176
910
- msgid "Deselect All"
911
- msgstr ""
912
-
913
- #: pro/core/bulk-edit.php:177
914
- msgid "Delete Selected"
915
- msgstr ""
916
-
917
- #: pro/core/bulk-edit.php:178
918
- msgid "Trash Selected"
919
- msgstr ""
920
-
921
- #: pro/core/bulk-edit.php:179
922
- msgid "Restore Selected"
923
- msgstr ""
924
-
925
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
926
- msgid "Delete Selected Permanently"
927
- msgstr ""
928
-
929
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
930
- msgid "Order By"
931
- msgstr ""
932
-
933
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
934
- msgid "Random"
935
- msgstr ""
936
-
937
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
938
- msgid "Order"
939
- msgstr ""
940
-
941
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
942
- msgid "Limit"
943
- msgstr ""
944
-
945
- #: pro/core/options-pages.php:78
946
- msgid "Your license has been deactivated."
947
- msgstr ""
948
-
949
- #: pro/core/options-pages.php:88
950
- msgid "Please check if your license key is correct and try again."
951
- msgstr ""
952
-
953
- #: pro/core/options-pages.php:104
954
- #, php-format
955
- msgid ""
956
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
957
- "authors</a>."
958
- msgstr ""
959
-
960
- #: pro/core/options-pages.php:119
961
- #, php-format
962
- msgid ""
963
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
964
- "plugin authors</a>."
965
- msgstr ""
966
-
967
- #: pro/core/options-pages.php:130
968
- msgid "You license has been activated."
969
- msgstr ""
970
-
971
- #: pro/core/options-pages.php:184
972
- #, php-format
973
- msgid "Auto-assign media items to parent %s %s on upload"
974
- msgstr ""
975
-
976
- #: pro/core/options-pages.php:185
977
- #, php-format
978
- msgid ""
979
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
980
- "attached to a %s will be assigned to %s of their parent %s. Currently "
981
- "assigned %s will not be saved. Media items that are not attached to any %s "
982
- "will not be affected."
983
- msgstr ""
984
-
985
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
986
- msgid "Bulk Edit"
987
- msgstr ""
988
-
989
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
990
- msgid "Turn off 'Save Changes' button"
991
- msgstr ""
992
-
993
- #: pro/core/options-pages.php:220
994
- msgid "Save changes on the fly"
995
- msgstr ""
996
-
997
- #: pro/core/options-pages.php:221
998
- msgid ""
999
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
1000
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
1001
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
1002
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
1003
- "files / taxonomies with this option turned on."
1004
- msgstr ""
1005
-
1006
- #: pro/core/options-pages.php:222
1007
- msgid ""
1008
- "Strongly NOT recommended option if you work with more than hundred of files "
1009
- "at a time."
1010
- msgstr ""
1011
-
1012
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
1013
- msgid "License Key"
1014
- msgstr ""
1015
-
1016
- #: pro/core/options-pages.php:273
1017
- #, php-format
1018
- msgid ""
1019
- "To unlock updates please enter your license key below. You can get your "
1020
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
1021
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
1022
- msgstr ""
1023
-
1024
- #: pro/core/options-pages.php:283
1025
- msgid "Activate License"
1026
- msgstr ""
1027
-
1028
- #: pro/core/options-pages.php:290
1029
- msgid "Your license is active!"
1030
- msgstr ""
1031
-
1032
- #: pro/core/options-pages.php:294
1033
- msgid "Deactivate License"
1034
- msgstr ""
1035
-
1036
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1037
- msgid ""
1038
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1039
- "this server&#8217;s configuration. If you continue to have problems, please "
1040
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1041
- msgstr ""
1042
-
1043
- #: pro/core/update.php:113
1044
- msgid ""
1045
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1046
- "contact your server administrator.)"
1047
- msgstr ""
1048
-
1049
- #: pro/core/update.php:181
1050
- #, php-format
1051
- msgid ""
1052
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1053
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1054
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1055
- msgstr ""
1056
-
1057
- #: pro/enhanced-media-library-pro.php:119
1058
- msgid "ALL files belong to this item"
1059
- msgstr ""
1060
-
1061
- #: pro/enhanced-media-library-pro.php:120
1062
- msgid "SOME files belong to this item"
1063
- msgstr ""
1064
-
1065
- #: pro/enhanced-media-library-pro.php:121
1066
- msgid "NO files belong to this item"
1067
- msgstr ""
1068
-
1069
- #: pro/enhanced-media-library-pro.php:122
1070
- msgid "Changes saved."
1071
- msgstr ""
1072
-
1073
- #: pro/enhanced-media-library-pro.php:123
1074
- msgid "Something went wrong."
1075
- msgstr ""
1076
-
1077
- #: pro/enhanced-media-library-pro.php:126
1078
- msgid "Edit Media Files"
1079
- msgstr ""
1080
-
1081
- #: pro/enhanced-media-library-pro.php:129
1082
- msgid "Selecting"
1083
  msgstr ""
1084
 
1085
- #: pro/enhanced-media-library-pro.php:131
1086
- msgid "You are about to permanently delete all selected items."
1087
  msgstr ""
1088
 
1089
- #: pro/enhanced-media-library-pro.php:132
1090
- msgid "Delete"
1091
  msgstr ""
1092
 
1093
- #: pro/enhanced-media-library-pro.php:134
1094
- msgid "Moving to Trash"
1095
  msgstr ""
1096
 
1097
- #: pro/enhanced-media-library-pro.php:135
1098
- msgid "Restoring"
1099
  msgstr ""
1100
 
1101
- #: pro/enhanced-media-library-pro.php:136
1102
- msgid "Deleting"
1103
  msgstr ""
1104
 
1105
- #: pro/enhanced-media-library-pro.php:160
1106
- msgid "Create a filter-based gallery"
1107
  msgstr ""
1108
 
1109
- #: pro/enhanced-media-library-pro.php:161
1110
- msgid "Create a filter-based playlist"
1111
  msgstr ""
1112
 
1113
- #: pro/enhanced-media-library-pro.php:162
1114
- msgid "Create a filter-based video playlist"
1115
  msgstr ""
1116
 
1117
- #: pro/enhanced-media-library-pro.php:240
1118
- msgid ""
1119
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1120
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1121
- "will remain intact."
1122
  msgstr ""
1123
 
1124
- #: pro/enhanced-media-library-pro.php:240
1125
- msgid "Return to Plugins"
1126
  msgstr ""
1127
 
1128
- #: pro/enhanced-media-library-pro.php:291
1129
- msgid ""
1130
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1131
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1132
- "be active. Please network deactivate and delete the free versions of the "
1133
- "plugin. All your data will remain intact."
1134
  msgstr ""
1135
 
1136
- #: pro/enhanced-media-library-pro.php:308
1137
- msgid ""
1138
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1139
- "be active. Please deactivate and delete the free version of the plugin. All "
1140
- "your data will remain intact."
1141
  msgstr ""
1142
 
1143
- #: pro/enhanced-media-library-pro.php:324
1144
- msgid ""
1145
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1146
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1147
- "version to be active. Please deactivate (or network deactivate) and delete "
1148
- "the free version of the plugin for this site. All your data will remail "
1149
- "intact."
1150
  msgstr ""
1151
 
1152
- #. Plugin Name of the plugin/theme
1153
- msgid "Enhanced Media Library PRO"
1154
  msgstr ""
1155
 
1156
  #. Plugin URI of the plugin/theme
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library v1.0.4\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
5
+ "POT-Creation-Date: 2017-01-13 03:04+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:04+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: De B.A.A.T. <de_baat@de-baat.nl>\n"
9
  "Language: nl_NL\n"
35
  msgstr[1] ""
36
 
37
  # @ eml
38
+ #: core/options-pages.php:97 core/options-pages.php:220
39
+ #: core/options-pages.php:313 core/options-pages.php:1080
40
+ #: core/options-pages.php:1204 core/options-pages.php:1529
41
+ #: core/options-pages.php:1729
42
  msgid "Media Settings"
43
  msgstr "Media Instellingen"
44
 
45
+ #: core/options-pages.php:106 core/options-pages.php:285
46
  msgid "Media Library"
47
  msgstr ""
48
 
52
  msgstr "Taxonomies"
53
 
54
  # @ eml
55
+ #: core/options-pages.php:124 core/options-pages.php:287
56
  msgid "MIME Types"
57
  msgstr "MIME Types"
58
 
59
  # @ eml
60
+ #. Plugin Name of the plugin/theme
61
  #: core/options-pages.php:135 core/options-pages.php:136
62
  msgid "Enhanced Media Library"
63
  msgstr ""
64
 
65
+ #: core/options-pages.php:284
66
  msgid "General"
67
  msgstr ""
68
 
69
  # @ eml
70
+ #: core/options-pages.php:286 core/options-pages.php:1225
71
  msgid "Media Taxonomies"
72
  msgstr "Media Taxonomies"
73
 
74
  # @ eml
75
+ #: core/options-pages.php:310 core/options-pages.php:622
76
+ #: core/options-pages.php:1076 core/options-pages.php:1201
77
+ #: core/options-pages.php:1525
78
  msgid "You do not have sufficient permissions to access this page."
79
  msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
80
 
81
+ #: core/options-pages.php:324
82
  msgid "Image sizes"
83
  msgstr ""
84
 
85
+ #: core/options-pages.php:325
86
  msgid ""
87
  "The sizes listed below determine the maximum dimensions in pixels to use "
88
  "when adding an image to the Media Library."
89
  msgstr ""
90
 
91
+ #: core/options-pages.php:329
92
  msgid "Thumbnail size"
93
  msgstr ""
94
 
95
+ #: core/options-pages.php:331
96
  msgid "Width"
97
  msgstr ""
98
 
99
+ #: core/options-pages.php:333
100
  msgid "Height"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:336
104
  msgid ""
105
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
106
  msgstr ""
107
 
108
+ #: core/options-pages.php:341 core/options-pages.php:342
109
  msgid "Medium size"
110
  msgstr ""
111
 
112
+ #: core/options-pages.php:343 core/options-pages.php:353
113
  msgid "Max Width"
114
  msgstr ""
115
 
116
+ #: core/options-pages.php:345 core/options-pages.php:355
117
  msgid "Max Height"
118
  msgstr ""
119
 
120
+ #: core/options-pages.php:351 core/options-pages.php:352
121
  msgid "Large size"
122
  msgstr ""
123
 
124
+ #: core/options-pages.php:368
125
  msgid "Embeds"
126
  msgstr ""
127
 
128
+ #: core/options-pages.php:375
129
  msgid "Uploading Files"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:382
133
  msgid "Store uploads in this folder"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:386
137
  #, php-format
138
  msgid "Default is %s"
139
  msgstr ""
140
 
141
+ #: core/options-pages.php:392
142
  msgid "Full URL path to files"
143
  msgstr ""
144
 
145
+ #: core/options-pages.php:394
146
  msgid "Configuring this is optional. By default, it should be blank."
147
  msgstr ""
148
 
149
+ #: core/options-pages.php:402
150
  msgid "Organize my uploads into month- and year-based folders"
151
  msgstr ""
152
 
153
  # @ eml
154
+ #: core/options-pages.php:474 core/options-pages.php:1249
155
+ #: core/options-pages.php:1264 core/options-pages.php:1327
156
+ #: core/options-pages.php:1399
157
  msgid "Edit"
158
  msgstr "Bewerk"
159
 
160
  # @ eml
161
+ #: core/options-pages.php:475
162
  msgid "Close"
163
  msgstr "Sluit"
164
 
165
  # @ eml
166
+ #: core/options-pages.php:476 core/options-pages.php:1265
167
+ #: core/options-pages.php:1328
168
  msgid "View"
169
  msgstr "Bekijk"
170
 
171
  # @ eml
172
+ #: core/options-pages.php:477 core/options-pages.php:1266
173
+ #: core/options-pages.php:1329
174
  msgid "Update"
175
  msgstr "Werk bij"
176
 
177
  # @ eml
178
+ #: core/options-pages.php:478 core/options-pages.php:1267
179
+ #: core/options-pages.php:1330
180
  msgid "Add New"
181
  msgstr "Voeg Nieuw Toe"
182
 
183
  # @ eml
184
+ #: core/options-pages.php:479 core/options-pages.php:1268
185
+ #: core/options-pages.php:1331
186
  msgid "New"
187
  msgstr "Nieuw"
188
 
189
  # @ eml
190
+ #: core/options-pages.php:480
191
  msgid "Name"
192
  msgstr "Naam"
193
 
194
  # @ eml
195
+ #: core/options-pages.php:481 core/options-pages.php:1269
196
+ #: core/options-pages.php:1332
197
  msgid "Parent"
198
  msgstr "Parent"
199
 
200
  # @ eml
201
+ #: core/options-pages.php:482 core/options-pages.php:718
202
+ #: core/options-pages.php:1263 core/options-pages.php:1326
203
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
204
  msgid "All"
205
  msgstr "Allemaal"
206
 
207
  # @ eml
208
+ #: core/options-pages.php:483 core/options-pages.php:1270
209
+ #: core/options-pages.php:1333
210
  msgid "Search"
211
  msgstr "Zoek"
212
 
213
  # @ eml
214
+ #: core/options-pages.php:485 core/options-pages.php:1314
215
  msgid "New Taxonomy"
216
  msgstr "Nieuwe Taxonomy"
217
 
218
+ #: core/options-pages.php:487
219
  msgid "Remove Taxonomy"
220
  msgstr ""
221
 
222
+ #: core/options-pages.php:488
223
  msgid "Taxonomy will be removed."
224
  msgstr ""
225
 
226
+ #: core/options-pages.php:489
227
  msgid ""
228
  "Taxonomy terms (categories) will remain intact in the database. If you "
229
  "create a taxonomy with the same name in the future, its terms (categories) "
230
  "will be available again."
231
  msgstr ""
232
 
233
+ #: core/options-pages.php:490
234
  msgid "Media items will remain intact."
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:491
238
  msgid "Are you still sure?"
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:492
242
  msgid "Yes, remove taxonomy"
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:494
246
  msgid "Duplicate"
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:495
250
  msgid "Taxonomy with the same name already exists. Please chose other one."
251
  msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
252
 
253
+ #: core/options-pages.php:497
254
  msgid "Empty Fields"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:498
258
  msgid "Please choose Singular and Plural names for all new taxomonies."
259
  msgstr ""
260
 
261
+ #: core/options-pages.php:499
262
  msgid "Please choose Singular name for all new taxomonies."
263
  msgstr ""
264
 
265
+ #: core/options-pages.php:500
266
  msgid "Please choose Plural Name for all new taxomonies."
267
  msgstr ""
268
 
269
+ #: core/options-pages.php:502
270
  msgid "Ok"
271
  msgstr ""
272
 
273
+ #: core/options-pages.php:503 core/options-pages.php:508
274
+ #: core/options-pages.php:552 core/options-pages.php:597
 
275
  msgid "Cancel"
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:505
279
  msgid "Synchronize Now"
280
  msgstr ""
281
 
282
+ #: core/options-pages.php:506 core/options-pages.php:594
283
  msgid "This operation cannot be canceled! Are you still sure?"
284
  msgstr ""
285
 
286
+ #: core/options-pages.php:507
287
  msgid "Synchronize"
288
  msgstr ""
289
 
290
+ #: core/options-pages.php:509
291
  msgid "Synchronizing..."
292
  msgstr ""
293
 
294
+ #: core/options-pages.php:547 core/options-pages.php:1653
295
  msgid "Restore WordPress default MIME Types"
296
  msgstr ""
297
 
298
  # @ eml
299
+ #: core/options-pages.php:548
300
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
301
  msgstr ""
302
  "Waarschuwing! Al je persoonlijke MIME Types zullen door deze operatie "
303
  "verwijderd worden."
304
 
305
+ #: core/options-pages.php:549
306
  msgid "Restore Defaults"
307
  msgstr ""
308
 
309
+ #: core/options-pages.php:550
310
  msgid "Restoring..."
311
  msgstr ""
312
 
313
  # @ eml
314
+ #: core/options-pages.php:554
315
  msgid "Please fill into all fields."
316
  msgstr "Vul aub alle velden in."
317
 
318
  # @ eml
319
+ #: core/options-pages.php:555
320
  msgid "Duplicate extensions or MIME types. Please chose other one."
321
  msgstr "Dubbele extensies of MIME types. Kies aub een andere."
322
 
323
+ #: core/options-pages.php:592 core/options-pages.php:709
324
  msgid "Complete Cleanup"
325
  msgstr ""
326
 
327
+ #: core/options-pages.php:593
328
  msgid ""
329
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
330
  "plugin data</strong> from the database including backups."
331
  msgstr ""
332
 
333
+ #: core/options-pages.php:595
334
  msgid "Yes, delete all data"
335
  msgstr ""
336
 
337
+ #: core/options-pages.php:596
338
  msgid "Cleaning..."
339
  msgstr ""
340
 
341
+ #: core/options-pages.php:627
342
  msgid "Enhanced Media Library Settings"
343
  msgstr ""
344
 
345
+ #: core/options-pages.php:637
346
  msgid "Export"
347
  msgstr ""
348
 
349
+ #: core/options-pages.php:641
350
  msgid ""
351
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
352
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
354
  "another website."
355
  msgstr ""
356
 
357
+ #: core/options-pages.php:646
358
  msgid "Export Plugin Settings"
359
  msgstr ""
360
 
361
+ #: core/options-pages.php:656
362
  msgid "Import"
363
  msgstr ""
364
 
365
+ #: core/options-pages.php:660
366
  msgid ""
367
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
368
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
370
  "another website using the export button above."
371
  msgstr ""
372
 
373
+ #: core/options-pages.php:661
374
  msgid ""
375
  "All plugin settings will be overridden by the import. You will have a chance "
376
  "to restore current data from an automatic backup in case you are not "
377
  "satisfied with the result of the import."
378
  msgstr ""
379
 
380
+ #: core/options-pages.php:668
381
  msgid "Import Plugin Settings"
382
  msgstr ""
383
 
384
+ #: core/options-pages.php:680
385
  msgid "Restore"
386
  msgstr ""
387
 
388
+ #: core/options-pages.php:686
389
  msgid "No backup available at the moment."
390
  msgstr ""
391
 
392
+ #: core/options-pages.php:688
393
  msgid "Backup will be created automatically before any import operation."
394
  msgstr ""
395
 
396
+ #: core/options-pages.php:692
397
  msgid ""
398
  "The backup has been automatically created before the latest import operation."
399
  msgstr ""
400
 
401
+ #: core/options-pages.php:696
402
  msgid "Restore Settings from the Backup"
403
  msgstr ""
404
 
405
+ #: core/options-pages.php:716
406
  msgid "What will be deleted:"
407
  msgstr ""
408
 
409
+ #: core/options-pages.php:721
410
  msgid "All plugin options"
411
  msgstr ""
412
 
413
+ #: core/options-pages.php:722
414
  msgid "All plugin backups stored in database"
415
  msgstr ""
416
 
417
+ #: core/options-pages.php:726
418
  msgid "What will remain intact:"
419
  msgstr ""
420
 
421
+ #: core/options-pages.php:727
422
  msgid "All media items"
423
  msgstr ""
424
 
425
+ #: core/options-pages.php:728
426
  msgid "All taxonomies not listed above"
427
  msgstr ""
428
 
429
+ #: core/options-pages.php:731
430
  msgid ""
431
  "The plugin cannot delete itself because of security reason. Please delete it "
432
  "manually from plugin list after cleanup."
433
  msgstr ""
434
 
435
+ #: core/options-pages.php:733
436
  msgid ""
437
  "If you are not sure about this operation please create a backup of your "
438
  "database prior to cleanup!"
439
  msgstr ""
440
 
441
+ #: core/options-pages.php:739
442
  msgid "Delete All Data & Deactivate"
443
  msgstr ""
444
 
445
+ #: core/options-pages.php:839
446
  msgid "Please upload a file to import settings."
447
  msgstr ""
448
 
449
+ #: core/options-pages.php:865
450
  msgid "Plugin settings imported."
451
  msgstr ""
452
 
453
+ #: core/options-pages.php:912
454
  msgid "Plugin settings restored from the backup."
455
  msgstr ""
456
 
457
+ #: core/options-pages.php:1101
458
  msgid "Media Items Order"
459
  msgstr ""
460
 
461
+ #: core/options-pages.php:1108
462
  msgid "Order media items by"
463
  msgstr ""
464
 
465
+ #: core/options-pages.php:1111
 
466
  msgid "Date"
467
  msgstr ""
468
 
469
+ #: core/options-pages.php:1112
 
470
  msgid "Title"
471
  msgstr ""
472
 
473
+ #: core/options-pages.php:1113
 
474
  msgid "Custom Order"
475
  msgstr ""
476
 
477
+ #: core/options-pages.php:1115 core/options-pages.php:1127
478
  msgid "For media library and media popups"
479
  msgstr ""
480
 
481
+ #: core/options-pages.php:1116
482
  msgid "Option allows to change order by drag and drop with Custom Order value."
483
  msgstr ""
484
 
485
+ #: core/options-pages.php:1121
486
  msgid "Sort order"
487
  msgstr ""
488
 
489
+ #: core/options-pages.php:1124
 
490
  msgid "Ascending"
491
  msgstr ""
492
 
493
+ #: core/options-pages.php:1125
 
494
  msgid "Descending"
495
  msgstr ""
496
 
497
+ #: core/options-pages.php:1140
498
  msgid "Media Shortcodes"
499
  msgstr ""
500
 
501
+ #: core/options-pages.php:1147 core/options-pages.php:1150
502
  msgid "Enhanced media shortcodes"
503
  msgstr ""
504
 
505
+ #: core/options-pages.php:1151
506
  msgid ""
507
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
508
  "upload date, and media items number limit"
509
  msgstr ""
510
 
511
+ #: core/options-pages.php:1152
512
  msgid "Gallery example:"
513
  msgstr ""
514
 
515
+ #: core/options-pages.php:1153
516
  msgid "Audio playlist example:"
517
  msgstr ""
518
 
519
+ #: core/options-pages.php:1154
520
  msgid "Video playlist example:"
521
  msgstr ""
522
 
523
+ #: core/options-pages.php:1156
524
  #, php-format
525
  msgid ""
526
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
527
  msgstr ""
528
 
529
+ #: core/options-pages.php:1158
530
  #, php-format
531
  msgid "%sLearn more%s."
532
  msgstr ""
533
 
534
+ #: core/options-pages.php:1160
535
  #, php-format
536
  msgid ""
537
  "Please check out your gallery front-end and back-end functionality once this "
540
  msgstr ""
541
 
542
  # @ eml
543
+ #: core/options-pages.php:1229 core/options-pages.php:1376
544
  msgid "Assign following taxonomies to Media Library:"
545
  msgstr "Ken de volgende taxonomies toe aan de Media Library:"
546
 
547
  # @ eml
548
+ #: core/options-pages.php:1248 core/options-pages.php:1314
549
+ #: core/options-pages.php:1398
550
  msgid "Assign Taxonomy"
551
  msgstr "Toekennen Taxonomie"
552
 
553
  # @ eml
554
+ #: core/options-pages.php:1249 core/options-pages.php:1399
555
  msgid "Edit Taxonomy"
556
  msgstr "Bewerk Taxonomie"
557
 
558
  # @ eml
559
+ #: core/options-pages.php:1253 core/options-pages.php:1316
560
  msgid "Delete Taxonomy"
561
  msgstr "Verwijder Taxonomie"
562
 
563
  # @ eml
564
+ #: core/options-pages.php:1258 core/options-pages.php:1321
565
  msgid "Labels"
566
  msgstr "Labels"
567
 
568
  # @ eml
569
+ #: core/options-pages.php:1260 core/options-pages.php:1323
570
  msgid "Singular"
571
  msgstr "Enkelvoud"
572
 
573
  # @ eml
574
+ #: core/options-pages.php:1261 core/options-pages.php:1324
575
  msgid "Plural"
576
  msgstr "Meervoud"
577
 
578
  # @ eml
579
+ #: core/options-pages.php:1262 core/options-pages.php:1325
580
  msgid "Menu Name"
581
  msgstr "Menu Naam"
582
 
583
  # @ eml
584
+ #: core/options-pages.php:1275 core/options-pages.php:1298
585
+ #: core/options-pages.php:1338 core/options-pages.php:1402
586
  msgid "Settings"
587
  msgstr "Instellingen"
588
 
589
+ #: core/options-pages.php:1277 core/options-pages.php:1340
590
  msgid "Taxonomy Name"
591
  msgstr ""
592
 
593
  # @ eml
594
+ #: core/options-pages.php:1278 core/options-pages.php:1341
595
  msgid "Hierarchical"
596
  msgstr "Hiërarchisch"
597
 
598
+ #: core/options-pages.php:1279 core/options-pages.php:1342
599
  msgid "Column for List View"
600
  msgstr ""
601
 
602
+ #: core/options-pages.php:1280 core/options-pages.php:1300
603
+ #: core/options-pages.php:1343 core/options-pages.php:1404
604
  msgid "Filter for List View"
605
  msgstr ""
606
 
607
+ #: core/options-pages.php:1281 core/options-pages.php:1301
608
+ #: core/options-pages.php:1344 core/options-pages.php:1405
609
  msgid "Filter for Grid View / Media Popup"
610
  msgstr ""
611
 
612
+ #: core/options-pages.php:1282 core/options-pages.php:1302
613
+ #: core/options-pages.php:1345 core/options-pages.php:1406
614
  msgid "Edit in Media Popup"
615
  msgstr ""
616
 
617
  # @ eml
618
+ #: core/options-pages.php:1283 core/options-pages.php:1346
619
  msgid "Show in Nav Menu"
620
  msgstr "Toon in Nav Menu"
621
 
622
+ #: core/options-pages.php:1284 core/options-pages.php:1347
623
  msgid "Remember Terms Order (sort)"
624
  msgstr ""
625
 
626
+ #: core/options-pages.php:1285 core/options-pages.php:1348
627
  msgid "Show in REST"
628
  msgstr ""
629
 
630
+ #: core/options-pages.php:1286 core/options-pages.php:1349
631
  msgid "Rewrite Slug"
632
  msgstr ""
633
 
634
+ #: core/options-pages.php:1287 core/options-pages.php:1350
635
  msgid "Slug with Front"
636
  msgstr ""
637
 
638
  # @ eml
639
+ #: core/options-pages.php:1362
640
  msgid "Add New Taxonomy"
641
  msgstr "Voeg Nieuwe Taxonomie Toe"
642
 
643
  # @ eml
644
+ #: core/options-pages.php:1372
645
  msgid "Non-Media Taxonomies"
646
  msgstr "Niet-Media Taxonomies"
647
 
648
+ #: core/options-pages.php:1435
649
  msgid "Options"
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1445 core/options-pages.php:1448
653
  msgid "Taxonomy archive pages"
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1449
657
  msgid "Turn on media taxonomy archive pages on the front-end"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1450
661
  msgid ""
662
  "Re-save your permalink settings after this option change to make it work."
663
  msgstr ""
664
 
665
+ #: core/options-pages.php:1456 core/options-pages.php:1459
666
  msgid "Assign all like hierarchical"
667
  msgstr ""
668
 
669
+ #: core/options-pages.php:1460
670
  msgid ""
671
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
672
  msgstr ""
673
 
674
+ #: core/options-pages.php:1466 core/options-pages.php:1469
675
  msgid "Force filters"
676
  msgstr ""
677
 
678
+ #: core/options-pages.php:1470
679
  msgid "Show media filters for ANY Media Popup"
680
  msgstr ""
681
 
682
+ #: core/options-pages.php:1471
683
  msgid "Try this if filters are not shown for third-party plugins or themes."
684
  msgstr ""
685
 
686
+ #: core/options-pages.php:1477 core/options-pages.php:1480
687
  msgid "Show count"
688
  msgstr ""
689
 
690
+ #: core/options-pages.php:1481
691
  msgid "Show item count per category for media filters"
692
  msgstr ""
693
 
694
  # @ eml
695
+ #: core/options-pages.php:1535
696
  msgid "Add New MIME Type"
697
  msgstr "Voeg Nieuw MIME Type Toe"
698
 
699
  # @ eml
700
+ #: core/options-pages.php:1555 core/options-pages.php:1610
701
  msgid "Extension"
702
  msgstr "Extensie"
703
 
704
  # @ eml
705
+ #: core/options-pages.php:1556 core/options-pages.php:1611
706
  msgid "MIME Type"
707
  msgstr "MIME Type"
708
 
709
  # @ eml
710
+ #: core/options-pages.php:1557 core/options-pages.php:1612
711
  msgid "Singular Label"
712
  msgstr "Enkelvoud Label"
713
 
714
  # @ eml
715
+ #: core/options-pages.php:1558 core/options-pages.php:1613
716
  msgid "Plural Label"
717
  msgstr "Meervoud Label"
718
 
719
  # @ eml
720
+ #: core/options-pages.php:1559 core/options-pages.php:1589
721
+ #: core/options-pages.php:1602 core/options-pages.php:1614
722
  msgid "Add Filter"
723
  msgstr "Voeg Filter Toe"
724
 
725
  # @ eml
726
+ #: core/options-pages.php:1560 core/options-pages.php:1590
727
+ #: core/options-pages.php:1603 core/options-pages.php:1615
728
  msgid "Allow Upload"
729
  msgstr "Sta Upload Toe"
730
 
731
  # @ eml
732
+ #: core/options-pages.php:1591 core/options-pages.php:1604
733
  msgid "Delete MIME Type"
734
  msgstr "Verwijder MIME Type"
735
 
736
+ #: core/options-pages.php:1651
737
  msgid "Save Changes"
738
  msgstr ""
739
 
740
+ #: core/options-pages.php:1681
741
  msgid "Changelog"
742
  msgstr ""
743
 
744
+ #: core/options-pages.php:1682
745
  msgid "What's new in"
746
  msgstr ""
747
 
748
+ #: core/options-pages.php:1682
749
  msgid "version"
750
  msgstr ""
751
 
752
+ #: core/options-pages.php:1685
753
  msgid "More features under the hood"
754
  msgstr ""
755
 
756
+ #: core/options-pages.php:1687
757
  msgid "Support"
758
  msgstr ""
759
 
760
+ #: core/options-pages.php:1688
761
  msgid "Feel free to ask for help on"
762
  msgstr ""
763
 
764
+ #: core/options-pages.php:1688
765
  msgid "Support is free for both versions of the plugin."
766
  msgstr ""
767
 
768
+ #: core/options-pages.php:1690
769
  msgid "Plugin rating"
770
  msgstr ""
771
 
772
+ #: core/options-pages.php:1691
773
  msgid "Please"
774
  msgstr ""
775
 
776
+ #: core/options-pages.php:1691
777
  msgid "vote for the plugin"
778
  msgstr ""
779
 
780
+ #: core/options-pages.php:1691
781
  msgid "Thanks!"
782
  msgstr ""
783
 
784
+ #: core/options-pages.php:1693
785
  msgid "Other plugins you may find useful"
786
  msgstr ""
787
 
788
+ #: core/options-pages.php:1732
789
  msgid "Utility"
790
  msgstr ""
791
 
792
+ #: core/options-pages.php:1755
793
  msgid "Vote!"
794
  msgstr ""
795
 
802
  msgstr ""
803
 
804
  #: core/taxonomies.php:333 core/taxonomies.php:339
805
+ #: enhanced-media-library.php:508
806
  msgid "Filter by"
807
  msgstr ""
808
 
809
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
810
  msgid "Not in a"
811
  msgstr ""
812
 
813
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
814
  msgid "Remove"
815
  msgstr ""
816
 
817
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
818
  msgid "Deselect"
819
  msgstr ""
820
 
821
+ #: core/taxonomies.php:1337
822
  msgid "Caption this image&hellip;"
823
  msgstr ""
824
 
825
+ #: core/taxonomies.php:1341
826
  msgid "Describe this video&hellip;"
827
  msgstr ""
828
 
829
+ #: core/taxonomies.php:1343
830
  msgid "Describe this audio file&hellip;"
831
  msgstr ""
832
 
833
+ #: core/taxonomies.php:1345
834
  msgid "Describe this media file&hellip;"
835
  msgstr ""
836
 
837
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
838
+ msgid "All Uncategorized"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
839
  msgstr ""
840
 
841
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
842
+ msgid "Reset All Filters"
843
  msgstr ""
844
 
845
+ #: enhanced-media-library.php:541
846
+ msgid "Uploaded to post #"
847
  msgstr ""
848
 
849
+ #: enhanced-media-library.php:542
850
+ msgid "Based On"
851
  msgstr ""
852
 
853
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
854
+ msgid "Media Categories"
855
  msgstr ""
856
 
857
+ #: enhanced-media-library.php:575
858
+ msgid "Media Category"
859
  msgstr ""
860
 
861
+ #: enhanced-media-library.php:577
862
+ msgid "All Media Categories"
863
  msgstr ""
864
 
865
+ #: enhanced-media-library.php:578
866
+ msgid "Edit Media Category"
867
  msgstr ""
868
 
869
+ #: enhanced-media-library.php:579
870
+ msgid "View Media Category"
871
  msgstr ""
872
 
873
+ #: enhanced-media-library.php:580
874
+ msgid "Update Media Category"
 
 
 
875
  msgstr ""
876
 
877
+ #: enhanced-media-library.php:581
878
+ msgid "Add New Media Category"
879
  msgstr ""
880
 
881
+ #: enhanced-media-library.php:582
882
+ msgid "New Media Category Name"
 
 
 
 
883
  msgstr ""
884
 
885
+ #: enhanced-media-library.php:583
886
+ msgid "Parent Media Category"
 
 
 
887
  msgstr ""
888
 
889
+ #: enhanced-media-library.php:584
890
+ msgid "Parent Media Category:"
 
 
 
 
 
891
  msgstr ""
892
 
893
+ #: enhanced-media-library.php:585
894
+ msgid "Search Media Categories"
895
  msgstr ""
896
 
897
  #. Plugin URI of the plugin/theme
languages/enhanced-media-library-pl_PL.mo CHANGED
Binary file
languages/enhanced-media-library-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:38+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:38+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Polish (Poland)\n"
9
  "Language: pl_PL\n"
@@ -33,13 +33,14 @@ msgstr[0] ""
33
  msgstr[1] ""
34
  msgstr[2] ""
35
 
36
- #: core/options-pages.php:97 core/options-pages.php:239
37
- #: core/options-pages.php:1006 core/options-pages.php:1130
38
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
39
  msgid "Media Settings"
40
  msgstr "Ustawienia Mediów"
41
 
42
- #: core/options-pages.php:106 core/options-pages.php:211
43
  msgid "Media Library"
44
  msgstr ""
45
 
@@ -47,286 +48,286 @@ msgstr ""
47
  msgid "Taxonomies"
48
  msgstr "Taksonomie"
49
 
50
- #: core/options-pages.php:124 core/options-pages.php:213
51
  msgid "MIME Types"
52
  msgstr "Typy MIME"
53
 
 
54
  #: core/options-pages.php:135 core/options-pages.php:136
55
  msgid "Enhanced Media Library"
56
  msgstr "Rozszerzona Biblioteka Mediów"
57
 
58
- #: core/options-pages.php:210
59
  msgid "General"
60
  msgstr ""
61
 
62
- #: core/options-pages.php:212 core/options-pages.php:1151
63
  msgid "Media Taxonomies"
64
  msgstr "Taksonomie mediów"
65
 
66
- #: core/options-pages.php:236 core/options-pages.php:548
67
- #: core/options-pages.php:1002 core/options-pages.php:1127
68
- #: core/options-pages.php:1451
69
  msgid "You do not have sufficient permissions to access this page."
70
  msgstr "Nie masz wystarczających uprawnień dostępu do tej strony."
71
 
72
- #: core/options-pages.php:250
73
  msgid "Image sizes"
74
  msgstr ""
75
 
76
- #: core/options-pages.php:251
77
  msgid ""
78
  "The sizes listed below determine the maximum dimensions in pixels to use "
79
  "when adding an image to the Media Library."
80
  msgstr ""
81
 
82
- #: core/options-pages.php:255
83
  msgid "Thumbnail size"
84
  msgstr ""
85
 
86
- #: core/options-pages.php:257
87
  msgid "Width"
88
  msgstr ""
89
 
90
- #: core/options-pages.php:259
91
  msgid "Height"
92
  msgstr ""
93
 
94
- #: core/options-pages.php:262
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
 
99
- #: core/options-pages.php:267 core/options-pages.php:268
100
  msgid "Medium size"
101
  msgstr ""
102
 
103
- #: core/options-pages.php:269 core/options-pages.php:279
104
  msgid "Max Width"
105
  msgstr ""
106
 
107
- #: core/options-pages.php:271 core/options-pages.php:281
108
  msgid "Max Height"
109
  msgstr ""
110
 
111
- #: core/options-pages.php:277 core/options-pages.php:278
112
  msgid "Large size"
113
  msgstr ""
114
 
115
- #: core/options-pages.php:294
116
  msgid "Embeds"
117
  msgstr ""
118
 
119
- #: core/options-pages.php:301
120
  msgid "Uploading Files"
121
  msgstr ""
122
 
123
- #: core/options-pages.php:308
124
  msgid "Store uploads in this folder"
125
  msgstr ""
126
 
127
- #: core/options-pages.php:312
128
  #, php-format
129
  msgid "Default is %s"
130
  msgstr ""
131
 
132
- #: core/options-pages.php:318
133
  msgid "Full URL path to files"
134
  msgstr ""
135
 
136
- #: core/options-pages.php:320
137
  msgid "Configuring this is optional. By default, it should be blank."
138
  msgstr ""
139
 
140
- #: core/options-pages.php:328
141
  msgid "Organize my uploads into month- and year-based folders"
142
  msgstr ""
143
 
144
- #: core/options-pages.php:400 core/options-pages.php:1175
145
- #: core/options-pages.php:1190 core/options-pages.php:1253
146
- #: core/options-pages.php:1325
147
  msgid "Edit"
148
  msgstr "Edytuj"
149
 
150
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
151
  msgid "Close"
152
  msgstr "Zamknij"
153
 
154
- #: core/options-pages.php:402 core/options-pages.php:1191
155
- #: core/options-pages.php:1254
156
  msgid "View"
157
  msgstr "Zobacz"
158
 
159
- #: core/options-pages.php:403 core/options-pages.php:1192
160
- #: core/options-pages.php:1255
161
  msgid "Update"
162
  msgstr "Aktualizuj"
163
 
164
- #: core/options-pages.php:404 core/options-pages.php:1193
165
- #: core/options-pages.php:1256
166
  msgid "Add New"
167
  msgstr "Dodaj nowy"
168
 
169
- #: core/options-pages.php:405 core/options-pages.php:1194
170
- #: core/options-pages.php:1257
171
  msgid "New"
172
  msgstr "Nowy"
173
 
174
- #: core/options-pages.php:406
175
  msgid "Name"
176
  msgstr "Nazwa"
177
 
178
- #: core/options-pages.php:407 core/options-pages.php:1195
179
- #: core/options-pages.php:1258
180
  msgid "Parent"
181
  msgstr "Rodzic"
182
 
183
- #: core/options-pages.php:408 core/options-pages.php:644
184
- #: core/options-pages.php:1189 core/options-pages.php:1252
185
- #: core/taxonomies.php:340 enhanced-media-library.php:503
186
  msgid "All"
187
  msgstr "Wszystkie"
188
 
189
- #: core/options-pages.php:409 core/options-pages.php:1196
190
- #: core/options-pages.php:1259
191
  msgid "Search"
192
  msgstr "Szukaj"
193
 
194
- #: core/options-pages.php:411 core/options-pages.php:1240
195
  msgid "New Taxonomy"
196
  msgstr "Nowa taksonomia"
197
 
198
- #: core/options-pages.php:413
199
  msgid "Remove Taxonomy"
200
  msgstr ""
201
 
202
- #: core/options-pages.php:414
203
  msgid "Taxonomy will be removed."
204
  msgstr ""
205
 
206
- #: core/options-pages.php:415
207
  msgid ""
208
  "Taxonomy terms (categories) will remain intact in the database. If you "
209
  "create a taxonomy with the same name in the future, its terms (categories) "
210
  "will be available again."
211
  msgstr ""
212
 
213
- #: core/options-pages.php:416
214
  msgid "Media items will remain intact."
215
  msgstr ""
216
 
217
- #: core/options-pages.php:417
218
  msgid "Are you still sure?"
219
  msgstr ""
220
 
221
- #: core/options-pages.php:418
222
  msgid "Yes, remove taxonomy"
223
  msgstr ""
224
 
225
- #: core/options-pages.php:420
226
  msgid "Duplicate"
227
  msgstr ""
228
 
229
- #: core/options-pages.php:421
230
  msgid "Taxonomy with the same name already exists. Please chose other one."
231
  msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
232
 
233
- #: core/options-pages.php:423
234
  msgid "Empty Fields"
235
  msgstr ""
236
 
237
- #: core/options-pages.php:424
238
  msgid "Please choose Singular and Plural names for all new taxomonies."
239
  msgstr ""
240
 
241
- #: core/options-pages.php:425
242
  msgid "Please choose Singular name for all new taxomonies."
243
  msgstr ""
244
 
245
- #: core/options-pages.php:426
246
  msgid "Please choose Plural Name for all new taxomonies."
247
  msgstr ""
248
 
249
- #: core/options-pages.php:428
250
  msgid "Ok"
251
  msgstr ""
252
 
253
- #: core/options-pages.php:429 core/options-pages.php:434
254
- #: core/options-pages.php:478 core/options-pages.php:523
255
- #: pro/enhanced-media-library-pro.php:133
256
  msgid "Cancel"
257
  msgstr ""
258
 
259
- #: core/options-pages.php:431 pro/core/options-pages.php:185
260
  msgid "Synchronize Now"
261
  msgstr ""
262
 
263
- #: core/options-pages.php:432 core/options-pages.php:520
264
  msgid "This operation cannot be canceled! Are you still sure?"
265
  msgstr ""
266
 
267
- #: core/options-pages.php:433
268
  msgid "Synchronize"
269
  msgstr ""
270
 
271
- #: core/options-pages.php:435
272
  msgid "Synchronizing..."
273
  msgstr ""
274
 
275
- #: core/options-pages.php:473 core/options-pages.php:1579
276
  msgid "Restore WordPress default MIME Types"
277
  msgstr ""
278
 
279
- #: core/options-pages.php:474
280
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
281
  msgstr ""
282
  "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
283
  "operację. "
284
 
285
- #: core/options-pages.php:475
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:476
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:480
294
  msgid "Please fill into all fields."
295
  msgstr "Proszę wypełnić wszystkie pola"
296
 
297
- #: core/options-pages.php:481
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
  "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
301
  "pliku"
302
 
303
- #: core/options-pages.php:518 core/options-pages.php:635
304
  msgid "Complete Cleanup"
305
  msgstr ""
306
 
307
- #: core/options-pages.php:519
308
  msgid ""
309
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
310
  "plugin data</strong> from the database including backups."
311
  msgstr ""
312
 
313
- #: core/options-pages.php:521
314
  msgid "Yes, delete all data"
315
  msgstr ""
316
 
317
- #: core/options-pages.php:522
318
  msgid "Cleaning..."
319
  msgstr ""
320
 
321
- #: core/options-pages.php:553
322
  msgid "Enhanced Media Library Settings"
323
  msgstr ""
324
 
325
- #: core/options-pages.php:563
326
  msgid "Export"
327
  msgstr ""
328
 
329
- #: core/options-pages.php:567
330
  msgid ""
331
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
332
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -334,15 +335,15 @@ msgid ""
334
  "another website."
335
  msgstr ""
336
 
337
- #: core/options-pages.php:572
338
  msgid "Export Plugin Settings"
339
  msgstr ""
340
 
341
- #: core/options-pages.php:582
342
  msgid "Import"
343
  msgstr ""
344
 
345
- #: core/options-pages.php:586
346
  msgid ""
347
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
348
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -350,173 +351,168 @@ msgid ""
350
  "another website using the export button above."
351
  msgstr ""
352
 
353
- #: core/options-pages.php:587
354
  msgid ""
355
  "All plugin settings will be overridden by the import. You will have a chance "
356
  "to restore current data from an automatic backup in case you are not "
357
  "satisfied with the result of the import."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:594
361
  msgid "Import Plugin Settings"
362
  msgstr ""
363
 
364
- #: core/options-pages.php:606
365
  msgid "Restore"
366
  msgstr ""
367
 
368
- #: core/options-pages.php:612
369
  msgid "No backup available at the moment."
370
  msgstr ""
371
 
372
- #: core/options-pages.php:614
373
  msgid "Backup will be created automatically before any import operation."
374
  msgstr ""
375
 
376
- #: core/options-pages.php:618
377
  msgid ""
378
  "The backup has been automatically created before the latest import operation."
379
  msgstr ""
380
 
381
- #: core/options-pages.php:622
382
  msgid "Restore Settings from the Backup"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:642
386
  msgid "What will be deleted:"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:647
390
  msgid "All plugin options"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:648
394
  msgid "All plugin backups stored in database"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:652
398
  msgid "What will remain intact:"
399
  msgstr ""
400
 
401
- #: core/options-pages.php:653
402
  msgid "All media items"
403
  msgstr ""
404
 
405
- #: core/options-pages.php:654
406
  msgid "All taxonomies not listed above"
407
  msgstr ""
408
 
409
- #: core/options-pages.php:657
410
  msgid ""
411
  "The plugin cannot delete itself because of security reason. Please delete it "
412
  "manually from plugin list after cleanup."
413
  msgstr ""
414
 
415
- #: core/options-pages.php:659
416
  msgid ""
417
  "If you are not sure about this operation please create a backup of your "
418
  "database prior to cleanup!"
419
  msgstr ""
420
 
421
- #: core/options-pages.php:665
422
  msgid "Delete All Data & Deactivate"
423
  msgstr ""
424
 
425
- #: core/options-pages.php:765
426
  msgid "Please upload a file to import settings."
427
  msgstr ""
428
 
429
- #: core/options-pages.php:791
430
  msgid "Plugin settings imported."
431
  msgstr ""
432
 
433
- #: core/options-pages.php:838
434
  msgid "Plugin settings restored from the backup."
435
  msgstr ""
436
 
437
- #: core/options-pages.php:1027
438
  msgid "Media Items Order"
439
  msgstr ""
440
 
441
- #: core/options-pages.php:1034
442
  msgid "Order media items by"
443
  msgstr ""
444
 
445
- #: core/options-pages.php:1037 pro/core/medialist.php:28
446
- #: pro/core/medialist.php:73
447
  msgid "Date"
448
  msgstr ""
449
 
450
- #: core/options-pages.php:1038 pro/core/medialist.php:31
451
- #: pro/core/medialist.php:76
452
  msgid "Title"
453
  msgstr ""
454
 
455
- #: core/options-pages.php:1039 pro/core/medialist.php:34
456
- #: pro/core/medialist.php:79
457
  msgid "Custom Order"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1041 core/options-pages.php:1053
461
  msgid "For media library and media popups"
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1042
465
  msgid "Option allows to change order by drag and drop with Custom Order value."
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1047
469
  msgid "Sort order"
470
  msgstr ""
471
 
472
- #: core/options-pages.php:1050 pro/core/medialist.php:47
473
- #: pro/core/medialist.php:92
474
  msgid "Ascending"
475
  msgstr ""
476
 
477
- #: core/options-pages.php:1051 pro/core/medialist.php:50
478
- #: pro/core/medialist.php:95
479
  msgid "Descending"
480
  msgstr ""
481
 
482
- #: core/options-pages.php:1066
483
  msgid "Media Shortcodes"
484
  msgstr ""
485
 
486
- #: core/options-pages.php:1073 core/options-pages.php:1076
487
  msgid "Enhanced media shortcodes"
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1077
491
  msgid ""
492
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
493
  "upload date, and media items number limit"
494
  msgstr ""
495
 
496
- #: core/options-pages.php:1078
497
  msgid "Gallery example:"
498
  msgstr ""
499
 
500
- #: core/options-pages.php:1079
501
  msgid "Audio playlist example:"
502
  msgstr ""
503
 
504
- #: core/options-pages.php:1080
505
  msgid "Video playlist example:"
506
  msgstr ""
507
 
508
- #: core/options-pages.php:1082
509
  #, php-format
510
  msgid ""
511
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
512
  msgstr ""
513
 
514
- #: core/options-pages.php:1084
515
  #, php-format
516
  msgid "%sLearn more%s."
517
  msgstr ""
518
 
519
- #: core/options-pages.php:1086
520
  #, php-format
521
  msgid ""
522
  "Please check out your gallery front-end and back-end functionality once this "
@@ -524,236 +520,236 @@ msgid ""
524
  "%s."
525
  msgstr ""
526
 
527
- #: core/options-pages.php:1155 core/options-pages.php:1302
528
  msgid "Assign following taxonomies to Media Library:"
529
  msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
530
 
531
- #: core/options-pages.php:1174 core/options-pages.php:1240
532
- #: core/options-pages.php:1324
533
  msgid "Assign Taxonomy"
534
  msgstr "Przypisz taksonomię"
535
 
536
- #: core/options-pages.php:1175 core/options-pages.php:1325
537
  msgid "Edit Taxonomy"
538
  msgstr "Edytuj taksonomię"
539
 
540
- #: core/options-pages.php:1179 core/options-pages.php:1242
541
  msgid "Delete Taxonomy"
542
  msgstr "Usuń taksonomię"
543
 
544
- #: core/options-pages.php:1184 core/options-pages.php:1247
545
  msgid "Labels"
546
  msgstr "Etykiety"
547
 
548
- #: core/options-pages.php:1186 core/options-pages.php:1249
549
  msgid "Singular"
550
  msgstr "Liczba pojedyncza"
551
 
552
- #: core/options-pages.php:1187 core/options-pages.php:1250
553
  msgid "Plural"
554
  msgstr "Liczba mnoga"
555
 
556
- #: core/options-pages.php:1188 core/options-pages.php:1251
557
  msgid "Menu Name"
558
  msgstr "Nazwa w menu"
559
 
560
- #: core/options-pages.php:1201 core/options-pages.php:1224
561
- #: core/options-pages.php:1264 core/options-pages.php:1328
562
  msgid "Settings"
563
  msgstr "Ustawienia"
564
 
565
- #: core/options-pages.php:1203 core/options-pages.php:1266
566
  msgid "Taxonomy Name"
567
  msgstr ""
568
 
569
- #: core/options-pages.php:1204 core/options-pages.php:1267
570
  msgid "Hierarchical"
571
  msgstr "Hierachicznie"
572
 
573
- #: core/options-pages.php:1205 core/options-pages.php:1268
574
  msgid "Column for List View"
575
  msgstr ""
576
 
577
- #: core/options-pages.php:1206 core/options-pages.php:1226
578
- #: core/options-pages.php:1269 core/options-pages.php:1330
579
  msgid "Filter for List View"
580
  msgstr ""
581
 
582
- #: core/options-pages.php:1207 core/options-pages.php:1227
583
- #: core/options-pages.php:1270 core/options-pages.php:1331
584
  msgid "Filter for Grid View / Media Popup"
585
  msgstr ""
586
 
587
- #: core/options-pages.php:1208 core/options-pages.php:1228
588
- #: core/options-pages.php:1271 core/options-pages.php:1332
589
  msgid "Edit in Media Popup"
590
  msgstr ""
591
 
592
- #: core/options-pages.php:1209 core/options-pages.php:1272
593
  msgid "Show in Nav Menu"
594
  msgstr "Pokaż w menu nawigacyjnym"
595
 
596
- #: core/options-pages.php:1210 core/options-pages.php:1273
597
  msgid "Remember Terms Order (sort)"
598
  msgstr ""
599
 
600
- #: core/options-pages.php:1211 core/options-pages.php:1274
601
  msgid "Show in REST"
602
  msgstr ""
603
 
604
- #: core/options-pages.php:1212 core/options-pages.php:1275
605
  msgid "Rewrite Slug"
606
  msgstr ""
607
 
608
- #: core/options-pages.php:1213 core/options-pages.php:1276
609
  msgid "Slug with Front"
610
  msgstr ""
611
 
612
- #: core/options-pages.php:1288
613
  msgid "Add New Taxonomy"
614
  msgstr "Dodaj nową taksonomię"
615
 
616
- #: core/options-pages.php:1298
617
  msgid "Non-Media Taxonomies"
618
  msgstr "Pozostałe taksonomie"
619
 
620
- #: core/options-pages.php:1361
621
  msgid "Options"
622
  msgstr ""
623
 
624
- #: core/options-pages.php:1371 core/options-pages.php:1374
625
  msgid "Taxonomy archive pages"
626
  msgstr ""
627
 
628
- #: core/options-pages.php:1375
629
  msgid "Turn on media taxonomy archive pages on the front-end"
630
  msgstr ""
631
 
632
- #: core/options-pages.php:1376
633
  msgid ""
634
  "Re-save your permalink settings after this option change to make it work."
635
  msgstr ""
636
 
637
- #: core/options-pages.php:1382 core/options-pages.php:1385
638
  msgid "Assign all like hierarchical"
639
  msgstr ""
640
 
641
- #: core/options-pages.php:1386
642
  msgid ""
643
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
644
  msgstr ""
645
 
646
- #: core/options-pages.php:1392 core/options-pages.php:1395
647
  msgid "Force filters"
648
  msgstr ""
649
 
650
- #: core/options-pages.php:1396
651
  msgid "Show media filters for ANY Media Popup"
652
  msgstr ""
653
 
654
- #: core/options-pages.php:1397
655
  msgid "Try this if filters are not shown for third-party plugins or themes."
656
  msgstr ""
657
 
658
- #: core/options-pages.php:1403 core/options-pages.php:1406
659
  msgid "Show count"
660
  msgstr ""
661
 
662
- #: core/options-pages.php:1407
663
  msgid "Show item count per category for media filters"
664
  msgstr ""
665
 
666
- #: core/options-pages.php:1461
667
  msgid "Add New MIME Type"
668
  msgstr "Dodaj nowy typ MIME"
669
 
670
- #: core/options-pages.php:1481 core/options-pages.php:1536
671
  msgid "Extension"
672
  msgstr "Rozszerzenie"
673
 
674
- #: core/options-pages.php:1482 core/options-pages.php:1537
675
  msgid "MIME Type"
676
  msgstr "Typ MIME"
677
 
678
- #: core/options-pages.php:1483 core/options-pages.php:1538
679
  msgid "Singular Label"
680
  msgstr "Etykieta dla liczby pojedynczej"
681
 
682
- #: core/options-pages.php:1484 core/options-pages.php:1539
683
  msgid "Plural Label"
684
  msgstr "Etykieta dla liczby mnogiej"
685
 
686
- #: core/options-pages.php:1485 core/options-pages.php:1515
687
- #: core/options-pages.php:1528 core/options-pages.php:1540
688
  msgid "Add Filter"
689
  msgstr "Dodaj filtr"
690
 
691
- #: core/options-pages.php:1486 core/options-pages.php:1516
692
- #: core/options-pages.php:1529 core/options-pages.php:1541
693
  msgid "Allow Upload"
694
  msgstr "Zezwól na przesyłanie"
695
 
696
- #: core/options-pages.php:1517 core/options-pages.php:1530
697
  msgid "Delete MIME Type"
698
  msgstr "Usuń typ MIME"
699
 
700
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
701
  msgid "Save Changes"
702
  msgstr ""
703
 
704
- #: core/options-pages.php:1607
705
  msgid "Changelog"
706
  msgstr ""
707
 
708
- #: core/options-pages.php:1608
709
  msgid "What's new in"
710
  msgstr ""
711
 
712
- #: core/options-pages.php:1608
713
  msgid "version"
714
  msgstr ""
715
 
716
- #: core/options-pages.php:1611
717
  msgid "More features under the hood"
718
  msgstr ""
719
 
720
- #: core/options-pages.php:1613
721
  msgid "Support"
722
  msgstr ""
723
 
724
- #: core/options-pages.php:1614
725
  msgid "Feel free to ask for help on"
726
  msgstr ""
727
 
728
- #: core/options-pages.php:1614
729
  msgid "Support is free for both versions of the plugin."
730
  msgstr ""
731
 
732
- #: core/options-pages.php:1616
733
  msgid "Plugin rating"
734
  msgstr ""
735
 
736
- #: core/options-pages.php:1617
737
  msgid "Please"
738
  msgstr ""
739
 
740
- #: core/options-pages.php:1617
741
  msgid "vote for the plugin"
742
  msgstr ""
743
 
744
- #: core/options-pages.php:1617
745
  msgid "Thanks!"
746
  msgstr ""
747
 
748
- #: core/options-pages.php:1619
749
  msgid "Other plugins you may find useful"
750
  msgstr ""
751
 
752
- #: core/options-pages.php:1658
753
  msgid "Utility"
754
  msgstr ""
755
 
756
- #: core/options-pages.php:1681
757
  msgid "Vote!"
758
  msgstr ""
759
 
@@ -766,353 +762,98 @@ msgid "Media Library settings saved."
766
  msgstr ""
767
 
768
  #: core/taxonomies.php:333 core/taxonomies.php:339
769
- #: enhanced-media-library.php:502
770
  msgid "Filter by"
771
  msgstr ""
772
 
773
- #: core/taxonomies.php:341 enhanced-media-library.php:504
774
  msgid "Not in a"
775
  msgstr ""
776
 
777
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
778
- msgid "All Uncategorized"
779
- msgstr ""
780
-
781
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
782
- msgid "Reset All Filters"
783
- msgstr ""
784
-
785
- #: enhanced-media-library.php:535
786
- msgid "Uploaded to post #"
787
- msgstr ""
788
-
789
- #: enhanced-media-library.php:536
790
- msgid "Based On"
791
- msgstr ""
792
-
793
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
794
- msgid "Media Categories"
795
- msgstr ""
796
-
797
- #: enhanced-media-library.php:582
798
- msgid "Media Category"
799
- msgstr ""
800
-
801
- #: enhanced-media-library.php:584
802
- msgid "All Media Categories"
803
- msgstr ""
804
-
805
- #: enhanced-media-library.php:585
806
- msgid "Edit Media Category"
807
- msgstr ""
808
-
809
- #: enhanced-media-library.php:586
810
- msgid "View Media Category"
811
- msgstr ""
812
-
813
- #: enhanced-media-library.php:587
814
- msgid "Update Media Category"
815
- msgstr ""
816
-
817
- #: enhanced-media-library.php:588
818
- msgid "Add New Media Category"
819
- msgstr ""
820
-
821
- #: enhanced-media-library.php:589
822
- msgid "New Media Category Name"
823
- msgstr ""
824
-
825
- #: enhanced-media-library.php:590
826
- msgid "Parent Media Category"
827
- msgstr ""
828
-
829
- #: enhanced-media-library.php:591
830
- msgid "Parent Media Category:"
831
- msgstr ""
832
-
833
- #: enhanced-media-library.php:592
834
- msgid "Search Media Categories"
835
- msgstr ""
836
-
837
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
838
  msgid "Remove"
839
  msgstr ""
840
 
841
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
842
  msgid "Deselect"
843
  msgstr ""
844
 
845
- #: pro/core/bulk-edit.php:105
846
  msgid "Caption this image&hellip;"
847
  msgstr ""
848
 
849
- #: pro/core/bulk-edit.php:109
850
  msgid "Describe this video&hellip;"
851
  msgstr ""
852
 
853
- #: pro/core/bulk-edit.php:111
854
  msgid "Describe this audio file&hellip;"
855
  msgstr ""
856
 
857
- #: pro/core/bulk-edit.php:113
858
  msgid "Describe this media file&hellip;"
859
  msgstr ""
860
 
861
- #: pro/core/bulk-edit.php:122
862
- msgid "Attachments Details"
863
- msgstr ""
864
-
865
- #: pro/core/bulk-edit.php:175
866
- msgid "Select All"
867
- msgstr ""
868
-
869
- #: pro/core/bulk-edit.php:176
870
- msgid "Deselect All"
871
- msgstr ""
872
-
873
- #: pro/core/bulk-edit.php:177
874
- msgid "Delete Selected"
875
- msgstr ""
876
-
877
- #: pro/core/bulk-edit.php:178
878
- msgid "Trash Selected"
879
- msgstr ""
880
-
881
- #: pro/core/bulk-edit.php:179
882
- msgid "Restore Selected"
883
- msgstr ""
884
-
885
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
886
- msgid "Delete Selected Permanently"
887
- msgstr ""
888
-
889
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
890
- msgid "Order By"
891
- msgstr ""
892
-
893
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
894
- msgid "Random"
895
- msgstr ""
896
-
897
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
898
- msgid "Order"
899
- msgstr ""
900
-
901
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
902
- msgid "Limit"
903
- msgstr ""
904
-
905
- #: pro/core/options-pages.php:78
906
- msgid "Your license has been deactivated."
907
- msgstr ""
908
-
909
- #: pro/core/options-pages.php:88
910
- msgid "Please check if your license key is correct and try again."
911
- msgstr ""
912
-
913
- #: pro/core/options-pages.php:104
914
- #, php-format
915
- msgid ""
916
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
917
- "authors</a>."
918
- msgstr ""
919
-
920
- #: pro/core/options-pages.php:119
921
- #, php-format
922
- msgid ""
923
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
924
- "plugin authors</a>."
925
- msgstr ""
926
-
927
- #: pro/core/options-pages.php:130
928
- msgid "You license has been activated."
929
- msgstr ""
930
-
931
- #: pro/core/options-pages.php:184
932
- #, php-format
933
- msgid "Auto-assign media items to parent %s %s on upload"
934
- msgstr ""
935
-
936
- #: pro/core/options-pages.php:185
937
- #, php-format
938
- msgid ""
939
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
940
- "attached to a %s will be assigned to %s of their parent %s. Currently "
941
- "assigned %s will not be saved. Media items that are not attached to any %s "
942
- "will not be affected."
943
- msgstr ""
944
-
945
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
946
- msgid "Bulk Edit"
947
- msgstr ""
948
-
949
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
950
- msgid "Turn off 'Save Changes' button"
951
- msgstr ""
952
-
953
- #: pro/core/options-pages.php:220
954
- msgid "Save changes on the fly"
955
- msgstr ""
956
-
957
- #: pro/core/options-pages.php:221
958
- msgid ""
959
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
960
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
961
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
962
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
963
- "files / taxonomies with this option turned on."
964
- msgstr ""
965
-
966
- #: pro/core/options-pages.php:222
967
- msgid ""
968
- "Strongly NOT recommended option if you work with more than hundred of files "
969
- "at a time."
970
- msgstr ""
971
-
972
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
973
- msgid "License Key"
974
- msgstr ""
975
-
976
- #: pro/core/options-pages.php:273
977
- #, php-format
978
- msgid ""
979
- "To unlock updates please enter your license key below. You can get your "
980
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
981
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
982
- msgstr ""
983
-
984
- #: pro/core/options-pages.php:283
985
- msgid "Activate License"
986
- msgstr ""
987
-
988
- #: pro/core/options-pages.php:290
989
- msgid "Your license is active!"
990
- msgstr ""
991
-
992
- #: pro/core/options-pages.php:294
993
- msgid "Deactivate License"
994
- msgstr ""
995
-
996
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
997
- msgid ""
998
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
999
- "this server&#8217;s configuration. If you continue to have problems, please "
1000
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1001
- msgstr ""
1002
-
1003
- #: pro/core/update.php:113
1004
- msgid ""
1005
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1006
- "contact your server administrator.)"
1007
- msgstr ""
1008
-
1009
- #: pro/core/update.php:181
1010
- #, php-format
1011
- msgid ""
1012
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1013
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1014
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1015
- msgstr ""
1016
-
1017
- #: pro/enhanced-media-library-pro.php:119
1018
- msgid "ALL files belong to this item"
1019
- msgstr ""
1020
-
1021
- #: pro/enhanced-media-library-pro.php:120
1022
- msgid "SOME files belong to this item"
1023
- msgstr ""
1024
-
1025
- #: pro/enhanced-media-library-pro.php:121
1026
- msgid "NO files belong to this item"
1027
- msgstr ""
1028
-
1029
- #: pro/enhanced-media-library-pro.php:122
1030
- msgid "Changes saved."
1031
- msgstr ""
1032
-
1033
- #: pro/enhanced-media-library-pro.php:123
1034
- msgid "Something went wrong."
1035
- msgstr ""
1036
-
1037
- #: pro/enhanced-media-library-pro.php:126
1038
- msgid "Edit Media Files"
1039
  msgstr ""
1040
 
1041
- #: pro/enhanced-media-library-pro.php:129
1042
- msgid "Selecting"
1043
  msgstr ""
1044
 
1045
- #: pro/enhanced-media-library-pro.php:131
1046
- msgid "You are about to permanently delete all selected items."
1047
  msgstr ""
1048
 
1049
- #: pro/enhanced-media-library-pro.php:132
1050
- msgid "Delete"
1051
  msgstr ""
1052
 
1053
- #: pro/enhanced-media-library-pro.php:134
1054
- msgid "Moving to Trash"
1055
  msgstr ""
1056
 
1057
- #: pro/enhanced-media-library-pro.php:135
1058
- msgid "Restoring"
1059
  msgstr ""
1060
 
1061
- #: pro/enhanced-media-library-pro.php:136
1062
- msgid "Deleting"
1063
  msgstr ""
1064
 
1065
- #: pro/enhanced-media-library-pro.php:160
1066
- msgid "Create a filter-based gallery"
1067
  msgstr ""
1068
 
1069
- #: pro/enhanced-media-library-pro.php:161
1070
- msgid "Create a filter-based playlist"
1071
  msgstr ""
1072
 
1073
- #: pro/enhanced-media-library-pro.php:162
1074
- msgid "Create a filter-based video playlist"
1075
  msgstr ""
1076
 
1077
- #: pro/enhanced-media-library-pro.php:240
1078
- msgid ""
1079
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1080
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1081
- "will remain intact."
1082
  msgstr ""
1083
 
1084
- #: pro/enhanced-media-library-pro.php:240
1085
- msgid "Return to Plugins"
1086
  msgstr ""
1087
 
1088
- #: pro/enhanced-media-library-pro.php:291
1089
- msgid ""
1090
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1091
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1092
- "be active. Please network deactivate and delete the free versions of the "
1093
- "plugin. All your data will remain intact."
1094
  msgstr ""
1095
 
1096
- #: pro/enhanced-media-library-pro.php:308
1097
- msgid ""
1098
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1099
- "be active. Please deactivate and delete the free version of the plugin. All "
1100
- "your data will remain intact."
1101
  msgstr ""
1102
 
1103
- #: pro/enhanced-media-library-pro.php:324
1104
- msgid ""
1105
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1106
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1107
- "version to be active. Please deactivate (or network deactivate) and delete "
1108
- "the free version of the plugin for this site. All your data will remail "
1109
- "intact."
1110
  msgstr ""
1111
 
1112
- #. Plugin Name of the plugin/theme
1113
- msgid "Enhanced Media Library PRO"
1114
- msgstr "Rozszerzona Biblioteka Mediów PRO"
1115
-
1116
  #. Plugin URI of the plugin/theme
1117
  #. Author URI of the plugin/theme
1118
  msgid "http://wpUXsolutions.com"
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-13 03:04+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:04+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Polish (Poland)\n"
9
  "Language: pl_PL\n"
33
  msgstr[1] ""
34
  msgstr[2] ""
35
 
36
+ #: core/options-pages.php:97 core/options-pages.php:220
37
+ #: core/options-pages.php:313 core/options-pages.php:1080
38
+ #: core/options-pages.php:1204 core/options-pages.php:1529
39
+ #: core/options-pages.php:1729
40
  msgid "Media Settings"
41
  msgstr "Ustawienia Mediów"
42
 
43
+ #: core/options-pages.php:106 core/options-pages.php:285
44
  msgid "Media Library"
45
  msgstr ""
46
 
48
  msgid "Taxonomies"
49
  msgstr "Taksonomie"
50
 
51
+ #: core/options-pages.php:124 core/options-pages.php:287
52
  msgid "MIME Types"
53
  msgstr "Typy MIME"
54
 
55
+ #. Plugin Name of the plugin/theme
56
  #: core/options-pages.php:135 core/options-pages.php:136
57
  msgid "Enhanced Media Library"
58
  msgstr "Rozszerzona Biblioteka Mediów"
59
 
60
+ #: core/options-pages.php:284
61
  msgid "General"
62
  msgstr ""
63
 
64
+ #: core/options-pages.php:286 core/options-pages.php:1225
65
  msgid "Media Taxonomies"
66
  msgstr "Taksonomie mediów"
67
 
68
+ #: core/options-pages.php:310 core/options-pages.php:622
69
+ #: core/options-pages.php:1076 core/options-pages.php:1201
70
+ #: core/options-pages.php:1525
71
  msgid "You do not have sufficient permissions to access this page."
72
  msgstr "Nie masz wystarczających uprawnień dostępu do tej strony."
73
 
74
+ #: core/options-pages.php:324
75
  msgid "Image sizes"
76
  msgstr ""
77
 
78
+ #: core/options-pages.php:325
79
  msgid ""
80
  "The sizes listed below determine the maximum dimensions in pixels to use "
81
  "when adding an image to the Media Library."
82
  msgstr ""
83
 
84
+ #: core/options-pages.php:329
85
  msgid "Thumbnail size"
86
  msgstr ""
87
 
88
+ #: core/options-pages.php:331
89
  msgid "Width"
90
  msgstr ""
91
 
92
+ #: core/options-pages.php:333
93
  msgid "Height"
94
  msgstr ""
95
 
96
+ #: core/options-pages.php:336
97
  msgid ""
98
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
99
  msgstr ""
100
 
101
+ #: core/options-pages.php:341 core/options-pages.php:342
102
  msgid "Medium size"
103
  msgstr ""
104
 
105
+ #: core/options-pages.php:343 core/options-pages.php:353
106
  msgid "Max Width"
107
  msgstr ""
108
 
109
+ #: core/options-pages.php:345 core/options-pages.php:355
110
  msgid "Max Height"
111
  msgstr ""
112
 
113
+ #: core/options-pages.php:351 core/options-pages.php:352
114
  msgid "Large size"
115
  msgstr ""
116
 
117
+ #: core/options-pages.php:368
118
  msgid "Embeds"
119
  msgstr ""
120
 
121
+ #: core/options-pages.php:375
122
  msgid "Uploading Files"
123
  msgstr ""
124
 
125
+ #: core/options-pages.php:382
126
  msgid "Store uploads in this folder"
127
  msgstr ""
128
 
129
+ #: core/options-pages.php:386
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr ""
133
 
134
+ #: core/options-pages.php:392
135
  msgid "Full URL path to files"
136
  msgstr ""
137
 
138
+ #: core/options-pages.php:394
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
 
142
+ #: core/options-pages.php:402
143
  msgid "Organize my uploads into month- and year-based folders"
144
  msgstr ""
145
 
146
+ #: core/options-pages.php:474 core/options-pages.php:1249
147
+ #: core/options-pages.php:1264 core/options-pages.php:1327
148
+ #: core/options-pages.php:1399
149
  msgid "Edit"
150
  msgstr "Edytuj"
151
 
152
+ #: core/options-pages.php:475
153
  msgid "Close"
154
  msgstr "Zamknij"
155
 
156
+ #: core/options-pages.php:476 core/options-pages.php:1265
157
+ #: core/options-pages.php:1328
158
  msgid "View"
159
  msgstr "Zobacz"
160
 
161
+ #: core/options-pages.php:477 core/options-pages.php:1266
162
+ #: core/options-pages.php:1329
163
  msgid "Update"
164
  msgstr "Aktualizuj"
165
 
166
+ #: core/options-pages.php:478 core/options-pages.php:1267
167
+ #: core/options-pages.php:1330
168
  msgid "Add New"
169
  msgstr "Dodaj nowy"
170
 
171
+ #: core/options-pages.php:479 core/options-pages.php:1268
172
+ #: core/options-pages.php:1331
173
  msgid "New"
174
  msgstr "Nowy"
175
 
176
+ #: core/options-pages.php:480
177
  msgid "Name"
178
  msgstr "Nazwa"
179
 
180
+ #: core/options-pages.php:481 core/options-pages.php:1269
181
+ #: core/options-pages.php:1332
182
  msgid "Parent"
183
  msgstr "Rodzic"
184
 
185
+ #: core/options-pages.php:482 core/options-pages.php:718
186
+ #: core/options-pages.php:1263 core/options-pages.php:1326
187
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
188
  msgid "All"
189
  msgstr "Wszystkie"
190
 
191
+ #: core/options-pages.php:483 core/options-pages.php:1270
192
+ #: core/options-pages.php:1333
193
  msgid "Search"
194
  msgstr "Szukaj"
195
 
196
+ #: core/options-pages.php:485 core/options-pages.php:1314
197
  msgid "New Taxonomy"
198
  msgstr "Nowa taksonomia"
199
 
200
+ #: core/options-pages.php:487
201
  msgid "Remove Taxonomy"
202
  msgstr ""
203
 
204
+ #: core/options-pages.php:488
205
  msgid "Taxonomy will be removed."
206
  msgstr ""
207
 
208
+ #: core/options-pages.php:489
209
  msgid ""
210
  "Taxonomy terms (categories) will remain intact in the database. If you "
211
  "create a taxonomy with the same name in the future, its terms (categories) "
212
  "will be available again."
213
  msgstr ""
214
 
215
+ #: core/options-pages.php:490
216
  msgid "Media items will remain intact."
217
  msgstr ""
218
 
219
+ #: core/options-pages.php:491
220
  msgid "Are you still sure?"
221
  msgstr ""
222
 
223
+ #: core/options-pages.php:492
224
  msgid "Yes, remove taxonomy"
225
  msgstr ""
226
 
227
+ #: core/options-pages.php:494
228
  msgid "Duplicate"
229
  msgstr ""
230
 
231
+ #: core/options-pages.php:495
232
  msgid "Taxonomy with the same name already exists. Please chose other one."
233
  msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
234
 
235
+ #: core/options-pages.php:497
236
  msgid "Empty Fields"
237
  msgstr ""
238
 
239
+ #: core/options-pages.php:498
240
  msgid "Please choose Singular and Plural names for all new taxomonies."
241
  msgstr ""
242
 
243
+ #: core/options-pages.php:499
244
  msgid "Please choose Singular name for all new taxomonies."
245
  msgstr ""
246
 
247
+ #: core/options-pages.php:500
248
  msgid "Please choose Plural Name for all new taxomonies."
249
  msgstr ""
250
 
251
+ #: core/options-pages.php:502
252
  msgid "Ok"
253
  msgstr ""
254
 
255
+ #: core/options-pages.php:503 core/options-pages.php:508
256
+ #: core/options-pages.php:552 core/options-pages.php:597
 
257
  msgid "Cancel"
258
  msgstr ""
259
 
260
+ #: core/options-pages.php:505
261
  msgid "Synchronize Now"
262
  msgstr ""
263
 
264
+ #: core/options-pages.php:506 core/options-pages.php:594
265
  msgid "This operation cannot be canceled! Are you still sure?"
266
  msgstr ""
267
 
268
+ #: core/options-pages.php:507
269
  msgid "Synchronize"
270
  msgstr ""
271
 
272
+ #: core/options-pages.php:509
273
  msgid "Synchronizing..."
274
  msgstr ""
275
 
276
+ #: core/options-pages.php:547 core/options-pages.php:1653
277
  msgid "Restore WordPress default MIME Types"
278
  msgstr ""
279
 
280
+ #: core/options-pages.php:548
281
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
282
  msgstr ""
283
  "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
284
  "operację. "
285
 
286
+ #: core/options-pages.php:549
287
  msgid "Restore Defaults"
288
  msgstr ""
289
 
290
+ #: core/options-pages.php:550
291
  msgid "Restoring..."
292
  msgstr ""
293
 
294
+ #: core/options-pages.php:554
295
  msgid "Please fill into all fields."
296
  msgstr "Proszę wypełnić wszystkie pola"
297
 
298
+ #: core/options-pages.php:555
299
  msgid "Duplicate extensions or MIME types. Please chose other one."
300
  msgstr ""
301
  "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
302
  "pliku"
303
 
304
+ #: core/options-pages.php:592 core/options-pages.php:709
305
  msgid "Complete Cleanup"
306
  msgstr ""
307
 
308
+ #: core/options-pages.php:593
309
  msgid ""
310
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
311
  "plugin data</strong> from the database including backups."
312
  msgstr ""
313
 
314
+ #: core/options-pages.php:595
315
  msgid "Yes, delete all data"
316
  msgstr ""
317
 
318
+ #: core/options-pages.php:596
319
  msgid "Cleaning..."
320
  msgstr ""
321
 
322
+ #: core/options-pages.php:627
323
  msgid "Enhanced Media Library Settings"
324
  msgstr ""
325
 
326
+ #: core/options-pages.php:637
327
  msgid "Export"
328
  msgstr ""
329
 
330
+ #: core/options-pages.php:641
331
  msgid ""
332
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
333
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
335
  "another website."
336
  msgstr ""
337
 
338
+ #: core/options-pages.php:646
339
  msgid "Export Plugin Settings"
340
  msgstr ""
341
 
342
+ #: core/options-pages.php:656
343
  msgid "Import"
344
  msgstr ""
345
 
346
+ #: core/options-pages.php:660
347
  msgid ""
348
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
349
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
351
  "another website using the export button above."
352
  msgstr ""
353
 
354
+ #: core/options-pages.php:661
355
  msgid ""
356
  "All plugin settings will be overridden by the import. You will have a chance "
357
  "to restore current data from an automatic backup in case you are not "
358
  "satisfied with the result of the import."
359
  msgstr ""
360
 
361
+ #: core/options-pages.php:668
362
  msgid "Import Plugin Settings"
363
  msgstr ""
364
 
365
+ #: core/options-pages.php:680
366
  msgid "Restore"
367
  msgstr ""
368
 
369
+ #: core/options-pages.php:686
370
  msgid "No backup available at the moment."
371
  msgstr ""
372
 
373
+ #: core/options-pages.php:688
374
  msgid "Backup will be created automatically before any import operation."
375
  msgstr ""
376
 
377
+ #: core/options-pages.php:692
378
  msgid ""
379
  "The backup has been automatically created before the latest import operation."
380
  msgstr ""
381
 
382
+ #: core/options-pages.php:696
383
  msgid "Restore Settings from the Backup"
384
  msgstr ""
385
 
386
+ #: core/options-pages.php:716
387
  msgid "What will be deleted:"
388
  msgstr ""
389
 
390
+ #: core/options-pages.php:721
391
  msgid "All plugin options"
392
  msgstr ""
393
 
394
+ #: core/options-pages.php:722
395
  msgid "All plugin backups stored in database"
396
  msgstr ""
397
 
398
+ #: core/options-pages.php:726
399
  msgid "What will remain intact:"
400
  msgstr ""
401
 
402
+ #: core/options-pages.php:727
403
  msgid "All media items"
404
  msgstr ""
405
 
406
+ #: core/options-pages.php:728
407
  msgid "All taxonomies not listed above"
408
  msgstr ""
409
 
410
+ #: core/options-pages.php:731
411
  msgid ""
412
  "The plugin cannot delete itself because of security reason. Please delete it "
413
  "manually from plugin list after cleanup."
414
  msgstr ""
415
 
416
+ #: core/options-pages.php:733
417
  msgid ""
418
  "If you are not sure about this operation please create a backup of your "
419
  "database prior to cleanup!"
420
  msgstr ""
421
 
422
+ #: core/options-pages.php:739
423
  msgid "Delete All Data & Deactivate"
424
  msgstr ""
425
 
426
+ #: core/options-pages.php:839
427
  msgid "Please upload a file to import settings."
428
  msgstr ""
429
 
430
+ #: core/options-pages.php:865
431
  msgid "Plugin settings imported."
432
  msgstr ""
433
 
434
+ #: core/options-pages.php:912
435
  msgid "Plugin settings restored from the backup."
436
  msgstr ""
437
 
438
+ #: core/options-pages.php:1101
439
  msgid "Media Items Order"
440
  msgstr ""
441
 
442
+ #: core/options-pages.php:1108
443
  msgid "Order media items by"
444
  msgstr ""
445
 
446
+ #: core/options-pages.php:1111
 
447
  msgid "Date"
448
  msgstr ""
449
 
450
+ #: core/options-pages.php:1112
 
451
  msgid "Title"
452
  msgstr ""
453
 
454
+ #: core/options-pages.php:1113
 
455
  msgid "Custom Order"
456
  msgstr ""
457
 
458
+ #: core/options-pages.php:1115 core/options-pages.php:1127
459
  msgid "For media library and media popups"
460
  msgstr ""
461
 
462
+ #: core/options-pages.php:1116
463
  msgid "Option allows to change order by drag and drop with Custom Order value."
464
  msgstr ""
465
 
466
+ #: core/options-pages.php:1121
467
  msgid "Sort order"
468
  msgstr ""
469
 
470
+ #: core/options-pages.php:1124
 
471
  msgid "Ascending"
472
  msgstr ""
473
 
474
+ #: core/options-pages.php:1125
 
475
  msgid "Descending"
476
  msgstr ""
477
 
478
+ #: core/options-pages.php:1140
479
  msgid "Media Shortcodes"
480
  msgstr ""
481
 
482
+ #: core/options-pages.php:1147 core/options-pages.php:1150
483
  msgid "Enhanced media shortcodes"
484
  msgstr ""
485
 
486
+ #: core/options-pages.php:1151
487
  msgid ""
488
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
489
  "upload date, and media items number limit"
490
  msgstr ""
491
 
492
+ #: core/options-pages.php:1152
493
  msgid "Gallery example:"
494
  msgstr ""
495
 
496
+ #: core/options-pages.php:1153
497
  msgid "Audio playlist example:"
498
  msgstr ""
499
 
500
+ #: core/options-pages.php:1154
501
  msgid "Video playlist example:"
502
  msgstr ""
503
 
504
+ #: core/options-pages.php:1156
505
  #, php-format
506
  msgid ""
507
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
508
  msgstr ""
509
 
510
+ #: core/options-pages.php:1158
511
  #, php-format
512
  msgid "%sLearn more%s."
513
  msgstr ""
514
 
515
+ #: core/options-pages.php:1160
516
  #, php-format
517
  msgid ""
518
  "Please check out your gallery front-end and back-end functionality once this "
520
  "%s."
521
  msgstr ""
522
 
523
+ #: core/options-pages.php:1229 core/options-pages.php:1376
524
  msgid "Assign following taxonomies to Media Library:"
525
  msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
526
 
527
+ #: core/options-pages.php:1248 core/options-pages.php:1314
528
+ #: core/options-pages.php:1398
529
  msgid "Assign Taxonomy"
530
  msgstr "Przypisz taksonomię"
531
 
532
+ #: core/options-pages.php:1249 core/options-pages.php:1399
533
  msgid "Edit Taxonomy"
534
  msgstr "Edytuj taksonomię"
535
 
536
+ #: core/options-pages.php:1253 core/options-pages.php:1316
537
  msgid "Delete Taxonomy"
538
  msgstr "Usuń taksonomię"
539
 
540
+ #: core/options-pages.php:1258 core/options-pages.php:1321
541
  msgid "Labels"
542
  msgstr "Etykiety"
543
 
544
+ #: core/options-pages.php:1260 core/options-pages.php:1323
545
  msgid "Singular"
546
  msgstr "Liczba pojedyncza"
547
 
548
+ #: core/options-pages.php:1261 core/options-pages.php:1324
549
  msgid "Plural"
550
  msgstr "Liczba mnoga"
551
 
552
+ #: core/options-pages.php:1262 core/options-pages.php:1325
553
  msgid "Menu Name"
554
  msgstr "Nazwa w menu"
555
 
556
+ #: core/options-pages.php:1275 core/options-pages.php:1298
557
+ #: core/options-pages.php:1338 core/options-pages.php:1402
558
  msgid "Settings"
559
  msgstr "Ustawienia"
560
 
561
+ #: core/options-pages.php:1277 core/options-pages.php:1340
562
  msgid "Taxonomy Name"
563
  msgstr ""
564
 
565
+ #: core/options-pages.php:1278 core/options-pages.php:1341
566
  msgid "Hierarchical"
567
  msgstr "Hierachicznie"
568
 
569
+ #: core/options-pages.php:1279 core/options-pages.php:1342
570
  msgid "Column for List View"
571
  msgstr ""
572
 
573
+ #: core/options-pages.php:1280 core/options-pages.php:1300
574
+ #: core/options-pages.php:1343 core/options-pages.php:1404
575
  msgid "Filter for List View"
576
  msgstr ""
577
 
578
+ #: core/options-pages.php:1281 core/options-pages.php:1301
579
+ #: core/options-pages.php:1344 core/options-pages.php:1405
580
  msgid "Filter for Grid View / Media Popup"
581
  msgstr ""
582
 
583
+ #: core/options-pages.php:1282 core/options-pages.php:1302
584
+ #: core/options-pages.php:1345 core/options-pages.php:1406
585
  msgid "Edit in Media Popup"
586
  msgstr ""
587
 
588
+ #: core/options-pages.php:1283 core/options-pages.php:1346
589
  msgid "Show in Nav Menu"
590
  msgstr "Pokaż w menu nawigacyjnym"
591
 
592
+ #: core/options-pages.php:1284 core/options-pages.php:1347
593
  msgid "Remember Terms Order (sort)"
594
  msgstr ""
595
 
596
+ #: core/options-pages.php:1285 core/options-pages.php:1348
597
  msgid "Show in REST"
598
  msgstr ""
599
 
600
+ #: core/options-pages.php:1286 core/options-pages.php:1349
601
  msgid "Rewrite Slug"
602
  msgstr ""
603
 
604
+ #: core/options-pages.php:1287 core/options-pages.php:1350
605
  msgid "Slug with Front"
606
  msgstr ""
607
 
608
+ #: core/options-pages.php:1362
609
  msgid "Add New Taxonomy"
610
  msgstr "Dodaj nową taksonomię"
611
 
612
+ #: core/options-pages.php:1372
613
  msgid "Non-Media Taxonomies"
614
  msgstr "Pozostałe taksonomie"
615
 
616
+ #: core/options-pages.php:1435
617
  msgid "Options"
618
  msgstr ""
619
 
620
+ #: core/options-pages.php:1445 core/options-pages.php:1448
621
  msgid "Taxonomy archive pages"
622
  msgstr ""
623
 
624
+ #: core/options-pages.php:1449
625
  msgid "Turn on media taxonomy archive pages on the front-end"
626
  msgstr ""
627
 
628
+ #: core/options-pages.php:1450
629
  msgid ""
630
  "Re-save your permalink settings after this option change to make it work."
631
  msgstr ""
632
 
633
+ #: core/options-pages.php:1456 core/options-pages.php:1459
634
  msgid "Assign all like hierarchical"
635
  msgstr ""
636
 
637
+ #: core/options-pages.php:1460
638
  msgid ""
639
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
640
  msgstr ""
641
 
642
+ #: core/options-pages.php:1466 core/options-pages.php:1469
643
  msgid "Force filters"
644
  msgstr ""
645
 
646
+ #: core/options-pages.php:1470
647
  msgid "Show media filters for ANY Media Popup"
648
  msgstr ""
649
 
650
+ #: core/options-pages.php:1471
651
  msgid "Try this if filters are not shown for third-party plugins or themes."
652
  msgstr ""
653
 
654
+ #: core/options-pages.php:1477 core/options-pages.php:1480
655
  msgid "Show count"
656
  msgstr ""
657
 
658
+ #: core/options-pages.php:1481
659
  msgid "Show item count per category for media filters"
660
  msgstr ""
661
 
662
+ #: core/options-pages.php:1535
663
  msgid "Add New MIME Type"
664
  msgstr "Dodaj nowy typ MIME"
665
 
666
+ #: core/options-pages.php:1555 core/options-pages.php:1610
667
  msgid "Extension"
668
  msgstr "Rozszerzenie"
669
 
670
+ #: core/options-pages.php:1556 core/options-pages.php:1611
671
  msgid "MIME Type"
672
  msgstr "Typ MIME"
673
 
674
+ #: core/options-pages.php:1557 core/options-pages.php:1612
675
  msgid "Singular Label"
676
  msgstr "Etykieta dla liczby pojedynczej"
677
 
678
+ #: core/options-pages.php:1558 core/options-pages.php:1613
679
  msgid "Plural Label"
680
  msgstr "Etykieta dla liczby mnogiej"
681
 
682
+ #: core/options-pages.php:1559 core/options-pages.php:1589
683
+ #: core/options-pages.php:1602 core/options-pages.php:1614
684
  msgid "Add Filter"
685
  msgstr "Dodaj filtr"
686
 
687
+ #: core/options-pages.php:1560 core/options-pages.php:1590
688
+ #: core/options-pages.php:1603 core/options-pages.php:1615
689
  msgid "Allow Upload"
690
  msgstr "Zezwól na przesyłanie"
691
 
692
+ #: core/options-pages.php:1591 core/options-pages.php:1604
693
  msgid "Delete MIME Type"
694
  msgstr "Usuń typ MIME"
695
 
696
+ #: core/options-pages.php:1651
697
  msgid "Save Changes"
698
  msgstr ""
699
 
700
+ #: core/options-pages.php:1681
701
  msgid "Changelog"
702
  msgstr ""
703
 
704
+ #: core/options-pages.php:1682
705
  msgid "What's new in"
706
  msgstr ""
707
 
708
+ #: core/options-pages.php:1682
709
  msgid "version"
710
  msgstr ""
711
 
712
+ #: core/options-pages.php:1685
713
  msgid "More features under the hood"
714
  msgstr ""
715
 
716
+ #: core/options-pages.php:1687
717
  msgid "Support"
718
  msgstr ""
719
 
720
+ #: core/options-pages.php:1688
721
  msgid "Feel free to ask for help on"
722
  msgstr ""
723
 
724
+ #: core/options-pages.php:1688
725
  msgid "Support is free for both versions of the plugin."
726
  msgstr ""
727
 
728
+ #: core/options-pages.php:1690
729
  msgid "Plugin rating"
730
  msgstr ""
731
 
732
+ #: core/options-pages.php:1691
733
  msgid "Please"
734
  msgstr ""
735
 
736
+ #: core/options-pages.php:1691
737
  msgid "vote for the plugin"
738
  msgstr ""
739
 
740
+ #: core/options-pages.php:1691
741
  msgid "Thanks!"
742
  msgstr ""
743
 
744
+ #: core/options-pages.php:1693
745
  msgid "Other plugins you may find useful"
746
  msgstr ""
747
 
748
+ #: core/options-pages.php:1732
749
  msgid "Utility"
750
  msgstr ""
751
 
752
+ #: core/options-pages.php:1755
753
  msgid "Vote!"
754
  msgstr ""
755
 
762
  msgstr ""
763
 
764
  #: core/taxonomies.php:333 core/taxonomies.php:339
765
+ #: enhanced-media-library.php:508
766
  msgid "Filter by"
767
  msgstr ""
768
 
769
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
770
  msgid "Not in a"
771
  msgstr ""
772
 
773
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
774
  msgid "Remove"
775
  msgstr ""
776
 
777
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
778
  msgid "Deselect"
779
  msgstr ""
780
 
781
+ #: core/taxonomies.php:1337
782
  msgid "Caption this image&hellip;"
783
  msgstr ""
784
 
785
+ #: core/taxonomies.php:1341
786
  msgid "Describe this video&hellip;"
787
  msgstr ""
788
 
789
+ #: core/taxonomies.php:1343
790
  msgid "Describe this audio file&hellip;"
791
  msgstr ""
792
 
793
+ #: core/taxonomies.php:1345
794
  msgid "Describe this media file&hellip;"
795
  msgstr ""
796
 
797
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
798
+ msgid "All Uncategorized"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
  msgstr ""
800
 
801
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
802
+ msgid "Reset All Filters"
803
  msgstr ""
804
 
805
+ #: enhanced-media-library.php:541
806
+ msgid "Uploaded to post #"
807
  msgstr ""
808
 
809
+ #: enhanced-media-library.php:542
810
+ msgid "Based On"
811
  msgstr ""
812
 
813
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
814
+ msgid "Media Categories"
815
  msgstr ""
816
 
817
+ #: enhanced-media-library.php:575
818
+ msgid "Media Category"
819
  msgstr ""
820
 
821
+ #: enhanced-media-library.php:577
822
+ msgid "All Media Categories"
823
  msgstr ""
824
 
825
+ #: enhanced-media-library.php:578
826
+ msgid "Edit Media Category"
827
  msgstr ""
828
 
829
+ #: enhanced-media-library.php:579
830
+ msgid "View Media Category"
831
  msgstr ""
832
 
833
+ #: enhanced-media-library.php:580
834
+ msgid "Update Media Category"
835
  msgstr ""
836
 
837
+ #: enhanced-media-library.php:581
838
+ msgid "Add New Media Category"
 
 
 
839
  msgstr ""
840
 
841
+ #: enhanced-media-library.php:582
842
+ msgid "New Media Category Name"
843
  msgstr ""
844
 
845
+ #: enhanced-media-library.php:583
846
+ msgid "Parent Media Category"
 
 
 
 
847
  msgstr ""
848
 
849
+ #: enhanced-media-library.php:584
850
+ msgid "Parent Media Category:"
 
 
 
851
  msgstr ""
852
 
853
+ #: enhanced-media-library.php:585
854
+ msgid "Search Media Categories"
 
 
 
 
 
855
  msgstr ""
856
 
 
 
 
 
857
  #. Plugin URI of the plugin/theme
858
  #. Author URI of the plugin/theme
859
  msgid "http://wpUXsolutions.com"
languages/enhanced-media-library-sv_SE.mo CHANGED
Binary file
languages/enhanced-media-library-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-11-29 19:34+0200\n"
6
- "PO-Revision-Date: 2016-11-29 19:34+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Swedish (Sweden)\n"
9
  "Language: sv_SE\n"
@@ -31,13 +31,14 @@ msgid_plural " <span class=\"count\">(%s)</span>"
31
  msgstr[0] ""
32
  msgstr[1] ""
33
 
34
- #: core/options-pages.php:97 core/options-pages.php:239
35
- #: core/options-pages.php:1006 core/options-pages.php:1130
36
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
37
  msgid "Media Settings"
38
  msgstr "Mediainställningar"
39
 
40
- #: core/options-pages.php:106 core/options-pages.php:211
41
  msgid "Media Library"
42
  msgstr "Mediabiblioteket"
43
 
@@ -45,284 +46,284 @@ msgstr "Mediabiblioteket"
45
  msgid "Taxonomies"
46
  msgstr "Taxonomier"
47
 
48
- #: core/options-pages.php:124 core/options-pages.php:213
49
  msgid "MIME Types"
50
  msgstr "MIME-typer"
51
 
 
52
  #: core/options-pages.php:135 core/options-pages.php:136
53
  msgid "Enhanced Media Library"
54
  msgstr "Enhanced Media Library"
55
 
56
- #: core/options-pages.php:210
57
  msgid "General"
58
  msgstr ""
59
 
60
- #: core/options-pages.php:212 core/options-pages.php:1151
61
  msgid "Media Taxonomies"
62
  msgstr "Mediataxonomier"
63
 
64
- #: core/options-pages.php:236 core/options-pages.php:548
65
- #: core/options-pages.php:1002 core/options-pages.php:1127
66
- #: core/options-pages.php:1451
67
  msgid "You do not have sufficient permissions to access this page."
68
  msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
69
 
70
- #: core/options-pages.php:250
71
  msgid "Image sizes"
72
  msgstr ""
73
 
74
- #: core/options-pages.php:251
75
  msgid ""
76
  "The sizes listed below determine the maximum dimensions in pixels to use "
77
  "when adding an image to the Media Library."
78
  msgstr ""
79
 
80
- #: core/options-pages.php:255
81
  msgid "Thumbnail size"
82
  msgstr ""
83
 
84
- #: core/options-pages.php:257
85
  msgid "Width"
86
  msgstr ""
87
 
88
- #: core/options-pages.php:259
89
  msgid "Height"
90
  msgstr ""
91
 
92
- #: core/options-pages.php:262
93
  msgid ""
94
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:267 core/options-pages.php:268
98
  msgid "Medium size"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:269 core/options-pages.php:279
102
  msgid "Max Width"
103
  msgstr ""
104
 
105
- #: core/options-pages.php:271 core/options-pages.php:281
106
  msgid "Max Height"
107
  msgstr ""
108
 
109
- #: core/options-pages.php:277 core/options-pages.php:278
110
  msgid "Large size"
111
  msgstr ""
112
 
113
- #: core/options-pages.php:294
114
  msgid "Embeds"
115
  msgstr ""
116
 
117
- #: core/options-pages.php:301
118
  msgid "Uploading Files"
119
  msgstr ""
120
 
121
- #: core/options-pages.php:308
122
  msgid "Store uploads in this folder"
123
  msgstr ""
124
 
125
- #: core/options-pages.php:312
126
  #, php-format
127
  msgid "Default is %s"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:318
131
  msgid "Full URL path to files"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:320
135
  msgid "Configuring this is optional. By default, it should be blank."
136
  msgstr ""
137
 
138
- #: core/options-pages.php:328
139
  msgid "Organize my uploads into month- and year-based folders"
140
  msgstr ""
141
 
142
- #: core/options-pages.php:400 core/options-pages.php:1175
143
- #: core/options-pages.php:1190 core/options-pages.php:1253
144
- #: core/options-pages.php:1325
145
  msgid "Edit"
146
  msgstr "Redigera"
147
 
148
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
149
  msgid "Close"
150
  msgstr "Stäng"
151
 
152
- #: core/options-pages.php:402 core/options-pages.php:1191
153
- #: core/options-pages.php:1254
154
  msgid "View"
155
  msgstr "Visa"
156
 
157
- #: core/options-pages.php:403 core/options-pages.php:1192
158
- #: core/options-pages.php:1255
159
  msgid "Update"
160
  msgstr "Uppdatera"
161
 
162
- #: core/options-pages.php:404 core/options-pages.php:1193
163
- #: core/options-pages.php:1256
164
  msgid "Add New"
165
  msgstr "Lägg Till Ny"
166
 
167
- #: core/options-pages.php:405 core/options-pages.php:1194
168
- #: core/options-pages.php:1257
169
  msgid "New"
170
  msgstr "Ny"
171
 
172
- #: core/options-pages.php:406
173
  msgid "Name"
174
  msgstr "Namn"
175
 
176
- #: core/options-pages.php:407 core/options-pages.php:1195
177
- #: core/options-pages.php:1258
178
  msgid "Parent"
179
  msgstr "Förälder"
180
 
181
- #: core/options-pages.php:408 core/options-pages.php:644
182
- #: core/options-pages.php:1189 core/options-pages.php:1252
183
- #: core/taxonomies.php:340 enhanced-media-library.php:503
184
  msgid "All"
185
  msgstr "Alla"
186
 
187
- #: core/options-pages.php:409 core/options-pages.php:1196
188
- #: core/options-pages.php:1259
189
  msgid "Search"
190
  msgstr "Sök"
191
 
192
- #: core/options-pages.php:411 core/options-pages.php:1240
193
  msgid "New Taxonomy"
194
  msgstr "Ny Taxonomi"
195
 
196
- #: core/options-pages.php:413
197
  msgid "Remove Taxonomy"
198
  msgstr ""
199
 
200
- #: core/options-pages.php:414
201
  msgid "Taxonomy will be removed."
202
  msgstr ""
203
 
204
- #: core/options-pages.php:415
205
  msgid ""
206
  "Taxonomy terms (categories) will remain intact in the database. If you "
207
  "create a taxonomy with the same name in the future, its terms (categories) "
208
  "will be available again."
209
  msgstr ""
210
 
211
- #: core/options-pages.php:416
212
  msgid "Media items will remain intact."
213
  msgstr ""
214
 
215
- #: core/options-pages.php:417
216
  msgid "Are you still sure?"
217
  msgstr ""
218
 
219
- #: core/options-pages.php:418
220
  msgid "Yes, remove taxonomy"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:420
224
  msgid "Duplicate"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:421
228
  msgid "Taxonomy with the same name already exists. Please chose other one."
229
  msgstr ""
230
  "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
231
 
232
- #: core/options-pages.php:423
233
  msgid "Empty Fields"
234
  msgstr ""
235
 
236
- #: core/options-pages.php:424
237
  msgid "Please choose Singular and Plural names for all new taxomonies."
238
  msgstr ""
239
 
240
- #: core/options-pages.php:425
241
  msgid "Please choose Singular name for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:426
245
  msgid "Please choose Plural Name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:428
249
  msgid "Ok"
250
  msgstr ""
251
 
252
- #: core/options-pages.php:429 core/options-pages.php:434
253
- #: core/options-pages.php:478 core/options-pages.php:523
254
- #: pro/enhanced-media-library-pro.php:133
255
  msgid "Cancel"
256
  msgstr ""
257
 
258
- #: core/options-pages.php:431 pro/core/options-pages.php:185
259
  msgid "Synchronize Now"
260
  msgstr ""
261
 
262
- #: core/options-pages.php:432 core/options-pages.php:520
263
  msgid "This operation cannot be canceled! Are you still sure?"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:433
267
  msgid "Synchronize"
268
  msgstr ""
269
 
270
- #: core/options-pages.php:435
271
  msgid "Synchronizing..."
272
  msgstr ""
273
 
274
- #: core/options-pages.php:473 core/options-pages.php:1579
275
  msgid "Restore WordPress default MIME Types"
276
  msgstr ""
277
 
278
- #: core/options-pages.php:474
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr ""
281
  "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
282
 
283
- #: core/options-pages.php:475
284
  msgid "Restore Defaults"
285
  msgstr ""
286
 
287
- #: core/options-pages.php:476
288
  msgid "Restoring..."
289
  msgstr ""
290
 
291
- #: core/options-pages.php:480
292
  msgid "Please fill into all fields."
293
  msgstr "Var god fyll i alla fält."
294
 
295
- #: core/options-pages.php:481
296
  msgid "Duplicate extensions or MIME types. Please chose other one."
297
  msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
298
 
299
- #: core/options-pages.php:518 core/options-pages.php:635
300
  msgid "Complete Cleanup"
301
  msgstr ""
302
 
303
- #: core/options-pages.php:519
304
  msgid ""
305
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
306
  "plugin data</strong> from the database including backups."
307
  msgstr ""
308
 
309
- #: core/options-pages.php:521
310
  msgid "Yes, delete all data"
311
  msgstr ""
312
 
313
- #: core/options-pages.php:522
314
  msgid "Cleaning..."
315
  msgstr ""
316
 
317
- #: core/options-pages.php:553
318
  msgid "Enhanced Media Library Settings"
319
  msgstr ""
320
 
321
- #: core/options-pages.php:563
322
  msgid "Export"
323
  msgstr ""
324
 
325
- #: core/options-pages.php:567
326
  msgid ""
327
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
328
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -330,15 +331,15 @@ msgid ""
330
  "another website."
331
  msgstr ""
332
 
333
- #: core/options-pages.php:572
334
  msgid "Export Plugin Settings"
335
  msgstr ""
336
 
337
- #: core/options-pages.php:582
338
  msgid "Import"
339
  msgstr ""
340
 
341
- #: core/options-pages.php:586
342
  msgid ""
343
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
344
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -346,173 +347,168 @@ msgid ""
346
  "another website using the export button above."
347
  msgstr ""
348
 
349
- #: core/options-pages.php:587
350
  msgid ""
351
  "All plugin settings will be overridden by the import. You will have a chance "
352
  "to restore current data from an automatic backup in case you are not "
353
  "satisfied with the result of the import."
354
  msgstr ""
355
 
356
- #: core/options-pages.php:594
357
  msgid "Import Plugin Settings"
358
  msgstr ""
359
 
360
- #: core/options-pages.php:606
361
  msgid "Restore"
362
  msgstr ""
363
 
364
- #: core/options-pages.php:612
365
  msgid "No backup available at the moment."
366
  msgstr ""
367
 
368
- #: core/options-pages.php:614
369
  msgid "Backup will be created automatically before any import operation."
370
  msgstr ""
371
 
372
- #: core/options-pages.php:618
373
  msgid ""
374
  "The backup has been automatically created before the latest import operation."
375
  msgstr ""
376
 
377
- #: core/options-pages.php:622
378
  msgid "Restore Settings from the Backup"
379
  msgstr ""
380
 
381
- #: core/options-pages.php:642
382
  msgid "What will be deleted:"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:647
386
  msgid "All plugin options"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:648
390
  msgid "All plugin backups stored in database"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:652
394
  msgid "What will remain intact:"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:653
398
  msgid "All media items"
399
  msgstr ""
400
 
401
- #: core/options-pages.php:654
402
  msgid "All taxonomies not listed above"
403
  msgstr ""
404
 
405
- #: core/options-pages.php:657
406
  msgid ""
407
  "The plugin cannot delete itself because of security reason. Please delete it "
408
  "manually from plugin list after cleanup."
409
  msgstr ""
410
 
411
- #: core/options-pages.php:659
412
  msgid ""
413
  "If you are not sure about this operation please create a backup of your "
414
  "database prior to cleanup!"
415
  msgstr ""
416
 
417
- #: core/options-pages.php:665
418
  msgid "Delete All Data & Deactivate"
419
  msgstr ""
420
 
421
- #: core/options-pages.php:765
422
  msgid "Please upload a file to import settings."
423
  msgstr ""
424
 
425
- #: core/options-pages.php:791
426
  msgid "Plugin settings imported."
427
  msgstr ""
428
 
429
- #: core/options-pages.php:838
430
  msgid "Plugin settings restored from the backup."
431
  msgstr ""
432
 
433
- #: core/options-pages.php:1027
434
  msgid "Media Items Order"
435
  msgstr ""
436
 
437
- #: core/options-pages.php:1034
438
  msgid "Order media items by"
439
  msgstr ""
440
 
441
- #: core/options-pages.php:1037 pro/core/medialist.php:28
442
- #: pro/core/medialist.php:73
443
  msgid "Date"
444
  msgstr ""
445
 
446
- #: core/options-pages.php:1038 pro/core/medialist.php:31
447
- #: pro/core/medialist.php:76
448
  msgid "Title"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1039 pro/core/medialist.php:34
452
- #: pro/core/medialist.php:79
453
  msgid "Custom Order"
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1041 core/options-pages.php:1053
457
  msgid "For media library and media popups"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1042
461
  msgid "Option allows to change order by drag and drop with Custom Order value."
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1047
465
  msgid "Sort order"
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1050 pro/core/medialist.php:47
469
- #: pro/core/medialist.php:92
470
  msgid "Ascending"
471
  msgstr ""
472
 
473
- #: core/options-pages.php:1051 pro/core/medialist.php:50
474
- #: pro/core/medialist.php:95
475
  msgid "Descending"
476
  msgstr ""
477
 
478
- #: core/options-pages.php:1066
479
  msgid "Media Shortcodes"
480
  msgstr ""
481
 
482
- #: core/options-pages.php:1073 core/options-pages.php:1076
483
  msgid "Enhanced media shortcodes"
484
  msgstr ""
485
 
486
- #: core/options-pages.php:1077
487
  msgid ""
488
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
489
  "upload date, and media items number limit"
490
  msgstr ""
491
 
492
- #: core/options-pages.php:1078
493
  msgid "Gallery example:"
494
  msgstr ""
495
 
496
- #: core/options-pages.php:1079
497
  msgid "Audio playlist example:"
498
  msgstr ""
499
 
500
- #: core/options-pages.php:1080
501
  msgid "Video playlist example:"
502
  msgstr ""
503
 
504
- #: core/options-pages.php:1082
505
  #, php-format
506
  msgid ""
507
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
508
  msgstr ""
509
 
510
- #: core/options-pages.php:1084
511
  #, php-format
512
  msgid "%sLearn more%s."
513
  msgstr ""
514
 
515
- #: core/options-pages.php:1086
516
  #, php-format
517
  msgid ""
518
  "Please check out your gallery front-end and back-end functionality once this "
@@ -520,239 +516,239 @@ msgid ""
520
  "%s."
521
  msgstr ""
522
 
523
- #: core/options-pages.php:1155 core/options-pages.php:1302
524
  msgid "Assign following taxonomies to Media Library:"
525
  msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
526
 
527
- #: core/options-pages.php:1174 core/options-pages.php:1240
528
- #: core/options-pages.php:1324
529
  msgid "Assign Taxonomy"
530
  msgstr "Tilldela Taxonomi"
531
 
532
- #: core/options-pages.php:1175 core/options-pages.php:1325
533
  msgid "Edit Taxonomy"
534
  msgstr "Redigera Taxonomi"
535
 
536
- #: core/options-pages.php:1179 core/options-pages.php:1242
537
  msgid "Delete Taxonomy"
538
  msgstr "Ta Bort Taxonomi"
539
 
540
- #: core/options-pages.php:1184 core/options-pages.php:1247
541
  msgid "Labels"
542
  msgstr "Etiketter"
543
 
544
- #: core/options-pages.php:1186 core/options-pages.php:1249
545
  msgid "Singular"
546
  msgstr "Singular"
547
 
548
- #: core/options-pages.php:1187 core/options-pages.php:1250
549
  msgid "Plural"
550
  msgstr "Plural"
551
 
552
- #: core/options-pages.php:1188 core/options-pages.php:1251
553
  msgid "Menu Name"
554
  msgstr "Menynamn"
555
 
556
- #: core/options-pages.php:1201 core/options-pages.php:1224
557
- #: core/options-pages.php:1264 core/options-pages.php:1328
558
  msgid "Settings"
559
  msgstr "Inställningar"
560
 
561
- #: core/options-pages.php:1203 core/options-pages.php:1266
562
  msgid "Taxonomy Name"
563
  msgstr "Taxonominamn"
564
 
565
- #: core/options-pages.php:1204 core/options-pages.php:1267
566
  msgid "Hierarchical"
567
  msgstr "Hierarkisk"
568
 
569
- #: core/options-pages.php:1205 core/options-pages.php:1268
570
  msgid "Column for List View"
571
  msgstr ""
572
 
573
- #: core/options-pages.php:1206 core/options-pages.php:1226
574
- #: core/options-pages.php:1269 core/options-pages.php:1330
575
  msgid "Filter for List View"
576
  msgstr ""
577
 
578
- #: core/options-pages.php:1207 core/options-pages.php:1227
579
- #: core/options-pages.php:1270 core/options-pages.php:1331
580
  msgid "Filter for Grid View / Media Popup"
581
  msgstr ""
582
 
583
- #: core/options-pages.php:1208 core/options-pages.php:1228
584
- #: core/options-pages.php:1271 core/options-pages.php:1332
585
  msgid "Edit in Media Popup"
586
  msgstr "Redigera i Media-popup"
587
 
588
- #: core/options-pages.php:1209 core/options-pages.php:1272
589
  msgid "Show in Nav Menu"
590
  msgstr "Visa i Nav Menu"
591
 
592
- #: core/options-pages.php:1210 core/options-pages.php:1273
593
  msgid "Remember Terms Order (sort)"
594
  msgstr ""
595
 
596
- #: core/options-pages.php:1211 core/options-pages.php:1274
597
  msgid "Show in REST"
598
  msgstr ""
599
 
600
- #: core/options-pages.php:1212 core/options-pages.php:1275
601
  msgid "Rewrite Slug"
602
  msgstr "Skriv Om Slug"
603
 
604
- #: core/options-pages.php:1213 core/options-pages.php:1276
605
  msgid "Slug with Front"
606
  msgstr "Slug med Framsida"
607
 
608
- #: core/options-pages.php:1288
609
  msgid "Add New Taxonomy"
610
  msgstr "Lägg Till Ny Taxonomi"
611
 
612
- #: core/options-pages.php:1298
613
  msgid "Non-Media Taxonomies"
614
  msgstr "Icke-Media-taxonomier"
615
 
616
- #: core/options-pages.php:1361
617
  msgid "Options"
618
  msgstr "Alternativ"
619
 
620
- #: core/options-pages.php:1371 core/options-pages.php:1374
621
  msgid "Taxonomy archive pages"
622
  msgstr "Arkivsidor för Taxonomier"
623
 
624
- #: core/options-pages.php:1375
625
  msgid "Turn on media taxonomy archive pages on the front-end"
626
  msgstr "Slå på arkivsidor för mediataxonomier i frontend"
627
 
628
- #: core/options-pages.php:1376
629
  msgid ""
630
  "Re-save your permalink settings after this option change to make it work."
631
  msgstr ""
632
  "Återspara inställningarna för permalänkar efter en ändring av detta "
633
  "alternativ för att få det att fungera."
634
 
635
- #: core/options-pages.php:1382 core/options-pages.php:1385
636
  msgid "Assign all like hierarchical"
637
  msgstr "Tilldela alla som hierarkiska"
638
 
639
- #: core/options-pages.php:1386
640
  msgid ""
641
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
642
  msgstr ""
643
  "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
644
 
645
- #: core/options-pages.php:1392 core/options-pages.php:1395
646
  msgid "Force filters"
647
  msgstr "Tvinga filter"
648
 
649
- #: core/options-pages.php:1396
650
  msgid "Show media filters for ANY Media Popup"
651
  msgstr ""
652
 
653
- #: core/options-pages.php:1397
654
  msgid "Try this if filters are not shown for third-party plugins or themes."
655
  msgstr ""
656
 
657
- #: core/options-pages.php:1403 core/options-pages.php:1406
658
  msgid "Show count"
659
  msgstr ""
660
 
661
- #: core/options-pages.php:1407
662
  msgid "Show item count per category for media filters"
663
  msgstr ""
664
 
665
- #: core/options-pages.php:1461
666
  msgid "Add New MIME Type"
667
  msgstr "Lägg Till Ny MIME-typ"
668
 
669
- #: core/options-pages.php:1481 core/options-pages.php:1536
670
  msgid "Extension"
671
  msgstr "Utökning"
672
 
673
- #: core/options-pages.php:1482 core/options-pages.php:1537
674
  msgid "MIME Type"
675
  msgstr "MIME-typ"
676
 
677
- #: core/options-pages.php:1483 core/options-pages.php:1538
678
  msgid "Singular Label"
679
  msgstr "Singular-etikett"
680
 
681
- #: core/options-pages.php:1484 core/options-pages.php:1539
682
  msgid "Plural Label"
683
  msgstr "Plural-etikett"
684
 
685
- #: core/options-pages.php:1485 core/options-pages.php:1515
686
- #: core/options-pages.php:1528 core/options-pages.php:1540
687
  msgid "Add Filter"
688
  msgstr "Lägg Till Filter"
689
 
690
- #: core/options-pages.php:1486 core/options-pages.php:1516
691
- #: core/options-pages.php:1529 core/options-pages.php:1541
692
  msgid "Allow Upload"
693
  msgstr "Tillåt Uppladdning"
694
 
695
- #: core/options-pages.php:1517 core/options-pages.php:1530
696
  msgid "Delete MIME Type"
697
  msgstr "Ta Bort MIME-typ"
698
 
699
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
700
  msgid "Save Changes"
701
  msgstr "Spara Ändringar"
702
 
703
- #: core/options-pages.php:1607
704
  msgid "Changelog"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1608
708
  msgid "What's new in"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1608
712
  msgid "version"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1611
716
  msgid "More features under the hood"
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1613
720
  msgid "Support"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1614
724
  msgid "Feel free to ask for help on"
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1614
728
  msgid "Support is free for both versions of the plugin."
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1616
732
  msgid "Plugin rating"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1617
736
  msgid "Please"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1617
740
  msgid "vote for the plugin"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1617
744
  msgid "Thanks!"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1619
748
  msgid "Other plugins you may find useful"
749
  msgstr ""
750
 
751
- #: core/options-pages.php:1658
752
  msgid "Utility"
753
  msgstr ""
754
 
755
- #: core/options-pages.php:1681
756
  msgid "Vote!"
757
  msgstr ""
758
 
@@ -765,360 +761,98 @@ msgid "Media Library settings saved."
765
  msgstr ""
766
 
767
  #: core/taxonomies.php:333 core/taxonomies.php:339
768
- #: enhanced-media-library.php:502
769
  msgid "Filter by"
770
  msgstr "Filtrera efter"
771
 
772
- #: core/taxonomies.php:341 enhanced-media-library.php:504
773
  msgid "Not in a"
774
  msgstr "Ej i"
775
 
776
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
777
- msgid "All Uncategorized"
778
- msgstr "Alla Okategoriserade"
779
-
780
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
781
- msgid "Reset All Filters"
782
- msgstr "Återställ alla filter"
783
-
784
- #: enhanced-media-library.php:535
785
- msgid "Uploaded to post #"
786
- msgstr ""
787
-
788
- #: enhanced-media-library.php:536
789
- msgid "Based On"
790
- msgstr ""
791
-
792
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
793
- msgid "Media Categories"
794
- msgstr ""
795
-
796
- #: enhanced-media-library.php:582
797
- msgid "Media Category"
798
- msgstr ""
799
-
800
- #: enhanced-media-library.php:584
801
- msgid "All Media Categories"
802
- msgstr ""
803
-
804
- #: enhanced-media-library.php:585
805
- msgid "Edit Media Category"
806
- msgstr ""
807
-
808
- #: enhanced-media-library.php:586
809
- msgid "View Media Category"
810
- msgstr ""
811
-
812
- #: enhanced-media-library.php:587
813
- msgid "Update Media Category"
814
- msgstr ""
815
-
816
- #: enhanced-media-library.php:588
817
- msgid "Add New Media Category"
818
- msgstr ""
819
-
820
- #: enhanced-media-library.php:589
821
- msgid "New Media Category Name"
822
- msgstr ""
823
-
824
- #: enhanced-media-library.php:590
825
- msgid "Parent Media Category"
826
- msgstr ""
827
-
828
- #: enhanced-media-library.php:591
829
- msgid "Parent Media Category:"
830
- msgstr ""
831
-
832
- #: enhanced-media-library.php:592
833
- msgid "Search Media Categories"
834
- msgstr ""
835
-
836
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
837
  msgid "Remove"
838
  msgstr "Ta Bort"
839
 
840
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
841
  msgid "Deselect"
842
  msgstr "Avmarkera"
843
 
844
- #: pro/core/bulk-edit.php:105
845
  msgid "Caption this image&hellip;"
846
  msgstr "Rubricera denna bild&hellip;"
847
 
848
- #: pro/core/bulk-edit.php:109
849
  msgid "Describe this video&hellip;"
850
  msgstr "Beskriv denna video&hellip;"
851
 
852
- #: pro/core/bulk-edit.php:111
853
  msgid "Describe this audio file&hellip;"
854
  msgstr "Beskriv denna audiofil&hellip;"
855
 
856
- #: pro/core/bulk-edit.php:113
857
  msgid "Describe this media file&hellip;"
858
  msgstr "Beskriv denna mediafil&hellip;"
859
 
860
- #: pro/core/bulk-edit.php:122
861
- msgid "Attachments Details"
862
- msgstr "Detaljer För Bilaga"
863
-
864
- #: pro/core/bulk-edit.php:175
865
- msgid "Select All"
866
- msgstr "Välj Alla"
867
-
868
- #: pro/core/bulk-edit.php:176
869
- msgid "Deselect All"
870
- msgstr "Avmarkera Alla"
871
-
872
- #: pro/core/bulk-edit.php:177
873
- msgid "Delete Selected"
874
- msgstr "Ta Bort Valda"
875
-
876
- #: pro/core/bulk-edit.php:178
877
- msgid "Trash Selected"
878
- msgstr ""
879
-
880
- #: pro/core/bulk-edit.php:179
881
- msgid "Restore Selected"
882
- msgstr ""
883
-
884
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
885
- msgid "Delete Selected Permanently"
886
- msgstr ""
887
-
888
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
889
- msgid "Order By"
890
- msgstr ""
891
-
892
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
893
- msgid "Random"
894
- msgstr ""
895
-
896
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
897
- msgid "Order"
898
- msgstr ""
899
-
900
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
901
- msgid "Limit"
902
- msgstr ""
903
-
904
- #: pro/core/options-pages.php:78
905
- msgid "Your license has been deactivated."
906
- msgstr ""
907
-
908
- #: pro/core/options-pages.php:88
909
- msgid "Please check if your license key is correct and try again."
910
- msgstr ""
911
-
912
- #: pro/core/options-pages.php:104
913
- #, php-format
914
- msgid ""
915
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
916
- "authors</a>."
917
- msgstr ""
918
-
919
- #: pro/core/options-pages.php:119
920
- #, php-format
921
- msgid ""
922
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
923
- "plugin authors</a>."
924
- msgstr ""
925
-
926
- #: pro/core/options-pages.php:130
927
- msgid "You license has been activated."
928
- msgstr ""
929
-
930
- #: pro/core/options-pages.php:184
931
- #, php-format
932
- msgid "Auto-assign media items to parent %s %s on upload"
933
- msgstr ""
934
-
935
- #: pro/core/options-pages.php:185
936
- #, php-format
937
- msgid ""
938
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
939
- "attached to a %s will be assigned to %s of their parent %s. Currently "
940
- "assigned %s will not be saved. Media items that are not attached to any %s "
941
- "will not be affected."
942
- msgstr ""
943
-
944
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
945
- msgid "Bulk Edit"
946
- msgstr "Bulkredigering"
947
-
948
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
949
- msgid "Turn off 'Save Changes' button"
950
- msgstr "Stäng av knappen 'Spara Ändringar'"
951
-
952
- #: pro/core/options-pages.php:220
953
- msgid "Save changes on the fly"
954
- msgstr "Spara ändringar direkt"
955
-
956
- #: pro/core/options-pages.php:221
957
- msgid ""
958
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
959
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
960
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
961
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
962
- "files / taxonomies with this option turned on."
963
- msgstr ""
964
-
965
- #: pro/core/options-pages.php:222
966
- msgid ""
967
- "Strongly NOT recommended option if you work with more than hundred of files "
968
- "at a time."
969
- msgstr ""
970
- "Detta alternativ rekommenderas INTE om du arbetar med fler än hundra filer "
971
- "åt gången."
972
-
973
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
974
- msgid "License Key"
975
- msgstr "Licensnyckel"
976
-
977
- #: pro/core/options-pages.php:273
978
- #, php-format
979
- msgid ""
980
- "To unlock updates please enter your license key below. You can get your "
981
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
982
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
983
- msgstr ""
984
-
985
- #: pro/core/options-pages.php:283
986
- msgid "Activate License"
987
- msgstr "Aktivera Licens"
988
-
989
- #: pro/core/options-pages.php:290
990
- msgid "Your license is active!"
991
- msgstr "Din licens är aktiv!"
992
-
993
- #: pro/core/options-pages.php:294
994
- msgid "Deactivate License"
995
- msgstr ""
996
-
997
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
998
- msgid ""
999
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1000
- "this server&#8217;s configuration. If you continue to have problems, please "
1001
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1002
- msgstr ""
1003
- "Ett oväntat fel uppstod. Någonting kanske är fel på WordPress.org eller med "
1004
- "denna servers konfigurering. Om du fortsätter att stöta på problem, var god "
1005
- "prova <a href=\"https://wordpress.org/support/\">WordPress supportforum</a>."
1006
-
1007
- #: pro/core/update.php:113
1008
- msgid ""
1009
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1010
- "contact your server administrator.)"
1011
- msgstr ""
1012
- "(WordPress kunde inte etablera en säker uppkoppling till WordPress.org. Var "
1013
- "god kontakta din serveradministratör)"
1014
-
1015
- #: pro/core/update.php:181
1016
- #, php-format
1017
- msgid ""
1018
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1019
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1020
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1021
- msgstr ""
1022
-
1023
- #: pro/enhanced-media-library-pro.php:119
1024
- msgid "ALL files belong to this item"
1025
- msgstr "ALLA filer tillhör detta objekt"
1026
-
1027
- #: pro/enhanced-media-library-pro.php:120
1028
- msgid "SOME files belong to this item"
1029
- msgstr "NÅGRA filer tillhör detta objekt"
1030
-
1031
- #: pro/enhanced-media-library-pro.php:121
1032
- msgid "NO files belong to this item"
1033
- msgstr "INGA filer tillhör detta objekt"
1034
-
1035
- #: pro/enhanced-media-library-pro.php:122
1036
- msgid "Changes saved."
1037
- msgstr "Ändringar sparade."
1038
-
1039
- #: pro/enhanced-media-library-pro.php:123
1040
- msgid "Something went wrong."
1041
- msgstr "Någonting gick fel."
1042
 
1043
- #: pro/enhanced-media-library-pro.php:126
1044
- msgid "Edit Media Files"
1045
- msgstr "Redigera Mediafiler"
1046
 
1047
- #: pro/enhanced-media-library-pro.php:129
1048
- msgid "Selecting"
1049
  msgstr ""
1050
 
1051
- #: pro/enhanced-media-library-pro.php:131
1052
- msgid "You are about to permanently delete all selected items."
1053
  msgstr ""
1054
 
1055
- #: pro/enhanced-media-library-pro.php:132
1056
- msgid "Delete"
1057
  msgstr ""
1058
 
1059
- #: pro/enhanced-media-library-pro.php:134
1060
- msgid "Moving to Trash"
1061
  msgstr ""
1062
 
1063
- #: pro/enhanced-media-library-pro.php:135
1064
- msgid "Restoring"
1065
  msgstr ""
1066
 
1067
- #: pro/enhanced-media-library-pro.php:136
1068
- msgid "Deleting"
1069
  msgstr ""
1070
 
1071
- #: pro/enhanced-media-library-pro.php:160
1072
- msgid "Create a filter-based gallery"
1073
  msgstr ""
1074
 
1075
- #: pro/enhanced-media-library-pro.php:161
1076
- msgid "Create a filter-based playlist"
1077
  msgstr ""
1078
 
1079
- #: pro/enhanced-media-library-pro.php:162
1080
- msgid "Create a filter-based video playlist"
1081
  msgstr ""
1082
 
1083
- #: pro/enhanced-media-library-pro.php:240
1084
- msgid ""
1085
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1086
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1087
- "will remain intact."
1088
  msgstr ""
1089
 
1090
- #: pro/enhanced-media-library-pro.php:240
1091
- msgid "Return to Plugins"
1092
- msgstr "Återgå till Tillägg"
1093
-
1094
- #: pro/enhanced-media-library-pro.php:291
1095
- msgid ""
1096
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1097
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1098
- "be active. Please network deactivate and delete the free versions of the "
1099
- "plugin. All your data will remain intact."
1100
  msgstr ""
1101
 
1102
- #: pro/enhanced-media-library-pro.php:308
1103
- msgid ""
1104
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1105
- "be active. Please deactivate and delete the free version of the plugin. All "
1106
- "your data will remain intact."
1107
  msgstr ""
1108
 
1109
- #: pro/enhanced-media-library-pro.php:324
1110
- msgid ""
1111
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1112
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1113
- "version to be active. Please deactivate (or network deactivate) and delete "
1114
- "the free version of the plugin for this site. All your data will remail "
1115
- "intact."
1116
  msgstr ""
1117
 
1118
- #. Plugin Name of the plugin/theme
1119
- msgid "Enhanced Media Library PRO"
1120
- msgstr "Enhanced Media Library PRO"
1121
-
1122
  #. Plugin URI of the plugin/theme
1123
  #. Author URI of the plugin/theme
1124
  msgid "http://wpUXsolutions.com"
@@ -1133,6 +867,3 @@ msgstr ""
1133
  #. Author of the plugin/theme
1134
  msgid "wpUXsolutions"
1135
  msgstr ""
1136
-
1137
- #~ msgid "Not in"
1138
- #~ msgstr "Ej i"
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-01-13 03:03+0200\n"
6
+ "PO-Revision-Date: 2017-01-13 03:03+0200\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: Swedish (Sweden)\n"
9
  "Language: sv_SE\n"
31
  msgstr[0] ""
32
  msgstr[1] ""
33
 
34
+ #: core/options-pages.php:97 core/options-pages.php:220
35
+ #: core/options-pages.php:313 core/options-pages.php:1080
36
+ #: core/options-pages.php:1204 core/options-pages.php:1529
37
+ #: core/options-pages.php:1729
38
  msgid "Media Settings"
39
  msgstr "Mediainställningar"
40
 
41
+ #: core/options-pages.php:106 core/options-pages.php:285
42
  msgid "Media Library"
43
  msgstr "Mediabiblioteket"
44
 
46
  msgid "Taxonomies"
47
  msgstr "Taxonomier"
48
 
49
+ #: core/options-pages.php:124 core/options-pages.php:287
50
  msgid "MIME Types"
51
  msgstr "MIME-typer"
52
 
53
+ #. Plugin Name of the plugin/theme
54
  #: core/options-pages.php:135 core/options-pages.php:136
55
  msgid "Enhanced Media Library"
56
  msgstr "Enhanced Media Library"
57
 
58
+ #: core/options-pages.php:284
59
  msgid "General"
60
  msgstr ""
61
 
62
+ #: core/options-pages.php:286 core/options-pages.php:1225
63
  msgid "Media Taxonomies"
64
  msgstr "Mediataxonomier"
65
 
66
+ #: core/options-pages.php:310 core/options-pages.php:622
67
+ #: core/options-pages.php:1076 core/options-pages.php:1201
68
+ #: core/options-pages.php:1525
69
  msgid "You do not have sufficient permissions to access this page."
70
  msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
71
 
72
+ #: core/options-pages.php:324
73
  msgid "Image sizes"
74
  msgstr ""
75
 
76
+ #: core/options-pages.php:325
77
  msgid ""
78
  "The sizes listed below determine the maximum dimensions in pixels to use "
79
  "when adding an image to the Media Library."
80
  msgstr ""
81
 
82
+ #: core/options-pages.php:329
83
  msgid "Thumbnail size"
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:331
87
  msgid "Width"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:333
91
  msgid "Height"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:336
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
 
99
+ #: core/options-pages.php:341 core/options-pages.php:342
100
  msgid "Medium size"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:343 core/options-pages.php:353
104
  msgid "Max Width"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:345 core/options-pages.php:355
108
  msgid "Max Height"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:351 core/options-pages.php:352
112
  msgid "Large size"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:368
116
  msgid "Embeds"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:375
120
  msgid "Uploading Files"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:382
124
  msgid "Store uploads in this folder"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:386
128
  #, php-format
129
  msgid "Default is %s"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:392
133
  msgid "Full URL path to files"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:394
137
  msgid "Configuring this is optional. By default, it should be blank."
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:402
141
  msgid "Organize my uploads into month- and year-based folders"
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:474 core/options-pages.php:1249
145
+ #: core/options-pages.php:1264 core/options-pages.php:1327
146
+ #: core/options-pages.php:1399
147
  msgid "Edit"
148
  msgstr "Redigera"
149
 
150
+ #: core/options-pages.php:475
151
  msgid "Close"
152
  msgstr "Stäng"
153
 
154
+ #: core/options-pages.php:476 core/options-pages.php:1265
155
+ #: core/options-pages.php:1328
156
  msgid "View"
157
  msgstr "Visa"
158
 
159
+ #: core/options-pages.php:477 core/options-pages.php:1266
160
+ #: core/options-pages.php:1329
161
  msgid "Update"
162
  msgstr "Uppdatera"
163
 
164
+ #: core/options-pages.php:478 core/options-pages.php:1267
165
+ #: core/options-pages.php:1330
166
  msgid "Add New"
167
  msgstr "Lägg Till Ny"
168
 
169
+ #: core/options-pages.php:479 core/options-pages.php:1268
170
+ #: core/options-pages.php:1331
171
  msgid "New"
172
  msgstr "Ny"
173
 
174
+ #: core/options-pages.php:480
175
  msgid "Name"
176
  msgstr "Namn"
177
 
178
+ #: core/options-pages.php:481 core/options-pages.php:1269
179
+ #: core/options-pages.php:1332
180
  msgid "Parent"
181
  msgstr "Förälder"
182
 
183
+ #: core/options-pages.php:482 core/options-pages.php:718
184
+ #: core/options-pages.php:1263 core/options-pages.php:1326
185
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
186
  msgid "All"
187
  msgstr "Alla"
188
 
189
+ #: core/options-pages.php:483 core/options-pages.php:1270
190
+ #: core/options-pages.php:1333
191
  msgid "Search"
192
  msgstr "Sök"
193
 
194
+ #: core/options-pages.php:485 core/options-pages.php:1314
195
  msgid "New Taxonomy"
196
  msgstr "Ny Taxonomi"
197
 
198
+ #: core/options-pages.php:487
199
  msgid "Remove Taxonomy"
200
  msgstr ""
201
 
202
+ #: core/options-pages.php:488
203
  msgid "Taxonomy will be removed."
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:489
207
  msgid ""
208
  "Taxonomy terms (categories) will remain intact in the database. If you "
209
  "create a taxonomy with the same name in the future, its terms (categories) "
210
  "will be available again."
211
  msgstr ""
212
 
213
+ #: core/options-pages.php:490
214
  msgid "Media items will remain intact."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:491
218
  msgid "Are you still sure?"
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:492
222
  msgid "Yes, remove taxonomy"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:494
226
  msgid "Duplicate"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:495
230
  msgid "Taxonomy with the same name already exists. Please chose other one."
231
  msgstr ""
232
  "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
233
 
234
+ #: core/options-pages.php:497
235
  msgid "Empty Fields"
236
  msgstr ""
237
 
238
+ #: core/options-pages.php:498
239
  msgid "Please choose Singular and Plural names for all new taxomonies."
240
  msgstr ""
241
 
242
+ #: core/options-pages.php:499
243
  msgid "Please choose Singular name for all new taxomonies."
244
  msgstr ""
245
 
246
+ #: core/options-pages.php:500
247
  msgid "Please choose Plural Name for all new taxomonies."
248
  msgstr ""
249
 
250
+ #: core/options-pages.php:502
251
  msgid "Ok"
252
  msgstr ""
253
 
254
+ #: core/options-pages.php:503 core/options-pages.php:508
255
+ #: core/options-pages.php:552 core/options-pages.php:597
 
256
  msgid "Cancel"
257
  msgstr ""
258
 
259
+ #: core/options-pages.php:505
260
  msgid "Synchronize Now"
261
  msgstr ""
262
 
263
+ #: core/options-pages.php:506 core/options-pages.php:594
264
  msgid "This operation cannot be canceled! Are you still sure?"
265
  msgstr ""
266
 
267
+ #: core/options-pages.php:507
268
  msgid "Synchronize"
269
  msgstr ""
270
 
271
+ #: core/options-pages.php:509
272
  msgid "Synchronizing..."
273
  msgstr ""
274
 
275
+ #: core/options-pages.php:547 core/options-pages.php:1653
276
  msgid "Restore WordPress default MIME Types"
277
  msgstr ""
278
 
279
+ #: core/options-pages.php:548
280
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
281
  msgstr ""
282
  "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
283
 
284
+ #: core/options-pages.php:549
285
  msgid "Restore Defaults"
286
  msgstr ""
287
 
288
+ #: core/options-pages.php:550
289
  msgid "Restoring..."
290
  msgstr ""
291
 
292
+ #: core/options-pages.php:554
293
  msgid "Please fill into all fields."
294
  msgstr "Var god fyll i alla fält."
295
 
296
+ #: core/options-pages.php:555
297
  msgid "Duplicate extensions or MIME types. Please chose other one."
298
  msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
299
 
300
+ #: core/options-pages.php:592 core/options-pages.php:709
301
  msgid "Complete Cleanup"
302
  msgstr ""
303
 
304
+ #: core/options-pages.php:593
305
  msgid ""
306
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
307
  "plugin data</strong> from the database including backups."
308
  msgstr ""
309
 
310
+ #: core/options-pages.php:595
311
  msgid "Yes, delete all data"
312
  msgstr ""
313
 
314
+ #: core/options-pages.php:596
315
  msgid "Cleaning..."
316
  msgstr ""
317
 
318
+ #: core/options-pages.php:627
319
  msgid "Enhanced Media Library Settings"
320
  msgstr ""
321
 
322
+ #: core/options-pages.php:637
323
  msgid "Export"
324
  msgstr ""
325
 
326
+ #: core/options-pages.php:641
327
  msgid ""
328
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
329
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
331
  "another website."
332
  msgstr ""
333
 
334
+ #: core/options-pages.php:646
335
  msgid "Export Plugin Settings"
336
  msgstr ""
337
 
338
+ #: core/options-pages.php:656
339
  msgid "Import"
340
  msgstr ""
341
 
342
+ #: core/options-pages.php:660
343
  msgid ""
344
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
345
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
347
  "another website using the export button above."
348
  msgstr ""
349
 
350
+ #: core/options-pages.php:661
351
  msgid ""
352
  "All plugin settings will be overridden by the import. You will have a chance "
353
  "to restore current data from an automatic backup in case you are not "
354
  "satisfied with the result of the import."
355
  msgstr ""
356
 
357
+ #: core/options-pages.php:668
358
  msgid "Import Plugin Settings"
359
  msgstr ""
360
 
361
+ #: core/options-pages.php:680
362
  msgid "Restore"
363
  msgstr ""
364
 
365
+ #: core/options-pages.php:686
366
  msgid "No backup available at the moment."
367
  msgstr ""
368
 
369
+ #: core/options-pages.php:688
370
  msgid "Backup will be created automatically before any import operation."
371
  msgstr ""
372
 
373
+ #: core/options-pages.php:692
374
  msgid ""
375
  "The backup has been automatically created before the latest import operation."
376
  msgstr ""
377
 
378
+ #: core/options-pages.php:696
379
  msgid "Restore Settings from the Backup"
380
  msgstr ""
381
 
382
+ #: core/options-pages.php:716
383
  msgid "What will be deleted:"
384
  msgstr ""
385
 
386
+ #: core/options-pages.php:721
387
  msgid "All plugin options"
388
  msgstr ""
389
 
390
+ #: core/options-pages.php:722
391
  msgid "All plugin backups stored in database"
392
  msgstr ""
393
 
394
+ #: core/options-pages.php:726
395
  msgid "What will remain intact:"
396
  msgstr ""
397
 
398
+ #: core/options-pages.php:727
399
  msgid "All media items"
400
  msgstr ""
401
 
402
+ #: core/options-pages.php:728
403
  msgid "All taxonomies not listed above"
404
  msgstr ""
405
 
406
+ #: core/options-pages.php:731
407
  msgid ""
408
  "The plugin cannot delete itself because of security reason. Please delete it "
409
  "manually from plugin list after cleanup."
410
  msgstr ""
411
 
412
+ #: core/options-pages.php:733
413
  msgid ""
414
  "If you are not sure about this operation please create a backup of your "
415
  "database prior to cleanup!"
416
  msgstr ""
417
 
418
+ #: core/options-pages.php:739
419
  msgid "Delete All Data & Deactivate"
420
  msgstr ""
421
 
422
+ #: core/options-pages.php:839
423
  msgid "Please upload a file to import settings."
424
  msgstr ""
425
 
426
+ #: core/options-pages.php:865
427
  msgid "Plugin settings imported."
428
  msgstr ""
429
 
430
+ #: core/options-pages.php:912
431
  msgid "Plugin settings restored from the backup."
432
  msgstr ""
433
 
434
+ #: core/options-pages.php:1101
435
  msgid "Media Items Order"
436
  msgstr ""
437
 
438
+ #: core/options-pages.php:1108
439
  msgid "Order media items by"
440
  msgstr ""
441
 
442
+ #: core/options-pages.php:1111
 
443
  msgid "Date"
444
  msgstr ""
445
 
446
+ #: core/options-pages.php:1112
 
447
  msgid "Title"
448
  msgstr ""
449
 
450
+ #: core/options-pages.php:1113
 
451
  msgid "Custom Order"
452
  msgstr ""
453
 
454
+ #: core/options-pages.php:1115 core/options-pages.php:1127
455
  msgid "For media library and media popups"
456
  msgstr ""
457
 
458
+ #: core/options-pages.php:1116
459
  msgid "Option allows to change order by drag and drop with Custom Order value."
460
  msgstr ""
461
 
462
+ #: core/options-pages.php:1121
463
  msgid "Sort order"
464
  msgstr ""
465
 
466
+ #: core/options-pages.php:1124
 
467
  msgid "Ascending"
468
  msgstr ""
469
 
470
+ #: core/options-pages.php:1125
 
471
  msgid "Descending"
472
  msgstr ""
473
 
474
+ #: core/options-pages.php:1140
475
  msgid "Media Shortcodes"
476
  msgstr ""
477
 
478
+ #: core/options-pages.php:1147 core/options-pages.php:1150
479
  msgid "Enhanced media shortcodes"
480
  msgstr ""
481
 
482
+ #: core/options-pages.php:1151
483
  msgid ""
484
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
485
  "upload date, and media items number limit"
486
  msgstr ""
487
 
488
+ #: core/options-pages.php:1152
489
  msgid "Gallery example:"
490
  msgstr ""
491
 
492
+ #: core/options-pages.php:1153
493
  msgid "Audio playlist example:"
494
  msgstr ""
495
 
496
+ #: core/options-pages.php:1154
497
  msgid "Video playlist example:"
498
  msgstr ""
499
 
500
+ #: core/options-pages.php:1156
501
  #, php-format
502
  msgid ""
503
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
504
  msgstr ""
505
 
506
+ #: core/options-pages.php:1158
507
  #, php-format
508
  msgid "%sLearn more%s."
509
  msgstr ""
510
 
511
+ #: core/options-pages.php:1160
512
  #, php-format
513
  msgid ""
514
  "Please check out your gallery front-end and back-end functionality once this "
516
  "%s."
517
  msgstr ""
518
 
519
+ #: core/options-pages.php:1229 core/options-pages.php:1376
520
  msgid "Assign following taxonomies to Media Library:"
521
  msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
522
 
523
+ #: core/options-pages.php:1248 core/options-pages.php:1314
524
+ #: core/options-pages.php:1398
525
  msgid "Assign Taxonomy"
526
  msgstr "Tilldela Taxonomi"
527
 
528
+ #: core/options-pages.php:1249 core/options-pages.php:1399
529
  msgid "Edit Taxonomy"
530
  msgstr "Redigera Taxonomi"
531
 
532
+ #: core/options-pages.php:1253 core/options-pages.php:1316
533
  msgid "Delete Taxonomy"
534
  msgstr "Ta Bort Taxonomi"
535
 
536
+ #: core/options-pages.php:1258 core/options-pages.php:1321
537
  msgid "Labels"
538
  msgstr "Etiketter"
539
 
540
+ #: core/options-pages.php:1260 core/options-pages.php:1323
541
  msgid "Singular"
542
  msgstr "Singular"
543
 
544
+ #: core/options-pages.php:1261 core/options-pages.php:1324
545
  msgid "Plural"
546
  msgstr "Plural"
547
 
548
+ #: core/options-pages.php:1262 core/options-pages.php:1325
549
  msgid "Menu Name"
550
  msgstr "Menynamn"
551
 
552
+ #: core/options-pages.php:1275 core/options-pages.php:1298
553
+ #: core/options-pages.php:1338 core/options-pages.php:1402
554
  msgid "Settings"
555
  msgstr "Inställningar"
556
 
557
+ #: core/options-pages.php:1277 core/options-pages.php:1340
558
  msgid "Taxonomy Name"
559
  msgstr "Taxonominamn"
560
 
561
+ #: core/options-pages.php:1278 core/options-pages.php:1341
562
  msgid "Hierarchical"
563
  msgstr "Hierarkisk"
564
 
565
+ #: core/options-pages.php:1279 core/options-pages.php:1342
566
  msgid "Column for List View"
567
  msgstr ""
568
 
569
+ #: core/options-pages.php:1280 core/options-pages.php:1300
570
+ #: core/options-pages.php:1343 core/options-pages.php:1404
571
  msgid "Filter for List View"
572
  msgstr ""
573
 
574
+ #: core/options-pages.php:1281 core/options-pages.php:1301
575
+ #: core/options-pages.php:1344 core/options-pages.php:1405
576
  msgid "Filter for Grid View / Media Popup"
577
  msgstr ""
578
 
579
+ #: core/options-pages.php:1282 core/options-pages.php:1302
580
+ #: core/options-pages.php:1345 core/options-pages.php:1406
581
  msgid "Edit in Media Popup"
582
  msgstr "Redigera i Media-popup"
583
 
584
+ #: core/options-pages.php:1283 core/options-pages.php:1346
585
  msgid "Show in Nav Menu"
586
  msgstr "Visa i Nav Menu"
587
 
588
+ #: core/options-pages.php:1284 core/options-pages.php:1347
589
  msgid "Remember Terms Order (sort)"
590
  msgstr ""
591
 
592
+ #: core/options-pages.php:1285 core/options-pages.php:1348
593
  msgid "Show in REST"
594
  msgstr ""
595
 
596
+ #: core/options-pages.php:1286 core/options-pages.php:1349
597
  msgid "Rewrite Slug"
598
  msgstr "Skriv Om Slug"
599
 
600
+ #: core/options-pages.php:1287 core/options-pages.php:1350
601
  msgid "Slug with Front"
602
  msgstr "Slug med Framsida"
603
 
604
+ #: core/options-pages.php:1362
605
  msgid "Add New Taxonomy"
606
  msgstr "Lägg Till Ny Taxonomi"
607
 
608
+ #: core/options-pages.php:1372
609
  msgid "Non-Media Taxonomies"
610
  msgstr "Icke-Media-taxonomier"
611
 
612
+ #: core/options-pages.php:1435
613
  msgid "Options"
614
  msgstr "Alternativ"
615
 
616
+ #: core/options-pages.php:1445 core/options-pages.php:1448
617
  msgid "Taxonomy archive pages"
618
  msgstr "Arkivsidor för Taxonomier"
619
 
620
+ #: core/options-pages.php:1449
621
  msgid "Turn on media taxonomy archive pages on the front-end"
622
  msgstr "Slå på arkivsidor för mediataxonomier i frontend"
623
 
624
+ #: core/options-pages.php:1450
625
  msgid ""
626
  "Re-save your permalink settings after this option change to make it work."
627
  msgstr ""
628
  "Återspara inställningarna för permalänkar efter en ändring av detta "
629
  "alternativ för att få det att fungera."
630
 
631
+ #: core/options-pages.php:1456 core/options-pages.php:1459
632
  msgid "Assign all like hierarchical"
633
  msgstr "Tilldela alla som hierarkiska"
634
 
635
+ #: core/options-pages.php:1460
636
  msgid ""
637
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
638
  msgstr ""
639
  "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
640
 
641
+ #: core/options-pages.php:1466 core/options-pages.php:1469
642
  msgid "Force filters"
643
  msgstr "Tvinga filter"
644
 
645
+ #: core/options-pages.php:1470
646
  msgid "Show media filters for ANY Media Popup"
647
  msgstr ""
648
 
649
+ #: core/options-pages.php:1471
650
  msgid "Try this if filters are not shown for third-party plugins or themes."
651
  msgstr ""
652
 
653
+ #: core/options-pages.php:1477 core/options-pages.php:1480
654
  msgid "Show count"
655
  msgstr ""
656
 
657
+ #: core/options-pages.php:1481
658
  msgid "Show item count per category for media filters"
659
  msgstr ""
660
 
661
+ #: core/options-pages.php:1535
662
  msgid "Add New MIME Type"
663
  msgstr "Lägg Till Ny MIME-typ"
664
 
665
+ #: core/options-pages.php:1555 core/options-pages.php:1610
666
  msgid "Extension"
667
  msgstr "Utökning"
668
 
669
+ #: core/options-pages.php:1556 core/options-pages.php:1611
670
  msgid "MIME Type"
671
  msgstr "MIME-typ"
672
 
673
+ #: core/options-pages.php:1557 core/options-pages.php:1612
674
  msgid "Singular Label"
675
  msgstr "Singular-etikett"
676
 
677
+ #: core/options-pages.php:1558 core/options-pages.php:1613
678
  msgid "Plural Label"
679
  msgstr "Plural-etikett"
680
 
681
+ #: core/options-pages.php:1559 core/options-pages.php:1589
682
+ #: core/options-pages.php:1602 core/options-pages.php:1614
683
  msgid "Add Filter"
684
  msgstr "Lägg Till Filter"
685
 
686
+ #: core/options-pages.php:1560 core/options-pages.php:1590
687
+ #: core/options-pages.php:1603 core/options-pages.php:1615
688
  msgid "Allow Upload"
689
  msgstr "Tillåt Uppladdning"
690
 
691
+ #: core/options-pages.php:1591 core/options-pages.php:1604
692
  msgid "Delete MIME Type"
693
  msgstr "Ta Bort MIME-typ"
694
 
695
+ #: core/options-pages.php:1651
696
  msgid "Save Changes"
697
  msgstr "Spara Ändringar"
698
 
699
+ #: core/options-pages.php:1681
700
  msgid "Changelog"
701
  msgstr ""
702
 
703
+ #: core/options-pages.php:1682
704
  msgid "What's new in"
705
  msgstr ""
706
 
707
+ #: core/options-pages.php:1682
708
  msgid "version"
709
  msgstr ""
710
 
711
+ #: core/options-pages.php:1685
712
  msgid "More features under the hood"
713
  msgstr ""
714
 
715
+ #: core/options-pages.php:1687
716
  msgid "Support"
717
  msgstr ""
718
 
719
+ #: core/options-pages.php:1688
720
  msgid "Feel free to ask for help on"
721
  msgstr ""
722
 
723
+ #: core/options-pages.php:1688
724
  msgid "Support is free for both versions of the plugin."
725
  msgstr ""
726
 
727
+ #: core/options-pages.php:1690
728
  msgid "Plugin rating"
729
  msgstr ""
730
 
731
+ #: core/options-pages.php:1691
732
  msgid "Please"
733
  msgstr ""
734
 
735
+ #: core/options-pages.php:1691
736
  msgid "vote for the plugin"
737
  msgstr ""
738
 
739
+ #: core/options-pages.php:1691
740
  msgid "Thanks!"
741
  msgstr ""
742
 
743
+ #: core/options-pages.php:1693
744
  msgid "Other plugins you may find useful"
745
  msgstr ""
746
 
747
+ #: core/options-pages.php:1732
748
  msgid "Utility"
749
  msgstr ""
750
 
751
+ #: core/options-pages.php:1755
752
  msgid "Vote!"
753
  msgstr ""
754
 
761
  msgstr ""
762
 
763
  #: core/taxonomies.php:333 core/taxonomies.php:339
764
+ #: enhanced-media-library.php:508
765
  msgid "Filter by"
766
  msgstr "Filtrera efter"
767
 
768
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
769
  msgid "Not in a"
770
  msgstr "Ej i"
771
 
772
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
773
  msgid "Remove"
774
  msgstr "Ta Bort"
775
 
776
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
777
  msgid "Deselect"
778
  msgstr "Avmarkera"
779
 
780
+ #: core/taxonomies.php:1337
781
  msgid "Caption this image&hellip;"
782
  msgstr "Rubricera denna bild&hellip;"
783
 
784
+ #: core/taxonomies.php:1341
785
  msgid "Describe this video&hellip;"
786
  msgstr "Beskriv denna video&hellip;"
787
 
788
+ #: core/taxonomies.php:1343
789
  msgid "Describe this audio file&hellip;"
790
  msgstr "Beskriv denna audiofil&hellip;"
791
 
792
+ #: core/taxonomies.php:1345
793
  msgid "Describe this media file&hellip;"
794
  msgstr "Beskriv denna mediafil&hellip;"
795
 
796
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
797
+ msgid "All Uncategorized"
798
+ msgstr "Alla Okategoriserade"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
 
800
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
801
+ msgid "Reset All Filters"
802
+ msgstr "Återställ alla filter"
803
 
804
+ #: enhanced-media-library.php:541
805
+ msgid "Uploaded to post #"
806
  msgstr ""
807
 
808
+ #: enhanced-media-library.php:542
809
+ msgid "Based On"
810
  msgstr ""
811
 
812
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
813
+ msgid "Media Categories"
814
  msgstr ""
815
 
816
+ #: enhanced-media-library.php:575
817
+ msgid "Media Category"
818
  msgstr ""
819
 
820
+ #: enhanced-media-library.php:577
821
+ msgid "All Media Categories"
822
  msgstr ""
823
 
824
+ #: enhanced-media-library.php:578
825
+ msgid "Edit Media Category"
826
  msgstr ""
827
 
828
+ #: enhanced-media-library.php:579
829
+ msgid "View Media Category"
830
  msgstr ""
831
 
832
+ #: enhanced-media-library.php:580
833
+ msgid "Update Media Category"
834
  msgstr ""
835
 
836
+ #: enhanced-media-library.php:581
837
+ msgid "Add New Media Category"
838
  msgstr ""
839
 
840
+ #: enhanced-media-library.php:582
841
+ msgid "New Media Category Name"
 
 
 
842
  msgstr ""
843
 
844
+ #: enhanced-media-library.php:583
845
+ msgid "Parent Media Category"
 
 
 
 
 
 
 
 
846
  msgstr ""
847
 
848
+ #: enhanced-media-library.php:584
849
+ msgid "Parent Media Category:"
 
 
 
850
  msgstr ""
851
 
852
+ #: enhanced-media-library.php:585
853
+ msgid "Search Media Categories"
 
 
 
 
 
854
  msgstr ""
855
 
 
 
 
 
856
  #. Plugin URI of the plugin/theme
857
  #. Author URI of the plugin/theme
858
  msgid "http://wpUXsolutions.com"
867
  #. Author of the plugin/theme
868
  msgid "wpUXsolutions"
869
  msgstr ""
 
 
 
languages/enhanced-media-library-uk.mo ADDED
Binary file
languages/enhanced-media-library-uk.po ADDED
@@ -0,0 +1,907 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Enhanced Media Library (Free & PRO) in Ukrainian
2
+ # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
+ "POT-Creation-Date: 2017-01-13 03:02+0200\n"
7
+ "PO-Revision-Date: 2017-01-13 03:03+0200\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "Language: uk_UA\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
+ "X-Generator: Poedit 1.8.11\n"
17
+
18
+ #: core/mime-types.php:30
19
+ msgid "MIME Types settings restored."
20
+ msgstr "Налаштування MIME-типів відновлено."
21
+
22
+ #: core/mime-types.php:39
23
+ msgid "MIME Types settings saved."
24
+ msgstr "Налаштування MIME-типів збережено."
25
+
26
+ #: core/mime-types.php:116
27
+ #, php-format
28
+ msgid " <span class=\"count\">(%s)</span>"
29
+ msgid_plural " <span class=\"count\">(%s)</span>"
30
+ msgstr[0] " <span class=\"count\">(%s)</span>"
31
+ msgstr[1] " <span class=\"count\">(%s)</span>"
32
+ msgstr[2] " <span class=\"count\">(%s)</span>"
33
+
34
+ #: core/options-pages.php:97 core/options-pages.php:220
35
+ #: core/options-pages.php:313 core/options-pages.php:1080
36
+ #: core/options-pages.php:1204 core/options-pages.php:1529
37
+ #: core/options-pages.php:1729
38
+ msgid "Media Settings"
39
+ msgstr "Налаштування медіа"
40
+
41
+ #: core/options-pages.php:106 core/options-pages.php:285
42
+ msgid "Media Library"
43
+ msgstr "Медіа-бібліотека"
44
+
45
+ #: core/options-pages.php:115
46
+ msgid "Taxonomies"
47
+ msgstr "Таксономії"
48
+
49
+ #: core/options-pages.php:124 core/options-pages.php:287
50
+ msgid "MIME Types"
51
+ msgstr "MIME-типи"
52
+
53
+ #. Plugin Name of the plugin/theme
54
+ #: core/options-pages.php:135 core/options-pages.php:136
55
+ msgid "Enhanced Media Library"
56
+ msgstr "Enhanced Media Library"
57
+
58
+ #: core/options-pages.php:284
59
+ msgid "General"
60
+ msgstr "Загальні"
61
+
62
+ #: core/options-pages.php:286 core/options-pages.php:1225
63
+ msgid "Media Taxonomies"
64
+ msgstr "Медіа-таксономії"
65
+
66
+ #: core/options-pages.php:310 core/options-pages.php:622
67
+ #: core/options-pages.php:1076 core/options-pages.php:1201
68
+ #: core/options-pages.php:1525
69
+ msgid "You do not have sufficient permissions to access this page."
70
+ msgstr "У вас недостатньо прав для доступу до цієї сторінки."
71
+
72
+ #: core/options-pages.php:324
73
+ msgid "Image sizes"
74
+ msgstr "Розміри зображень"
75
+
76
+ #: core/options-pages.php:325
77
+ msgid ""
78
+ "The sizes listed below determine the maximum dimensions in pixels to use "
79
+ "when adding an image to the Media Library."
80
+ msgstr ""
81
+ "Розміри, перераховані нижче, визначають найбільші розміри в пікселях при "
82
+ "додаванні зображення до медіа бібліотеки."
83
+
84
+ #: core/options-pages.php:329
85
+ msgid "Thumbnail size"
86
+ msgstr "Розмір мініатюри"
87
+
88
+ #: core/options-pages.php:331
89
+ msgid "Width"
90
+ msgstr "Ширина"
91
+
92
+ #: core/options-pages.php:333
93
+ msgid "Height"
94
+ msgstr "Висота"
95
+
96
+ #: core/options-pages.php:336
97
+ msgid ""
98
+ "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
99
+ msgstr ""
100
+ "Обрізати мініатюри до вказаних розмірів (зазвичай мініатюри пропорційні)"
101
+
102
+ #: core/options-pages.php:341 core/options-pages.php:342
103
+ msgid "Medium size"
104
+ msgstr "Середній розмір"
105
+
106
+ #: core/options-pages.php:343 core/options-pages.php:353
107
+ msgid "Max Width"
108
+ msgstr "Макс. ширина"
109
+
110
+ #: core/options-pages.php:345 core/options-pages.php:355
111
+ msgid "Max Height"
112
+ msgstr "Макс. висота"
113
+
114
+ #: core/options-pages.php:351 core/options-pages.php:352
115
+ msgid "Large size"
116
+ msgstr "Великий розмір"
117
+
118
+ #: core/options-pages.php:368
119
+ msgid "Embeds"
120
+ msgstr "Вбудовування"
121
+
122
+ #: core/options-pages.php:375
123
+ msgid "Uploading Files"
124
+ msgstr "Завантаження файлів"
125
+
126
+ #: core/options-pages.php:382
127
+ msgid "Store uploads in this folder"
128
+ msgstr "Зберігати завантаження у цю папку"
129
+
130
+ #: core/options-pages.php:386
131
+ #, php-format
132
+ msgid "Default is %s"
133
+ msgstr "За замовчуванням %s"
134
+
135
+ #: core/options-pages.php:392
136
+ msgid "Full URL path to files"
137
+ msgstr "Повний URL-шлях до файлів"
138
+
139
+ #: core/options-pages.php:394
140
+ msgid "Configuring this is optional. By default, it should be blank."
141
+ msgstr "Налаштування не є обов'язковим. За замовчуванням має бути пустим."
142
+
143
+ #: core/options-pages.php:402
144
+ msgid "Organize my uploads into month- and year-based folders"
145
+ msgstr "Впорядкувати мої завантаження в теки відповідно до місяця і року."
146
+
147
+ #: core/options-pages.php:474 core/options-pages.php:1249
148
+ #: core/options-pages.php:1264 core/options-pages.php:1327
149
+ #: core/options-pages.php:1399
150
+ msgid "Edit"
151
+ msgstr "Редагувати"
152
+
153
+ #: core/options-pages.php:475
154
+ msgid "Close"
155
+ msgstr "Закрити"
156
+
157
+ #: core/options-pages.php:476 core/options-pages.php:1265
158
+ #: core/options-pages.php:1328
159
+ msgid "View"
160
+ msgstr "Перегляд"
161
+
162
+ #: core/options-pages.php:477 core/options-pages.php:1266
163
+ #: core/options-pages.php:1329
164
+ msgid "Update"
165
+ msgstr "Оновити"
166
+
167
+ #: core/options-pages.php:478 core/options-pages.php:1267
168
+ #: core/options-pages.php:1330
169
+ msgid "Add New"
170
+ msgstr "Додати"
171
+
172
+ #: core/options-pages.php:479 core/options-pages.php:1268
173
+ #: core/options-pages.php:1331
174
+ msgid "New"
175
+ msgstr "Новий"
176
+
177
+ #: core/options-pages.php:480
178
+ msgid "Name"
179
+ msgstr "Назва"
180
+
181
+ #: core/options-pages.php:481 core/options-pages.php:1269
182
+ #: core/options-pages.php:1332
183
+ msgid "Parent"
184
+ msgstr "Батьківський"
185
+
186
+ #: core/options-pages.php:482 core/options-pages.php:718
187
+ #: core/options-pages.php:1263 core/options-pages.php:1326
188
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
189
+ msgid "All"
190
+ msgstr "Всі"
191
+
192
+ #: core/options-pages.php:483 core/options-pages.php:1270
193
+ #: core/options-pages.php:1333
194
+ msgid "Search"
195
+ msgstr "Шукати"
196
+
197
+ #: core/options-pages.php:485 core/options-pages.php:1314
198
+ msgid "New Taxonomy"
199
+ msgstr "Нова таксономія"
200
+
201
+ #: core/options-pages.php:487
202
+ msgid "Remove Taxonomy"
203
+ msgstr "Видалити таксономію"
204
+
205
+ #: core/options-pages.php:488
206
+ msgid "Taxonomy will be removed."
207
+ msgstr "Таксономію буде видалено."
208
+
209
+ #: core/options-pages.php:489
210
+ msgid ""
211
+ "Taxonomy terms (categories) will remain intact in the database. If you "
212
+ "create a taxonomy with the same name in the future, its terms (categories) "
213
+ "will be available again."
214
+ msgstr ""
215
+ "Всі елементи таксономії (категорії) залишаться без змін у базі даних. Якщо у "
216
+ "майбутньому ви створите таксономію з такою самою назвою, її елементи "
217
+ "(категорії) будуть доступні знову."
218
+
219
+ #: core/options-pages.php:490
220
+ msgid "Media items will remain intact."
221
+ msgstr "Медіафайли залишаться без змін."
222
+
223
+ #: core/options-pages.php:491
224
+ msgid "Are you still sure?"
225
+ msgstr "Ви досі впевнені?"
226
+
227
+ #: core/options-pages.php:492
228
+ msgid "Yes, remove taxonomy"
229
+ msgstr "Так, видалити таксономію"
230
+
231
+ #: core/options-pages.php:494
232
+ msgid "Duplicate"
233
+ msgstr "Дублікат"
234
+
235
+ #: core/options-pages.php:495
236
+ msgid "Taxonomy with the same name already exists. Please chose other one."
237
+ msgstr "Таксономія з такою назвою вже існує. Будь ласка, виберіть іншу."
238
+
239
+ #: core/options-pages.php:497
240
+ msgid "Empty Fields"
241
+ msgstr "Порожні поля"
242
+
243
+ #: core/options-pages.php:498
244
+ msgid "Please choose Singular and Plural names for all new taxomonies."
245
+ msgstr ""
246
+ "Будь ласка, оберіть назву в однині та множині для всіх нових таксономій."
247
+
248
+ #: core/options-pages.php:499
249
+ msgid "Please choose Singular name for all new taxomonies."
250
+ msgstr "Будь ласка, оберіть назву в однині для всіх нових таксономій."
251
+
252
+ #: core/options-pages.php:500
253
+ msgid "Please choose Plural Name for all new taxomonies."
254
+ msgstr "Будь ласка, оберіть назву в множині для всіх нових таксономій."
255
+
256
+ #: core/options-pages.php:502
257
+ msgid "Ok"
258
+ msgstr "Ok"
259
+
260
+ #: core/options-pages.php:503 core/options-pages.php:508
261
+ #: core/options-pages.php:552 core/options-pages.php:597
262
+ msgid "Cancel"
263
+ msgstr "Скасувати"
264
+
265
+ #: core/options-pages.php:505
266
+ msgid "Synchronize Now"
267
+ msgstr "Синхронізувати зараз"
268
+
269
+ #: core/options-pages.php:506 core/options-pages.php:594
270
+ msgid "This operation cannot be canceled! Are you still sure?"
271
+ msgstr "Ця операція не може бути скасована. Ви досі впевнені?"
272
+
273
+ #: core/options-pages.php:507
274
+ msgid "Synchronize"
275
+ msgstr "Синхронізувати"
276
+
277
+ #: core/options-pages.php:509
278
+ msgid "Synchronizing..."
279
+ msgstr "Синхронізація..."
280
+
281
+ #: core/options-pages.php:547 core/options-pages.php:1653
282
+ msgid "Restore WordPress default MIME Types"
283
+ msgstr "Відновити стандартні MIME-типи WordPress-у"
284
+
285
+ #: core/options-pages.php:548
286
+ msgid "Warning! All your custom MIME Types will be deleted by this operation."
287
+ msgstr ""
288
+ "Попередження! Всі ваші власні MIME-типи будуть видалені в результаті цієї "
289
+ "операції."
290
+
291
+ #: core/options-pages.php:549
292
+ msgid "Restore Defaults"
293
+ msgstr "Відновити"
294
+
295
+ #: core/options-pages.php:550
296
+ msgid "Restoring..."
297
+ msgstr "Відновлення..."
298
+
299
+ #: core/options-pages.php:554
300
+ msgid "Please fill into all fields."
301
+ msgstr "Будь ласка, заповніть всі поля."
302
+
303
+ #: core/options-pages.php:555
304
+ msgid "Duplicate extensions or MIME types. Please chose other one."
305
+ msgstr "Такий MIME-тип вже існує. Будь ласка, оберіть інший."
306
+
307
+ #: core/options-pages.php:592 core/options-pages.php:709
308
+ msgid "Complete Cleanup"
309
+ msgstr "Повне очищення"
310
+
311
+ #: core/options-pages.php:593
312
+ msgid ""
313
+ "You are about to <strong style=\"text-transform:uppercase\">delete all "
314
+ "plugin data</strong> from the database including backups."
315
+ msgstr ""
316
+ "Ви збираєтеся <strong style=\"text-transform:uppercase\">видалити всі дані "
317
+ "плагіна</strong> з бази даних, у тому числі резервні копії."
318
+
319
+ #: core/options-pages.php:595
320
+ msgid "Yes, delete all data"
321
+ msgstr "Так, видалити усі дані"
322
+
323
+ #: core/options-pages.php:596
324
+ msgid "Cleaning..."
325
+ msgstr "Очищення..."
326
+
327
+ #: core/options-pages.php:627
328
+ msgid "Enhanced Media Library Settings"
329
+ msgstr "Налаштування Enhanced Media Library"
330
+
331
+ #: core/options-pages.php:637
332
+ msgid "Export"
333
+ msgstr "Експорт"
334
+
335
+ #: core/options-pages.php:641
336
+ msgid ""
337
+ "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
338
+ "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
339
+ "configuration file. It allows you to easily import the configuration into "
340
+ "another website."
341
+ msgstr ""
342
+ "Налаштування плагіна <strong>Медіа-бібліотека</strong>, <strong>Медіа-"
343
+ "таксономії</strong> та <strong>MIME-типи</strong> буде експортовано до "
344
+ "файлу конфігурації. Це дає змогу легко імпортувати конфігурацію до іншого "
345
+ "веб-сайту."
346
+
347
+ #: core/options-pages.php:646
348
+ msgid "Export Plugin Settings"
349
+ msgstr "Експорт налаштувань плагіна"
350
+
351
+ #: core/options-pages.php:656
352
+ msgid "Import"
353
+ msgstr "Імпорт"
354
+
355
+ #: core/options-pages.php:660
356
+ msgid ""
357
+ "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
358
+ "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
359
+ "configuration file which can be obtained by exporting the settings on "
360
+ "another website using the export button above."
361
+ msgstr ""
362
+ "Налаштування плагіна <strong>Медіа-бібліотека</strong>, <strong>Медіа-"
363
+ "таксономії</strong> та <strong>MIME-типи</strong> буде імпортовано з файлу "
364
+ "конфігурації, який може бути отриманий шляхом експорту налаштувань на іншому "
365
+ "веб-сайті за допомогою кнопки \"Експорт\" вище."
366
+
367
+ #: core/options-pages.php:661
368
+ msgid ""
369
+ "All plugin settings will be overridden by the import. You will have a chance "
370
+ "to restore current data from an automatic backup in case you are not "
371
+ "satisfied with the result of the import."
372
+ msgstr ""
373
+ "Всі налаштування плагіна будуть заміщені шляхом імпорту. У вас є можливість "
374
+ "відновити поточні дані з автоматичної резервної копії у випадку, якщо ви не "
375
+ "задоволені результатом імпорту."
376
+
377
+ #: core/options-pages.php:668
378
+ msgid "Import Plugin Settings"
379
+ msgstr "Імпорт налаштувань плагіна"
380
+
381
+ #: core/options-pages.php:680
382
+ msgid "Restore"
383
+ msgstr "Відновити"
384
+
385
+ #: core/options-pages.php:686
386
+ msgid "No backup available at the moment."
387
+ msgstr "На даний момент резервних копій немає."
388
+
389
+ #: core/options-pages.php:688
390
+ msgid "Backup will be created automatically before any import operation."
391
+ msgstr ""
392
+ "Резервну копію буде створено автоматично перед будь-якою операцією імпорта."
393
+
394
+ #: core/options-pages.php:692
395
+ msgid ""
396
+ "The backup has been automatically created before the latest import operation."
397
+ msgstr ""
398
+ "Резервну копію було автоматично створено перед останньою операцією імпорту."
399
+
400
+ #: core/options-pages.php:696
401
+ msgid "Restore Settings from the Backup"
402
+ msgstr "Відновити налаштування з резервної копії"
403
+
404
+ #: core/options-pages.php:716
405
+ msgid "What will be deleted:"
406
+ msgstr "Що буде видалено:"
407
+
408
+ #: core/options-pages.php:721
409
+ msgid "All plugin options"
410
+ msgstr "Всі налаштування плагіна"
411
+
412
+ #: core/options-pages.php:722
413
+ msgid "All plugin backups stored in database"
414
+ msgstr "Всі резервні копії плагіна, збережені у базі даних"
415
+
416
+ #: core/options-pages.php:726
417
+ msgid "What will remain intact:"
418
+ msgstr "Що лишиться, як є:"
419
+
420
+ #: core/options-pages.php:727
421
+ msgid "All media items"
422
+ msgstr "Всі медіа файли"
423
+
424
+ #: core/options-pages.php:728
425
+ msgid "All taxonomies not listed above"
426
+ msgstr "Всі таксономії не перераховані вище"
427
+
428
+ #: core/options-pages.php:731
429
+ msgid ""
430
+ "The plugin cannot delete itself because of security reason. Please delete it "
431
+ "manually from plugin list after cleanup."
432
+ msgstr ""
433
+ "Плагін не може видалити сам себе з міркувань безпеки. Будь ласка, видаліть "
434
+ "його самостійно зі списку плагінів після очищення."
435
+
436
+ #: core/options-pages.php:733
437
+ msgid ""
438
+ "If you are not sure about this operation please create a backup of your "
439
+ "database prior to cleanup!"
440
+ msgstr ""
441
+ "Якщо ви не впевнені щодо цієї операції, будь ласка, створіть резервну копію "
442
+ "бази даних перед очищенням!"
443
+
444
+ #: core/options-pages.php:739
445
+ msgid "Delete All Data & Deactivate"
446
+ msgstr "Видалити всі дані та деактивувати"
447
+
448
+ #: core/options-pages.php:839
449
+ msgid "Please upload a file to import settings."
450
+ msgstr "Будь ласка, загрузіть файл для імпорту налаштувань."
451
+
452
+ #: core/options-pages.php:865
453
+ msgid "Plugin settings imported."
454
+ msgstr "Налаштування плагіна імпортовано."
455
+
456
+ #: core/options-pages.php:912
457
+ msgid "Plugin settings restored from the backup."
458
+ msgstr "Налаштування плагіна відновлено з резервної копії."
459
+
460
+ #: core/options-pages.php:1101
461
+ msgid "Media Items Order"
462
+ msgstr "Порядок медіафайлів"
463
+
464
+ #: core/options-pages.php:1108
465
+ msgid "Order media items by"
466
+ msgstr "Сортувати медіафайли за"
467
+
468
+ #: core/options-pages.php:1111
469
+ msgid "Date"
470
+ msgstr "Датою"
471
+
472
+ #: core/options-pages.php:1112
473
+ msgid "Title"
474
+ msgstr "Назвою"
475
+
476
+ #: core/options-pages.php:1113
477
+ msgid "Custom Order"
478
+ msgstr "Довільний порядок"
479
+
480
+ #: core/options-pages.php:1115 core/options-pages.php:1127
481
+ msgid "For media library and media popups"
482
+ msgstr "Для медіа бібліотеки та спливаючих вікон"
483
+
484
+ #: core/options-pages.php:1116
485
+ msgid "Option allows to change order by drag and drop with Custom Order value."
486
+ msgstr ""
487
+ "Налаштування дозволяє змінювати порядок шляхом перетягування, коли \"Власний "
488
+ "порядок\" обрано."
489
+
490
+ #: core/options-pages.php:1121
491
+ msgid "Sort order"
492
+ msgstr "Порядок сортування"
493
+
494
+ #: core/options-pages.php:1124
495
+ msgid "Ascending"
496
+ msgstr "За зростанням"
497
+
498
+ #: core/options-pages.php:1125
499
+ msgid "Descending"
500
+ msgstr "За зменшенням"
501
+
502
+ #: core/options-pages.php:1140
503
+ msgid "Media Shortcodes"
504
+ msgstr "Медіа-шорткоди"
505
+
506
+ #: core/options-pages.php:1147 core/options-pages.php:1150
507
+ msgid "Enhanced media shortcodes"
508
+ msgstr "Розширені медіа-шорткоди"
509
+
510
+ #: core/options-pages.php:1151
511
+ msgid ""
512
+ "Enhance WordPress media shortcodes to make them understand media taxonomies, "
513
+ "upload date, and media items number limit"
514
+ msgstr ""
515
+ "Розширити WordPress медіа-шорткоди таким чином, щоб вони розуміли такі "
516
+ "параметри, як медіа-таксономії, дату завантаження та обмеження кількості "
517
+ "медіафайлів"
518
+
519
+ #: core/options-pages.php:1152
520
+ msgid "Gallery example:"
521
+ msgstr "Приклад галереї:"
522
+
523
+ #: core/options-pages.php:1153
524
+ msgid "Audio playlist example:"
525
+ msgstr "Приклад аудіо плейлиста:"
526
+
527
+ #: core/options-pages.php:1154
528
+ msgid "Video playlist example:"
529
+ msgstr "Приклад відео плейлиста:"
530
+
531
+ #: core/options-pages.php:1156
532
+ #, php-format
533
+ msgid ""
534
+ "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
535
+ msgstr "%sУвага: %s можлива несумісність з іншими плагінами або темами!"
536
+
537
+ #: core/options-pages.php:1158
538
+ #, php-format
539
+ msgid "%sLearn more%s."
540
+ msgstr "%sДетальніше%s."
541
+
542
+ #: core/options-pages.php:1160
543
+ #, php-format
544
+ msgid ""
545
+ "Please check out your gallery front-end and back-end functionality once this "
546
+ "option activated. If you find an issue please inform plugin authors at %s or "
547
+ "%s."
548
+ msgstr ""
549
+ "Будь ласка, перевірте функціональність вашої галереї для зовнішнього "
550
+ "інтерфейсу, та інтерфейсу адмінки, як тільки цей параметр активований. Якщо "
551
+ "ви виявили проблему, будь ласка, поінформуйте авторів плагіну на %s або %s."
552
+
553
+ #: core/options-pages.php:1229 core/options-pages.php:1376
554
+ msgid "Assign following taxonomies to Media Library:"
555
+ msgstr "Призначати наступні таксономії до медіа-бібліотеки:"
556
+
557
+ #: core/options-pages.php:1248 core/options-pages.php:1314
558
+ #: core/options-pages.php:1398
559
+ msgid "Assign Taxonomy"
560
+ msgstr "Призначати таксономію"
561
+
562
+ #: core/options-pages.php:1249 core/options-pages.php:1399
563
+ msgid "Edit Taxonomy"
564
+ msgstr "Редагувати таксономію"
565
+
566
+ #: core/options-pages.php:1253 core/options-pages.php:1316
567
+ msgid "Delete Taxonomy"
568
+ msgstr "Видалити таксономію"
569
+
570
+ #: core/options-pages.php:1258 core/options-pages.php:1321
571
+ msgid "Labels"
572
+ msgstr "Ярлики"
573
+
574
+ #: core/options-pages.php:1260 core/options-pages.php:1323
575
+ msgid "Singular"
576
+ msgstr "Однина"
577
+
578
+ #: core/options-pages.php:1261 core/options-pages.php:1324
579
+ msgid "Plural"
580
+ msgstr "Множина"
581
+
582
+ #: core/options-pages.php:1262 core/options-pages.php:1325
583
+ msgid "Menu Name"
584
+ msgstr "Назва меню"
585
+
586
+ #: core/options-pages.php:1275 core/options-pages.php:1298
587
+ #: core/options-pages.php:1338 core/options-pages.php:1402
588
+ msgid "Settings"
589
+ msgstr "Налаштування"
590
+
591
+ #: core/options-pages.php:1277 core/options-pages.php:1340
592
+ msgid "Taxonomy Name"
593
+ msgstr "Назва таксономії"
594
+
595
+ #: core/options-pages.php:1278 core/options-pages.php:1341
596
+ msgid "Hierarchical"
597
+ msgstr "Ієрархічна"
598
+
599
+ #: core/options-pages.php:1279 core/options-pages.php:1342
600
+ msgid "Column for List View"
601
+ msgstr "Стовпчик для режиму \"Список\""
602
+
603
+ #: core/options-pages.php:1280 core/options-pages.php:1300
604
+ #: core/options-pages.php:1343 core/options-pages.php:1404
605
+ msgid "Filter for List View"
606
+ msgstr "Фільтр для режиму \"Список\""
607
+
608
+ #: core/options-pages.php:1281 core/options-pages.php:1301
609
+ #: core/options-pages.php:1344 core/options-pages.php:1405
610
+ msgid "Filter for Grid View / Media Popup"
611
+ msgstr "Фільтр для режиму \"Сітка\" / спливаючого вікна"
612
+
613
+ #: core/options-pages.php:1282 core/options-pages.php:1302
614
+ #: core/options-pages.php:1345 core/options-pages.php:1406
615
+ msgid "Edit in Media Popup"
616
+ msgstr "Редагувати у спливаючому вікні"
617
+
618
+ #: core/options-pages.php:1283 core/options-pages.php:1346
619
+ msgid "Show in Nav Menu"
620
+ msgstr "Показати в меню"
621
+
622
+ #: core/options-pages.php:1284 core/options-pages.php:1347
623
+ msgid "Remember Terms Order (sort)"
624
+ msgstr "Пам'ятати порядок елементів (параметр sort)"
625
+
626
+ #: core/options-pages.php:1285 core/options-pages.php:1348
627
+ msgid "Show in REST"
628
+ msgstr "Відображати у REST"
629
+
630
+ #: core/options-pages.php:1286 core/options-pages.php:1349
631
+ msgid "Rewrite Slug"
632
+ msgstr "Переписати слаґ"
633
+
634
+ #: core/options-pages.php:1287 core/options-pages.php:1350
635
+ msgid "Slug with Front"
636
+ msgstr "Слаґ з передньою частиною"
637
+
638
+ #: core/options-pages.php:1362
639
+ msgid "Add New Taxonomy"
640
+ msgstr "Додати нову таксономію"
641
+
642
+ #: core/options-pages.php:1372
643
+ msgid "Non-Media Taxonomies"
644
+ msgstr "Не-медіа таксономії"
645
+
646
+ #: core/options-pages.php:1435
647
+ msgid "Options"
648
+ msgstr "Налаштування"
649
+
650
+ #: core/options-pages.php:1445 core/options-pages.php:1448
651
+ msgid "Taxonomy archive pages"
652
+ msgstr "Архіви для таксономій"
653
+
654
+ #: core/options-pages.php:1449
655
+ msgid "Turn on media taxonomy archive pages on the front-end"
656
+ msgstr "Увімкнути архіви для таксономій для зовнішнього інтерфейсу"
657
+
658
+ #: core/options-pages.php:1450
659
+ msgid ""
660
+ "Re-save your permalink settings after this option change to make it work."
661
+ msgstr ""
662
+ "Для того, щоби це працювало, збережіть повторно ваші налаштування постійних "
663
+ "посилань після того, як цей параметр був змінений."
664
+
665
+ #: core/options-pages.php:1456 core/options-pages.php:1459
666
+ msgid "Assign all like hierarchical"
667
+ msgstr "Призначати всі як ієрархічні"
668
+
669
+ #: core/options-pages.php:1460
670
+ msgid ""
671
+ "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
672
+ msgstr ""
673
+ "Показувати не-ієрархічні таксономії як ієрархічні у режимі \"Сітка\" / "
674
+ "спливаючому вікні"
675
+
676
+ #: core/options-pages.php:1466 core/options-pages.php:1469
677
+ msgid "Force filters"
678
+ msgstr "Фільтри примусово"
679
+
680
+ #: core/options-pages.php:1470
681
+ msgid "Show media filters for ANY Media Popup"
682
+ msgstr "ВІдображати медіа-фільтри для будь-якого спливаючого вікна"
683
+
684
+ #: core/options-pages.php:1471
685
+ msgid "Try this if filters are not shown for third-party plugins or themes."
686
+ msgstr ""
687
+ "Спробуйте це, якщо фільтри не відображаються для стороннього плагіну або "
688
+ "теми."
689
+
690
+ #: core/options-pages.php:1477 core/options-pages.php:1480
691
+ msgid "Show count"
692
+ msgstr "Показувати кількість"
693
+
694
+ #: core/options-pages.php:1481
695
+ msgid "Show item count per category for media filters"
696
+ msgstr "Показувати кількість медіафайлів для кожної категорії у медіа фільтрах"
697
+
698
+ #: core/options-pages.php:1535
699
+ msgid "Add New MIME Type"
700
+ msgstr "Додати новий MIME-тип"
701
+
702
+ #: core/options-pages.php:1555 core/options-pages.php:1610
703
+ msgid "Extension"
704
+ msgstr "Розширення файлу"
705
+
706
+ #: core/options-pages.php:1556 core/options-pages.php:1611
707
+ msgid "MIME Type"
708
+ msgstr "MIME-тип"
709
+
710
+ #: core/options-pages.php:1557 core/options-pages.php:1612
711
+ msgid "Singular Label"
712
+ msgstr "Ярлик у однині"
713
+
714
+ #: core/options-pages.php:1558 core/options-pages.php:1613
715
+ msgid "Plural Label"
716
+ msgstr "Ярлик у множині"
717
+
718
+ #: core/options-pages.php:1559 core/options-pages.php:1589
719
+ #: core/options-pages.php:1602 core/options-pages.php:1614
720
+ msgid "Add Filter"
721
+ msgstr "Додати фільтр"
722
+
723
+ #: core/options-pages.php:1560 core/options-pages.php:1590
724
+ #: core/options-pages.php:1603 core/options-pages.php:1615
725
+ msgid "Allow Upload"
726
+ msgstr "Дозволити завантаження"
727
+
728
+ #: core/options-pages.php:1591 core/options-pages.php:1604
729
+ msgid "Delete MIME Type"
730
+ msgstr "Видалити MIME-тип"
731
+
732
+ #: core/options-pages.php:1651
733
+ msgid "Save Changes"
734
+ msgstr "Зберегти зміни"
735
+
736
+ #: core/options-pages.php:1681
737
+ msgid "Changelog"
738
+ msgstr "Список змін"
739
+
740
+ #: core/options-pages.php:1682
741
+ msgid "What's new in"
742
+ msgstr "Що новенького у"
743
+
744
+ #: core/options-pages.php:1682
745
+ msgid "version"
746
+ msgstr "версії"
747
+
748
+ #: core/options-pages.php:1685
749
+ msgid "More features under the hood"
750
+ msgstr "Більше функцій під капотом"
751
+
752
+ #: core/options-pages.php:1687
753
+ msgid "Support"
754
+ msgstr "Підтримка"
755
+
756
+ #: core/options-pages.php:1688
757
+ msgid "Feel free to ask for help on"
758
+ msgstr "Не соромтеся просити допомоги на"
759
+
760
+ #: core/options-pages.php:1688
761
+ msgid "Support is free for both versions of the plugin."
762
+ msgstr "Підтримка є безкоштовною для обох версій плагіна."
763
+
764
+ #: core/options-pages.php:1690
765
+ msgid "Plugin rating"
766
+ msgstr "Рейтинг плагіна"
767
+
768
+ #: core/options-pages.php:1691
769
+ msgid "Please"
770
+ msgstr "Будь ласка"
771
+
772
+ #: core/options-pages.php:1691
773
+ msgid "vote for the plugin"
774
+ msgstr "проголосуйте за плагін"
775
+
776
+ #: core/options-pages.php:1691
777
+ msgid "Thanks!"
778
+ msgstr "Дякуємо!"
779
+
780
+ #: core/options-pages.php:1693
781
+ msgid "Other plugins you may find useful"
782
+ msgstr "Інші корисні плагіни"
783
+
784
+ #: core/options-pages.php:1732
785
+ msgid "Utility"
786
+ msgstr "Утиліти"
787
+
788
+ #: core/options-pages.php:1755
789
+ msgid "Vote!"
790
+ msgstr "Підтримайте!"
791
+
792
+ #: core/taxonomies.php:101
793
+ msgid "Media Taxonomies settings saved."
794
+ msgstr "Налаштування таксономій збережено."
795
+
796
+ #: core/taxonomies.php:159
797
+ msgid "Media Library settings saved."
798
+ msgstr "Налаштування медіа-бібліотеки збережено."
799
+
800
+ #: core/taxonomies.php:333 core/taxonomies.php:339
801
+ #: enhanced-media-library.php:508
802
+ msgid "Filter by"
803
+ msgstr "Фільтрувати за"
804
+
805
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
806
+ msgid "Not in a"
807
+ msgstr "Не в"
808
+
809
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
810
+ msgid "Remove"
811
+ msgstr "Видалити"
812
+
813
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
814
+ msgid "Deselect"
815
+ msgstr "Зняти виділення"
816
+
817
+ #: core/taxonomies.php:1337
818
+ msgid "Caption this image&hellip;"
819
+ msgstr "Підпис для цього фото&hellip;"
820
+
821
+ #: core/taxonomies.php:1341
822
+ msgid "Describe this video&hellip;"
823
+ msgstr "Опишіть це відео&hellip;"
824
+
825
+ #: core/taxonomies.php:1343
826
+ msgid "Describe this audio file&hellip;"
827
+ msgstr "Опишіть це аудіо&hellip;"
828
+
829
+ #: core/taxonomies.php:1345
830
+ msgid "Describe this media file&hellip;"
831
+ msgstr "Опишіть цей медіафайл&hellip;"
832
+
833
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
834
+ msgid "All Uncategorized"
835
+ msgstr "Всі без категорії"
836
+
837
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
838
+ msgid "Reset All Filters"
839
+ msgstr "Скинути всі фільтри"
840
+
841
+ #: enhanced-media-library.php:541
842
+ msgid "Uploaded to post #"
843
+ msgstr "Завантажені до допису #"
844
+
845
+ #: enhanced-media-library.php:542
846
+ msgid "Based On"
847
+ msgstr "На основі"
848
+
849
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
850
+ msgid "Media Categories"
851
+ msgstr "Медіа-категорії"
852
+
853
+ #: enhanced-media-library.php:575
854
+ msgid "Media Category"
855
+ msgstr "Медіа-категорія"
856
+
857
+ #: enhanced-media-library.php:577
858
+ msgid "All Media Categories"
859
+ msgstr "Всі медіа-категорії"
860
+
861
+ #: enhanced-media-library.php:578
862
+ msgid "Edit Media Category"
863
+ msgstr "Редагувати медіа-категорію"
864
+
865
+ #: enhanced-media-library.php:579
866
+ msgid "View Media Category"
867
+ msgstr "Переглянуи медіа-категорію"
868
+
869
+ #: enhanced-media-library.php:580
870
+ msgid "Update Media Category"
871
+ msgstr "Оновити медіа-категорію"
872
+
873
+ #: enhanced-media-library.php:581
874
+ msgid "Add New Media Category"
875
+ msgstr "Додати нову медіа-категорію"
876
+
877
+ #: enhanced-media-library.php:582
878
+ msgid "New Media Category Name"
879
+ msgstr "Назва нової медіа-категорії"
880
+
881
+ #: enhanced-media-library.php:583
882
+ msgid "Parent Media Category"
883
+ msgstr "Батьківська медіа-категорія"
884
+
885
+ #: enhanced-media-library.php:584
886
+ msgid "Parent Media Category:"
887
+ msgstr "Батьківська медіа-категорія:"
888
+
889
+ #: enhanced-media-library.php:585
890
+ msgid "Search Media Categories"
891
+ msgstr "Шукати медіа-категорії"
892
+
893
+ #. Plugin URI of the plugin/theme
894
+ #. Author URI of the plugin/theme
895
+ msgid "http://wpUXsolutions.com"
896
+ msgstr "http://wpUXsolutions.com"
897
+
898
+ #. Description of the plugin/theme
899
+ msgid ""
900
+ "This plugin will be handy for those who need to manage a lot of media files."
901
+ msgstr ""
902
+ "Плагін буде корисний для тих, кому потрібно вправлятися з багатьма "
903
+ "медіафайлами."
904
+
905
+ #. Author of the plugin/theme
906
+ msgid "wpUXsolutions"
907
+ msgstr "wpUXsolutions"
languages/enhanced-media-library.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
- "POT-Creation-Date: 2016-11-29 19:32+0200\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.com>\n"
@@ -35,13 +35,14 @@ msgid_plural " <span class=\"count\">(%s)</span>"
35
  msgstr[0] ""
36
  msgstr[1] ""
37
 
38
- #: core/options-pages.php:97 core/options-pages.php:239
39
- #: core/options-pages.php:1006 core/options-pages.php:1130
40
- #: core/options-pages.php:1455 core/options-pages.php:1655
 
41
  msgid "Media Settings"
42
  msgstr ""
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:211
45
  msgid "Media Library"
46
  msgstr ""
47
 
@@ -49,282 +50,282 @@ msgstr ""
49
  msgid "Taxonomies"
50
  msgstr ""
51
 
52
- #: core/options-pages.php:124 core/options-pages.php:213
53
  msgid "MIME Types"
54
  msgstr ""
55
 
 
56
  #: core/options-pages.php:135 core/options-pages.php:136
57
  msgid "Enhanced Media Library"
58
  msgstr ""
59
 
60
- #: core/options-pages.php:210
61
  msgid "General"
62
  msgstr ""
63
 
64
- #: core/options-pages.php:212 core/options-pages.php:1151
65
  msgid "Media Taxonomies"
66
  msgstr ""
67
 
68
- #: core/options-pages.php:236 core/options-pages.php:548
69
- #: core/options-pages.php:1002 core/options-pages.php:1127
70
- #: core/options-pages.php:1451
71
  msgid "You do not have sufficient permissions to access this page."
72
  msgstr ""
73
 
74
- #: core/options-pages.php:250
75
  msgid "Image sizes"
76
  msgstr ""
77
 
78
- #: core/options-pages.php:251
79
  msgid ""
80
  "The sizes listed below determine the maximum dimensions in pixels to use "
81
  "when adding an image to the Media Library."
82
  msgstr ""
83
 
84
- #: core/options-pages.php:255
85
  msgid "Thumbnail size"
86
  msgstr ""
87
 
88
- #: core/options-pages.php:257
89
  msgid "Width"
90
  msgstr ""
91
 
92
- #: core/options-pages.php:259
93
  msgid "Height"
94
  msgstr ""
95
 
96
- #: core/options-pages.php:262
97
  msgid ""
98
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:267 core/options-pages.php:268
102
  msgid "Medium size"
103
  msgstr ""
104
 
105
- #: core/options-pages.php:269 core/options-pages.php:279
106
  msgid "Max Width"
107
  msgstr ""
108
 
109
- #: core/options-pages.php:271 core/options-pages.php:281
110
  msgid "Max Height"
111
  msgstr ""
112
 
113
- #: core/options-pages.php:277 core/options-pages.php:278
114
  msgid "Large size"
115
  msgstr ""
116
 
117
- #: core/options-pages.php:294
118
  msgid "Embeds"
119
  msgstr ""
120
 
121
- #: core/options-pages.php:301
122
  msgid "Uploading Files"
123
  msgstr ""
124
 
125
- #: core/options-pages.php:308
126
  msgid "Store uploads in this folder"
127
  msgstr ""
128
 
129
- #: core/options-pages.php:312
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:318
135
  msgid "Full URL path to files"
136
  msgstr ""
137
 
138
- #: core/options-pages.php:320
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
 
142
- #: core/options-pages.php:328
143
  msgid "Organize my uploads into month- and year-based folders"
144
  msgstr ""
145
 
146
- #: core/options-pages.php:400 core/options-pages.php:1175
147
- #: core/options-pages.php:1190 core/options-pages.php:1253
148
- #: core/options-pages.php:1325
149
  msgid "Edit"
150
  msgstr ""
151
 
152
- #: core/options-pages.php:401 pro/enhanced-media-library-pro.php:125
153
  msgid "Close"
154
  msgstr ""
155
 
156
- #: core/options-pages.php:402 core/options-pages.php:1191
157
- #: core/options-pages.php:1254
158
  msgid "View"
159
  msgstr ""
160
 
161
- #: core/options-pages.php:403 core/options-pages.php:1192
162
- #: core/options-pages.php:1255
163
  msgid "Update"
164
  msgstr ""
165
 
166
- #: core/options-pages.php:404 core/options-pages.php:1193
167
- #: core/options-pages.php:1256
168
  msgid "Add New"
169
  msgstr ""
170
 
171
- #: core/options-pages.php:405 core/options-pages.php:1194
172
- #: core/options-pages.php:1257
173
  msgid "New"
174
  msgstr ""
175
 
176
- #: core/options-pages.php:406
177
  msgid "Name"
178
  msgstr ""
179
 
180
- #: core/options-pages.php:407 core/options-pages.php:1195
181
- #: core/options-pages.php:1258
182
  msgid "Parent"
183
  msgstr ""
184
 
185
- #: core/options-pages.php:408 core/options-pages.php:644
186
- #: core/options-pages.php:1189 core/options-pages.php:1252
187
- #: core/taxonomies.php:340 enhanced-media-library.php:503
188
  msgid "All"
189
  msgstr ""
190
 
191
- #: core/options-pages.php:409 core/options-pages.php:1196
192
- #: core/options-pages.php:1259
193
  msgid "Search"
194
  msgstr ""
195
 
196
- #: core/options-pages.php:411 core/options-pages.php:1240
197
  msgid "New Taxonomy"
198
  msgstr ""
199
 
200
- #: core/options-pages.php:413
201
  msgid "Remove Taxonomy"
202
  msgstr ""
203
 
204
- #: core/options-pages.php:414
205
  msgid "Taxonomy will be removed."
206
  msgstr ""
207
 
208
- #: core/options-pages.php:415
209
  msgid ""
210
  "Taxonomy terms (categories) will remain intact in the database. If you "
211
  "create a taxonomy with the same name in the future, its terms (categories) "
212
  "will be available again."
213
  msgstr ""
214
 
215
- #: core/options-pages.php:416
216
  msgid "Media items will remain intact."
217
  msgstr ""
218
 
219
- #: core/options-pages.php:417
220
  msgid "Are you still sure?"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:418
224
  msgid "Yes, remove taxonomy"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:420
228
  msgid "Duplicate"
229
  msgstr ""
230
 
231
- #: core/options-pages.php:421
232
  msgid "Taxonomy with the same name already exists. Please chose other one."
233
  msgstr ""
234
 
235
- #: core/options-pages.php:423
236
  msgid "Empty Fields"
237
  msgstr ""
238
 
239
- #: core/options-pages.php:424
240
  msgid "Please choose Singular and Plural names for all new taxomonies."
241
  msgstr ""
242
 
243
- #: core/options-pages.php:425
244
  msgid "Please choose Singular name for all new taxomonies."
245
  msgstr ""
246
 
247
- #: core/options-pages.php:426
248
  msgid "Please choose Plural Name for all new taxomonies."
249
  msgstr ""
250
 
251
- #: core/options-pages.php:428
252
  msgid "Ok"
253
  msgstr ""
254
 
255
- #: core/options-pages.php:429 core/options-pages.php:434
256
- #: core/options-pages.php:478 core/options-pages.php:523
257
- #: pro/enhanced-media-library-pro.php:133
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:431 pro/core/options-pages.php:185
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:432 core/options-pages.php:520
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:433
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:435
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:473 core/options-pages.php:1579
278
  msgid "Restore WordPress default MIME Types"
279
  msgstr ""
280
 
281
- #: core/options-pages.php:474
282
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
283
  msgstr ""
284
 
285
- #: core/options-pages.php:475
286
  msgid "Restore Defaults"
287
  msgstr ""
288
 
289
- #: core/options-pages.php:476
290
  msgid "Restoring..."
291
  msgstr ""
292
 
293
- #: core/options-pages.php:480
294
  msgid "Please fill into all fields."
295
  msgstr ""
296
 
297
- #: core/options-pages.php:481
298
  msgid "Duplicate extensions or MIME types. Please chose other one."
299
  msgstr ""
300
 
301
- #: core/options-pages.php:518 core/options-pages.php:635
302
  msgid "Complete Cleanup"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:519
306
  msgid ""
307
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
308
  "plugin data</strong> from the database including backups."
309
  msgstr ""
310
 
311
- #: core/options-pages.php:521
312
  msgid "Yes, delete all data"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:522
316
  msgid "Cleaning..."
317
  msgstr ""
318
 
319
- #: core/options-pages.php:553
320
  msgid "Enhanced Media Library Settings"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:563
324
  msgid "Export"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:567
328
  msgid ""
329
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
330
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -332,15 +333,15 @@ msgid ""
332
  "another website."
333
  msgstr ""
334
 
335
- #: core/options-pages.php:572
336
  msgid "Export Plugin Settings"
337
  msgstr ""
338
 
339
- #: core/options-pages.php:582
340
  msgid "Import"
341
  msgstr ""
342
 
343
- #: core/options-pages.php:586
344
  msgid ""
345
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
346
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -348,173 +349,168 @@ msgid ""
348
  "another website using the export button above."
349
  msgstr ""
350
 
351
- #: core/options-pages.php:587
352
  msgid ""
353
  "All plugin settings will be overridden by the import. You will have a chance "
354
  "to restore current data from an automatic backup in case you are not "
355
  "satisfied with the result of the import."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:594
359
  msgid "Import Plugin Settings"
360
  msgstr ""
361
 
362
- #: core/options-pages.php:606
363
  msgid "Restore"
364
  msgstr ""
365
 
366
- #: core/options-pages.php:612
367
  msgid "No backup available at the moment."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:614
371
  msgid "Backup will be created automatically before any import operation."
372
  msgstr ""
373
 
374
- #: core/options-pages.php:618
375
  msgid ""
376
  "The backup has been automatically created before the latest import operation."
377
  msgstr ""
378
 
379
- #: core/options-pages.php:622
380
  msgid "Restore Settings from the Backup"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:642
384
  msgid "What will be deleted:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:647
388
  msgid "All plugin options"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:648
392
  msgid "All plugin backups stored in database"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:652
396
  msgid "What will remain intact:"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:653
400
  msgid "All media items"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:654
404
  msgid "All taxonomies not listed above"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:657
408
  msgid ""
409
  "The plugin cannot delete itself because of security reason. Please delete it "
410
  "manually from plugin list after cleanup."
411
  msgstr ""
412
 
413
- #: core/options-pages.php:659
414
  msgid ""
415
  "If you are not sure about this operation please create a backup of your "
416
  "database prior to cleanup!"
417
  msgstr ""
418
 
419
- #: core/options-pages.php:665
420
  msgid "Delete All Data & Deactivate"
421
  msgstr ""
422
 
423
- #: core/options-pages.php:765
424
  msgid "Please upload a file to import settings."
425
  msgstr ""
426
 
427
- #: core/options-pages.php:791
428
  msgid "Plugin settings imported."
429
  msgstr ""
430
 
431
- #: core/options-pages.php:838
432
  msgid "Plugin settings restored from the backup."
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1027
436
  msgid "Media Items Order"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1034
440
  msgid "Order media items by"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:1037 pro/core/medialist.php:28
444
- #: pro/core/medialist.php:73
445
  msgid "Date"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:1038 pro/core/medialist.php:31
449
- #: pro/core/medialist.php:76
450
  msgid "Title"
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1039 pro/core/medialist.php:34
454
- #: pro/core/medialist.php:79
455
  msgid "Custom Order"
456
  msgstr ""
457
 
458
- #: core/options-pages.php:1041 core/options-pages.php:1053
459
  msgid "For media library and media popups"
460
  msgstr ""
461
 
462
- #: core/options-pages.php:1042
463
  msgid "Option allows to change order by drag and drop with Custom Order value."
464
  msgstr ""
465
 
466
- #: core/options-pages.php:1047
467
  msgid "Sort order"
468
  msgstr ""
469
 
470
- #: core/options-pages.php:1050 pro/core/medialist.php:47
471
- #: pro/core/medialist.php:92
472
  msgid "Ascending"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1051 pro/core/medialist.php:50
476
- #: pro/core/medialist.php:95
477
  msgid "Descending"
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1066
481
  msgid "Media Shortcodes"
482
  msgstr ""
483
 
484
- #: core/options-pages.php:1073 core/options-pages.php:1076
485
  msgid "Enhanced media shortcodes"
486
  msgstr ""
487
 
488
- #: core/options-pages.php:1077
489
  msgid ""
490
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
491
  "upload date, and media items number limit"
492
  msgstr ""
493
 
494
- #: core/options-pages.php:1078
495
  msgid "Gallery example:"
496
  msgstr ""
497
 
498
- #: core/options-pages.php:1079
499
  msgid "Audio playlist example:"
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1080
503
  msgid "Video playlist example:"
504
  msgstr ""
505
 
506
- #: core/options-pages.php:1082
507
  #, php-format
508
  msgid ""
509
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1084
513
  #, php-format
514
  msgid "%sLearn more%s."
515
  msgstr ""
516
 
517
- #: core/options-pages.php:1086
518
  #, php-format
519
  msgid ""
520
  "Please check out your gallery front-end and back-end functionality once this "
@@ -522,236 +518,236 @@ msgid ""
522
  "%s."
523
  msgstr ""
524
 
525
- #: core/options-pages.php:1155 core/options-pages.php:1302
526
  msgid "Assign following taxonomies to Media Library:"
527
  msgstr ""
528
 
529
- #: core/options-pages.php:1174 core/options-pages.php:1240
530
- #: core/options-pages.php:1324
531
  msgid "Assign Taxonomy"
532
  msgstr ""
533
 
534
- #: core/options-pages.php:1175 core/options-pages.php:1325
535
  msgid "Edit Taxonomy"
536
  msgstr ""
537
 
538
- #: core/options-pages.php:1179 core/options-pages.php:1242
539
  msgid "Delete Taxonomy"
540
  msgstr ""
541
 
542
- #: core/options-pages.php:1184 core/options-pages.php:1247
543
  msgid "Labels"
544
  msgstr ""
545
 
546
- #: core/options-pages.php:1186 core/options-pages.php:1249
547
  msgid "Singular"
548
  msgstr ""
549
 
550
- #: core/options-pages.php:1187 core/options-pages.php:1250
551
  msgid "Plural"
552
  msgstr ""
553
 
554
- #: core/options-pages.php:1188 core/options-pages.php:1251
555
  msgid "Menu Name"
556
  msgstr ""
557
 
558
- #: core/options-pages.php:1201 core/options-pages.php:1224
559
- #: core/options-pages.php:1264 core/options-pages.php:1328
560
  msgid "Settings"
561
  msgstr ""
562
 
563
- #: core/options-pages.php:1203 core/options-pages.php:1266
564
  msgid "Taxonomy Name"
565
  msgstr ""
566
 
567
- #: core/options-pages.php:1204 core/options-pages.php:1267
568
  msgid "Hierarchical"
569
  msgstr ""
570
 
571
- #: core/options-pages.php:1205 core/options-pages.php:1268
572
  msgid "Column for List View"
573
  msgstr ""
574
 
575
- #: core/options-pages.php:1206 core/options-pages.php:1226
576
- #: core/options-pages.php:1269 core/options-pages.php:1330
577
  msgid "Filter for List View"
578
  msgstr ""
579
 
580
- #: core/options-pages.php:1207 core/options-pages.php:1227
581
- #: core/options-pages.php:1270 core/options-pages.php:1331
582
  msgid "Filter for Grid View / Media Popup"
583
  msgstr ""
584
 
585
- #: core/options-pages.php:1208 core/options-pages.php:1228
586
- #: core/options-pages.php:1271 core/options-pages.php:1332
587
  msgid "Edit in Media Popup"
588
  msgstr ""
589
 
590
- #: core/options-pages.php:1209 core/options-pages.php:1272
591
  msgid "Show in Nav Menu"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1210 core/options-pages.php:1273
595
  msgid "Remember Terms Order (sort)"
596
  msgstr ""
597
 
598
- #: core/options-pages.php:1211 core/options-pages.php:1274
599
  msgid "Show in REST"
600
  msgstr ""
601
 
602
- #: core/options-pages.php:1212 core/options-pages.php:1275
603
  msgid "Rewrite Slug"
604
  msgstr ""
605
 
606
- #: core/options-pages.php:1213 core/options-pages.php:1276
607
  msgid "Slug with Front"
608
  msgstr ""
609
 
610
- #: core/options-pages.php:1288
611
  msgid "Add New Taxonomy"
612
  msgstr ""
613
 
614
- #: core/options-pages.php:1298
615
  msgid "Non-Media Taxonomies"
616
  msgstr ""
617
 
618
- #: core/options-pages.php:1361
619
  msgid "Options"
620
  msgstr ""
621
 
622
- #: core/options-pages.php:1371 core/options-pages.php:1374
623
  msgid "Taxonomy archive pages"
624
  msgstr ""
625
 
626
- #: core/options-pages.php:1375
627
  msgid "Turn on media taxonomy archive pages on the front-end"
628
  msgstr ""
629
 
630
- #: core/options-pages.php:1376
631
  msgid ""
632
  "Re-save your permalink settings after this option change to make it work."
633
  msgstr ""
634
 
635
- #: core/options-pages.php:1382 core/options-pages.php:1385
636
  msgid "Assign all like hierarchical"
637
  msgstr ""
638
 
639
- #: core/options-pages.php:1386
640
  msgid ""
641
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
642
  msgstr ""
643
 
644
- #: core/options-pages.php:1392 core/options-pages.php:1395
645
  msgid "Force filters"
646
  msgstr ""
647
 
648
- #: core/options-pages.php:1396
649
  msgid "Show media filters for ANY Media Popup"
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1397
653
  msgid "Try this if filters are not shown for third-party plugins or themes."
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1403 core/options-pages.php:1406
657
  msgid "Show count"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1407
661
  msgid "Show item count per category for media filters"
662
  msgstr ""
663
 
664
- #: core/options-pages.php:1461
665
  msgid "Add New MIME Type"
666
  msgstr ""
667
 
668
- #: core/options-pages.php:1481 core/options-pages.php:1536
669
  msgid "Extension"
670
  msgstr ""
671
 
672
- #: core/options-pages.php:1482 core/options-pages.php:1537
673
  msgid "MIME Type"
674
  msgstr ""
675
 
676
- #: core/options-pages.php:1483 core/options-pages.php:1538
677
  msgid "Singular Label"
678
  msgstr ""
679
 
680
- #: core/options-pages.php:1484 core/options-pages.php:1539
681
  msgid "Plural Label"
682
  msgstr ""
683
 
684
- #: core/options-pages.php:1485 core/options-pages.php:1515
685
- #: core/options-pages.php:1528 core/options-pages.php:1540
686
  msgid "Add Filter"
687
  msgstr ""
688
 
689
- #: core/options-pages.php:1486 core/options-pages.php:1516
690
- #: core/options-pages.php:1529 core/options-pages.php:1541
691
  msgid "Allow Upload"
692
  msgstr ""
693
 
694
- #: core/options-pages.php:1517 core/options-pages.php:1530
695
  msgid "Delete MIME Type"
696
  msgstr ""
697
 
698
- #: core/options-pages.php:1577 pro/enhanced-media-library-pro.php:124
699
  msgid "Save Changes"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1607
703
  msgid "Changelog"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1608
707
  msgid "What's new in"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1608
711
  msgid "version"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1611
715
  msgid "More features under the hood"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1613
719
  msgid "Support"
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1614
723
  msgid "Feel free to ask for help on"
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1614
727
  msgid "Support is free for both versions of the plugin."
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1616
731
  msgid "Plugin rating"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1617
735
  msgid "Please"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1617
739
  msgid "vote for the plugin"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1617
743
  msgid "Thanks!"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1619
747
  msgid "Other plugins you may find useful"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1658
751
  msgid "Utility"
752
  msgstr ""
753
 
754
- #: core/options-pages.php:1681
755
  msgid "Vote!"
756
  msgstr ""
757
 
@@ -764,351 +760,96 @@ msgid "Media Library settings saved."
764
  msgstr ""
765
 
766
  #: core/taxonomies.php:333 core/taxonomies.php:339
767
- #: enhanced-media-library.php:502
768
  msgid "Filter by"
769
  msgstr ""
770
 
771
- #: core/taxonomies.php:341 enhanced-media-library.php:504
772
  msgid "Not in a"
773
  msgstr ""
774
 
775
- #: enhanced-media-library.php:350 enhanced-media-library.php:501
776
- msgid "All Uncategorized"
777
- msgstr ""
778
-
779
- #: enhanced-media-library.php:351 enhanced-media-library.php:505
780
- msgid "Reset All Filters"
781
- msgstr ""
782
-
783
- #: enhanced-media-library.php:535
784
- msgid "Uploaded to post #"
785
- msgstr ""
786
-
787
- #: enhanced-media-library.php:536
788
- msgid "Based On"
789
- msgstr ""
790
-
791
- #: enhanced-media-library.php:581 enhanced-media-library.php:583
792
- msgid "Media Categories"
793
- msgstr ""
794
-
795
- #: enhanced-media-library.php:582
796
- msgid "Media Category"
797
- msgstr ""
798
-
799
- #: enhanced-media-library.php:584
800
- msgid "All Media Categories"
801
- msgstr ""
802
-
803
- #: enhanced-media-library.php:585
804
- msgid "Edit Media Category"
805
- msgstr ""
806
-
807
- #: enhanced-media-library.php:586
808
- msgid "View Media Category"
809
- msgstr ""
810
-
811
- #: enhanced-media-library.php:587
812
- msgid "Update Media Category"
813
- msgstr ""
814
-
815
- #: enhanced-media-library.php:588
816
- msgid "Add New Media Category"
817
- msgstr ""
818
-
819
- #: enhanced-media-library.php:589
820
- msgid "New Media Category Name"
821
- msgstr ""
822
-
823
- #: enhanced-media-library.php:590
824
- msgid "Parent Media Category"
825
- msgstr ""
826
-
827
- #: enhanced-media-library.php:591
828
- msgid "Parent Media Category:"
829
- msgstr ""
830
-
831
- #: enhanced-media-library.php:592
832
- msgid "Search Media Categories"
833
- msgstr ""
834
-
835
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
836
  msgid "Remove"
837
  msgstr ""
838
 
839
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
840
  msgid "Deselect"
841
  msgstr ""
842
 
843
- #: pro/core/bulk-edit.php:105
844
  msgid "Caption this image&hellip;"
845
  msgstr ""
846
 
847
- #: pro/core/bulk-edit.php:109
848
  msgid "Describe this video&hellip;"
849
  msgstr ""
850
 
851
- #: pro/core/bulk-edit.php:111
852
  msgid "Describe this audio file&hellip;"
853
  msgstr ""
854
 
855
- #: pro/core/bulk-edit.php:113
856
  msgid "Describe this media file&hellip;"
857
  msgstr ""
858
 
859
- #: pro/core/bulk-edit.php:122
860
- msgid "Attachments Details"
861
- msgstr ""
862
-
863
- #: pro/core/bulk-edit.php:175
864
- msgid "Select All"
865
- msgstr ""
866
-
867
- #: pro/core/bulk-edit.php:176
868
- msgid "Deselect All"
869
- msgstr ""
870
-
871
- #: pro/core/bulk-edit.php:177
872
- msgid "Delete Selected"
873
- msgstr ""
874
-
875
- #: pro/core/bulk-edit.php:178
876
- msgid "Trash Selected"
877
- msgstr ""
878
-
879
- #: pro/core/bulk-edit.php:179
880
- msgid "Restore Selected"
881
- msgstr ""
882
-
883
- #: pro/core/bulk-edit.php:180 pro/enhanced-media-library-pro.php:130
884
- msgid "Delete Selected Permanently"
885
- msgstr ""
886
-
887
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
888
- msgid "Order By"
889
- msgstr ""
890
-
891
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
892
- msgid "Random"
893
- msgstr ""
894
-
895
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
896
- msgid "Order"
897
- msgstr ""
898
-
899
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
900
- msgid "Limit"
901
- msgstr ""
902
-
903
- #: pro/core/options-pages.php:78
904
- msgid "Your license has been deactivated."
905
- msgstr ""
906
-
907
- #: pro/core/options-pages.php:88
908
- msgid "Please check if your license key is correct and try again."
909
- msgstr ""
910
-
911
- #: pro/core/options-pages.php:104
912
- #, php-format
913
- msgid ""
914
- "Activation failed with the error: %s. Please <a href=\"%s\">contact plugin "
915
- "authors</a>."
916
- msgstr ""
917
-
918
- #: pro/core/options-pages.php:119
919
- #, php-format
920
- msgid ""
921
- "Your license key is incorrect or canceled. Please <a href=\"%s\">contact "
922
- "plugin authors</a>."
923
- msgstr ""
924
-
925
- #: pro/core/options-pages.php:130
926
- msgid "You license has been activated."
927
- msgstr ""
928
-
929
- #: pro/core/options-pages.php:184
930
- #, php-format
931
- msgid "Auto-assign media items to parent %s %s on upload"
932
- msgstr ""
933
-
934
- #: pro/core/options-pages.php:185
935
- #, php-format
936
- msgid ""
937
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
938
- "attached to a %s will be assigned to %s of their parent %s. Currently "
939
- "assigned %s will not be saved. Media items that are not attached to any %s "
940
- "will not be affected."
941
- msgstr ""
942
-
943
- #: pro/core/options-pages.php:208 pro/enhanced-media-library-pro.php:127
944
- msgid "Bulk Edit"
945
- msgstr ""
946
-
947
- #: pro/core/options-pages.php:216 pro/core/options-pages.php:219
948
- msgid "Turn off 'Save Changes' button"
949
- msgstr ""
950
-
951
- #: pro/core/options-pages.php:220
952
- msgid "Save changes on the fly"
953
- msgstr ""
954
-
955
- #: pro/core/options-pages.php:221
956
- msgid ""
957
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
958
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
959
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
960
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
961
- "files / taxonomies with this option turned on."
962
- msgstr ""
963
-
964
- #: pro/core/options-pages.php:222
965
- msgid ""
966
- "Strongly NOT recommended option if you work with more than hundred of files "
967
- "at a time."
968
- msgstr ""
969
-
970
- #: pro/core/options-pages.php:261 pro/core/options-pages.php:280
971
- msgid "License Key"
972
- msgstr ""
973
-
974
- #: pro/core/options-pages.php:273
975
- #, php-format
976
- msgid ""
977
- "To unlock updates please enter your license key below. You can get your "
978
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
979
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
980
- msgstr ""
981
-
982
- #: pro/core/options-pages.php:283
983
- msgid "Activate License"
984
- msgstr ""
985
-
986
- #: pro/core/options-pages.php:290
987
- msgid "Your license is active!"
988
- msgstr ""
989
-
990
- #: pro/core/options-pages.php:294
991
- msgid "Deactivate License"
992
- msgstr ""
993
-
994
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
995
- msgid ""
996
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
997
- "this server&#8217;s configuration. If you continue to have problems, please "
998
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
999
- msgstr ""
1000
-
1001
- #: pro/core/update.php:113
1002
- msgid ""
1003
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1004
- "contact your server administrator.)"
1005
- msgstr ""
1006
-
1007
- #: pro/core/update.php:181
1008
- #, php-format
1009
- msgid ""
1010
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1011
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1012
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1013
- msgstr ""
1014
-
1015
- #: pro/enhanced-media-library-pro.php:119
1016
- msgid "ALL files belong to this item"
1017
- msgstr ""
1018
-
1019
- #: pro/enhanced-media-library-pro.php:120
1020
- msgid "SOME files belong to this item"
1021
- msgstr ""
1022
-
1023
- #: pro/enhanced-media-library-pro.php:121
1024
- msgid "NO files belong to this item"
1025
- msgstr ""
1026
-
1027
- #: pro/enhanced-media-library-pro.php:122
1028
- msgid "Changes saved."
1029
- msgstr ""
1030
-
1031
- #: pro/enhanced-media-library-pro.php:123
1032
- msgid "Something went wrong."
1033
- msgstr ""
1034
-
1035
- #: pro/enhanced-media-library-pro.php:126
1036
- msgid "Edit Media Files"
1037
- msgstr ""
1038
-
1039
- #: pro/enhanced-media-library-pro.php:129
1040
- msgid "Selecting"
1041
  msgstr ""
1042
 
1043
- #: pro/enhanced-media-library-pro.php:131
1044
- msgid "You are about to permanently delete all selected items."
1045
  msgstr ""
1046
 
1047
- #: pro/enhanced-media-library-pro.php:132
1048
- msgid "Delete"
1049
  msgstr ""
1050
 
1051
- #: pro/enhanced-media-library-pro.php:134
1052
- msgid "Moving to Trash"
1053
  msgstr ""
1054
 
1055
- #: pro/enhanced-media-library-pro.php:135
1056
- msgid "Restoring"
1057
  msgstr ""
1058
 
1059
- #: pro/enhanced-media-library-pro.php:136
1060
- msgid "Deleting"
1061
  msgstr ""
1062
 
1063
- #: pro/enhanced-media-library-pro.php:160
1064
- msgid "Create a filter-based gallery"
1065
  msgstr ""
1066
 
1067
- #: pro/enhanced-media-library-pro.php:161
1068
- msgid "Create a filter-based playlist"
1069
  msgstr ""
1070
 
1071
- #: pro/enhanced-media-library-pro.php:162
1072
- msgid "Create a filter-based video playlist"
1073
  msgstr ""
1074
 
1075
- #: pro/enhanced-media-library-pro.php:240
1076
- msgid ""
1077
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1078
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1079
- "will remain intact."
1080
  msgstr ""
1081
 
1082
- #: pro/enhanced-media-library-pro.php:240
1083
- msgid "Return to Plugins"
1084
  msgstr ""
1085
 
1086
- #: pro/enhanced-media-library-pro.php:291
1087
- msgid ""
1088
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1089
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1090
- "be active. Please network deactivate and delete the free versions of the "
1091
- "plugin. All your data will remain intact."
1092
  msgstr ""
1093
 
1094
- #: pro/enhanced-media-library-pro.php:308
1095
- msgid ""
1096
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1097
- "be active. Please deactivate and delete the free version of the plugin. All "
1098
- "your data will remain intact."
1099
  msgstr ""
1100
 
1101
- #: pro/enhanced-media-library-pro.php:324
1102
- msgid ""
1103
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1104
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1105
- "version to be active. Please deactivate (or network deactivate) and delete "
1106
- "the free version of the plugin for this site. All your data will remail "
1107
- "intact."
1108
  msgstr ""
1109
 
1110
- #. Plugin Name of the plugin/theme
1111
- msgid "Enhanced Media Library PRO"
1112
  msgstr ""
1113
 
1114
  #. Plugin URI of the plugin/theme
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
+ "POT-Creation-Date: 2017-01-13 03:01+0200\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.com>\n"
35
  msgstr[0] ""
36
  msgstr[1] ""
37
 
38
+ #: core/options-pages.php:97 core/options-pages.php:220
39
+ #: core/options-pages.php:313 core/options-pages.php:1080
40
+ #: core/options-pages.php:1204 core/options-pages.php:1529
41
+ #: core/options-pages.php:1729
42
  msgid "Media Settings"
43
  msgstr ""
44
 
45
+ #: core/options-pages.php:106 core/options-pages.php:285
46
  msgid "Media Library"
47
  msgstr ""
48
 
50
  msgid "Taxonomies"
51
  msgstr ""
52
 
53
+ #: core/options-pages.php:124 core/options-pages.php:287
54
  msgid "MIME Types"
55
  msgstr ""
56
 
57
+ #. Plugin Name of the plugin/theme
58
  #: core/options-pages.php:135 core/options-pages.php:136
59
  msgid "Enhanced Media Library"
60
  msgstr ""
61
 
62
+ #: core/options-pages.php:284
63
  msgid "General"
64
  msgstr ""
65
 
66
+ #: core/options-pages.php:286 core/options-pages.php:1225
67
  msgid "Media Taxonomies"
68
  msgstr ""
69
 
70
+ #: core/options-pages.php:310 core/options-pages.php:622
71
+ #: core/options-pages.php:1076 core/options-pages.php:1201
72
+ #: core/options-pages.php:1525
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr ""
75
 
76
+ #: core/options-pages.php:324
77
  msgid "Image sizes"
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:325
81
  msgid ""
82
  "The sizes listed below determine the maximum dimensions in pixels to use "
83
  "when adding an image to the Media Library."
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:329
87
  msgid "Thumbnail size"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:331
91
  msgid "Width"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:333
95
  msgid "Height"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:336
99
  msgid ""
100
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:341 core/options-pages.php:342
104
  msgid "Medium size"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:343 core/options-pages.php:353
108
  msgid "Max Width"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:345 core/options-pages.php:355
112
  msgid "Max Height"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:351 core/options-pages.php:352
116
  msgid "Large size"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:368
120
  msgid "Embeds"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:375
124
  msgid "Uploading Files"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:382
128
  msgid "Store uploads in this folder"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:386
132
  #, php-format
133
  msgid "Default is %s"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:392
137
  msgid "Full URL path to files"
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:394
141
  msgid "Configuring this is optional. By default, it should be blank."
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:402
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
+ #: core/options-pages.php:474 core/options-pages.php:1249
149
+ #: core/options-pages.php:1264 core/options-pages.php:1327
150
+ #: core/options-pages.php:1399
151
  msgid "Edit"
152
  msgstr ""
153
 
154
+ #: core/options-pages.php:475
155
  msgid "Close"
156
  msgstr ""
157
 
158
+ #: core/options-pages.php:476 core/options-pages.php:1265
159
+ #: core/options-pages.php:1328
160
  msgid "View"
161
  msgstr ""
162
 
163
+ #: core/options-pages.php:477 core/options-pages.php:1266
164
+ #: core/options-pages.php:1329
165
  msgid "Update"
166
  msgstr ""
167
 
168
+ #: core/options-pages.php:478 core/options-pages.php:1267
169
+ #: core/options-pages.php:1330
170
  msgid "Add New"
171
  msgstr ""
172
 
173
+ #: core/options-pages.php:479 core/options-pages.php:1268
174
+ #: core/options-pages.php:1331
175
  msgid "New"
176
  msgstr ""
177
 
178
+ #: core/options-pages.php:480
179
  msgid "Name"
180
  msgstr ""
181
 
182
+ #: core/options-pages.php:481 core/options-pages.php:1269
183
+ #: core/options-pages.php:1332
184
  msgid "Parent"
185
  msgstr ""
186
 
187
+ #: core/options-pages.php:482 core/options-pages.php:718
188
+ #: core/options-pages.php:1263 core/options-pages.php:1326
189
+ #: core/taxonomies.php:340 enhanced-media-library.php:509
190
  msgid "All"
191
  msgstr ""
192
 
193
+ #: core/options-pages.php:483 core/options-pages.php:1270
194
+ #: core/options-pages.php:1333
195
  msgid "Search"
196
  msgstr ""
197
 
198
+ #: core/options-pages.php:485 core/options-pages.php:1314
199
  msgid "New Taxonomy"
200
  msgstr ""
201
 
202
+ #: core/options-pages.php:487
203
  msgid "Remove Taxonomy"
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:488
207
  msgid "Taxonomy will be removed."
208
  msgstr ""
209
 
210
+ #: core/options-pages.php:489
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
214
  "will be available again."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:490
218
  msgid "Media items will remain intact."
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:491
222
  msgid "Are you still sure?"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:492
226
  msgid "Yes, remove taxonomy"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:494
230
  msgid "Duplicate"
231
  msgstr ""
232
 
233
+ #: core/options-pages.php:495
234
  msgid "Taxonomy with the same name already exists. Please chose other one."
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:497
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:498
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:499
246
  msgid "Please choose Singular name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:500
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:502
254
  msgid "Ok"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:503 core/options-pages.php:508
258
+ #: core/options-pages.php:552 core/options-pages.php:597
 
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:505
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:506 core/options-pages.php:594
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:507
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:509
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:547 core/options-pages.php:1653
279
  msgid "Restore WordPress default MIME Types"
280
  msgstr ""
281
 
282
+ #: core/options-pages.php:548
283
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
284
  msgstr ""
285
 
286
+ #: core/options-pages.php:549
287
  msgid "Restore Defaults"
288
  msgstr ""
289
 
290
+ #: core/options-pages.php:550
291
  msgid "Restoring..."
292
  msgstr ""
293
 
294
+ #: core/options-pages.php:554
295
  msgid "Please fill into all fields."
296
  msgstr ""
297
 
298
+ #: core/options-pages.php:555
299
  msgid "Duplicate extensions or MIME types. Please chose other one."
300
  msgstr ""
301
 
302
+ #: core/options-pages.php:592 core/options-pages.php:709
303
  msgid "Complete Cleanup"
304
  msgstr ""
305
 
306
+ #: core/options-pages.php:593
307
  msgid ""
308
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
309
  "plugin data</strong> from the database including backups."
310
  msgstr ""
311
 
312
+ #: core/options-pages.php:595
313
  msgid "Yes, delete all data"
314
  msgstr ""
315
 
316
+ #: core/options-pages.php:596
317
  msgid "Cleaning..."
318
  msgstr ""
319
 
320
+ #: core/options-pages.php:627
321
  msgid "Enhanced Media Library Settings"
322
  msgstr ""
323
 
324
+ #: core/options-pages.php:637
325
  msgid "Export"
326
  msgstr ""
327
 
328
+ #: core/options-pages.php:641
329
  msgid ""
330
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
331
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
333
  "another website."
334
  msgstr ""
335
 
336
+ #: core/options-pages.php:646
337
  msgid "Export Plugin Settings"
338
  msgstr ""
339
 
340
+ #: core/options-pages.php:656
341
  msgid "Import"
342
  msgstr ""
343
 
344
+ #: core/options-pages.php:660
345
  msgid ""
346
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
347
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
349
  "another website using the export button above."
350
  msgstr ""
351
 
352
+ #: core/options-pages.php:661
353
  msgid ""
354
  "All plugin settings will be overridden by the import. You will have a chance "
355
  "to restore current data from an automatic backup in case you are not "
356
  "satisfied with the result of the import."
357
  msgstr ""
358
 
359
+ #: core/options-pages.php:668
360
  msgid "Import Plugin Settings"
361
  msgstr ""
362
 
363
+ #: core/options-pages.php:680
364
  msgid "Restore"
365
  msgstr ""
366
 
367
+ #: core/options-pages.php:686
368
  msgid "No backup available at the moment."
369
  msgstr ""
370
 
371
+ #: core/options-pages.php:688
372
  msgid "Backup will be created automatically before any import operation."
373
  msgstr ""
374
 
375
+ #: core/options-pages.php:692
376
  msgid ""
377
  "The backup has been automatically created before the latest import operation."
378
  msgstr ""
379
 
380
+ #: core/options-pages.php:696
381
  msgid "Restore Settings from the Backup"
382
  msgstr ""
383
 
384
+ #: core/options-pages.php:716
385
  msgid "What will be deleted:"
386
  msgstr ""
387
 
388
+ #: core/options-pages.php:721
389
  msgid "All plugin options"
390
  msgstr ""
391
 
392
+ #: core/options-pages.php:722
393
  msgid "All plugin backups stored in database"
394
  msgstr ""
395
 
396
+ #: core/options-pages.php:726
397
  msgid "What will remain intact:"
398
  msgstr ""
399
 
400
+ #: core/options-pages.php:727
401
  msgid "All media items"
402
  msgstr ""
403
 
404
+ #: core/options-pages.php:728
405
  msgid "All taxonomies not listed above"
406
  msgstr ""
407
 
408
+ #: core/options-pages.php:731
409
  msgid ""
410
  "The plugin cannot delete itself because of security reason. Please delete it "
411
  "manually from plugin list after cleanup."
412
  msgstr ""
413
 
414
+ #: core/options-pages.php:733
415
  msgid ""
416
  "If you are not sure about this operation please create a backup of your "
417
  "database prior to cleanup!"
418
  msgstr ""
419
 
420
+ #: core/options-pages.php:739
421
  msgid "Delete All Data & Deactivate"
422
  msgstr ""
423
 
424
+ #: core/options-pages.php:839
425
  msgid "Please upload a file to import settings."
426
  msgstr ""
427
 
428
+ #: core/options-pages.php:865
429
  msgid "Plugin settings imported."
430
  msgstr ""
431
 
432
+ #: core/options-pages.php:912
433
  msgid "Plugin settings restored from the backup."
434
  msgstr ""
435
 
436
+ #: core/options-pages.php:1101
437
  msgid "Media Items Order"
438
  msgstr ""
439
 
440
+ #: core/options-pages.php:1108
441
  msgid "Order media items by"
442
  msgstr ""
443
 
444
+ #: core/options-pages.php:1111
 
445
  msgid "Date"
446
  msgstr ""
447
 
448
+ #: core/options-pages.php:1112
 
449
  msgid "Title"
450
  msgstr ""
451
 
452
+ #: core/options-pages.php:1113
 
453
  msgid "Custom Order"
454
  msgstr ""
455
 
456
+ #: core/options-pages.php:1115 core/options-pages.php:1127
457
  msgid "For media library and media popups"
458
  msgstr ""
459
 
460
+ #: core/options-pages.php:1116
461
  msgid "Option allows to change order by drag and drop with Custom Order value."
462
  msgstr ""
463
 
464
+ #: core/options-pages.php:1121
465
  msgid "Sort order"
466
  msgstr ""
467
 
468
+ #: core/options-pages.php:1124
 
469
  msgid "Ascending"
470
  msgstr ""
471
 
472
+ #: core/options-pages.php:1125
 
473
  msgid "Descending"
474
  msgstr ""
475
 
476
+ #: core/options-pages.php:1140
477
  msgid "Media Shortcodes"
478
  msgstr ""
479
 
480
+ #: core/options-pages.php:1147 core/options-pages.php:1150
481
  msgid "Enhanced media shortcodes"
482
  msgstr ""
483
 
484
+ #: core/options-pages.php:1151
485
  msgid ""
486
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
487
  "upload date, and media items number limit"
488
  msgstr ""
489
 
490
+ #: core/options-pages.php:1152
491
  msgid "Gallery example:"
492
  msgstr ""
493
 
494
+ #: core/options-pages.php:1153
495
  msgid "Audio playlist example:"
496
  msgstr ""
497
 
498
+ #: core/options-pages.php:1154
499
  msgid "Video playlist example:"
500
  msgstr ""
501
 
502
+ #: core/options-pages.php:1156
503
  #, php-format
504
  msgid ""
505
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
506
  msgstr ""
507
 
508
+ #: core/options-pages.php:1158
509
  #, php-format
510
  msgid "%sLearn more%s."
511
  msgstr ""
512
 
513
+ #: core/options-pages.php:1160
514
  #, php-format
515
  msgid ""
516
  "Please check out your gallery front-end and back-end functionality once this "
518
  "%s."
519
  msgstr ""
520
 
521
+ #: core/options-pages.php:1229 core/options-pages.php:1376
522
  msgid "Assign following taxonomies to Media Library:"
523
  msgstr ""
524
 
525
+ #: core/options-pages.php:1248 core/options-pages.php:1314
526
+ #: core/options-pages.php:1398
527
  msgid "Assign Taxonomy"
528
  msgstr ""
529
 
530
+ #: core/options-pages.php:1249 core/options-pages.php:1399
531
  msgid "Edit Taxonomy"
532
  msgstr ""
533
 
534
+ #: core/options-pages.php:1253 core/options-pages.php:1316
535
  msgid "Delete Taxonomy"
536
  msgstr ""
537
 
538
+ #: core/options-pages.php:1258 core/options-pages.php:1321
539
  msgid "Labels"
540
  msgstr ""
541
 
542
+ #: core/options-pages.php:1260 core/options-pages.php:1323
543
  msgid "Singular"
544
  msgstr ""
545
 
546
+ #: core/options-pages.php:1261 core/options-pages.php:1324
547
  msgid "Plural"
548
  msgstr ""
549
 
550
+ #: core/options-pages.php:1262 core/options-pages.php:1325
551
  msgid "Menu Name"
552
  msgstr ""
553
 
554
+ #: core/options-pages.php:1275 core/options-pages.php:1298
555
+ #: core/options-pages.php:1338 core/options-pages.php:1402
556
  msgid "Settings"
557
  msgstr ""
558
 
559
+ #: core/options-pages.php:1277 core/options-pages.php:1340
560
  msgid "Taxonomy Name"
561
  msgstr ""
562
 
563
+ #: core/options-pages.php:1278 core/options-pages.php:1341
564
  msgid "Hierarchical"
565
  msgstr ""
566
 
567
+ #: core/options-pages.php:1279 core/options-pages.php:1342
568
  msgid "Column for List View"
569
  msgstr ""
570
 
571
+ #: core/options-pages.php:1280 core/options-pages.php:1300
572
+ #: core/options-pages.php:1343 core/options-pages.php:1404
573
  msgid "Filter for List View"
574
  msgstr ""
575
 
576
+ #: core/options-pages.php:1281 core/options-pages.php:1301
577
+ #: core/options-pages.php:1344 core/options-pages.php:1405
578
  msgid "Filter for Grid View / Media Popup"
579
  msgstr ""
580
 
581
+ #: core/options-pages.php:1282 core/options-pages.php:1302
582
+ #: core/options-pages.php:1345 core/options-pages.php:1406
583
  msgid "Edit in Media Popup"
584
  msgstr ""
585
 
586
+ #: core/options-pages.php:1283 core/options-pages.php:1346
587
  msgid "Show in Nav Menu"
588
  msgstr ""
589
 
590
+ #: core/options-pages.php:1284 core/options-pages.php:1347
591
  msgid "Remember Terms Order (sort)"
592
  msgstr ""
593
 
594
+ #: core/options-pages.php:1285 core/options-pages.php:1348
595
  msgid "Show in REST"
596
  msgstr ""
597
 
598
+ #: core/options-pages.php:1286 core/options-pages.php:1349
599
  msgid "Rewrite Slug"
600
  msgstr ""
601
 
602
+ #: core/options-pages.php:1287 core/options-pages.php:1350
603
  msgid "Slug with Front"
604
  msgstr ""
605
 
606
+ #: core/options-pages.php:1362
607
  msgid "Add New Taxonomy"
608
  msgstr ""
609
 
610
+ #: core/options-pages.php:1372
611
  msgid "Non-Media Taxonomies"
612
  msgstr ""
613
 
614
+ #: core/options-pages.php:1435
615
  msgid "Options"
616
  msgstr ""
617
 
618
+ #: core/options-pages.php:1445 core/options-pages.php:1448
619
  msgid "Taxonomy archive pages"
620
  msgstr ""
621
 
622
+ #: core/options-pages.php:1449
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr ""
625
 
626
+ #: core/options-pages.php:1450
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr ""
630
 
631
+ #: core/options-pages.php:1456 core/options-pages.php:1459
632
  msgid "Assign all like hierarchical"
633
  msgstr ""
634
 
635
+ #: core/options-pages.php:1460
636
  msgid ""
637
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
638
  msgstr ""
639
 
640
+ #: core/options-pages.php:1466 core/options-pages.php:1469
641
  msgid "Force filters"
642
  msgstr ""
643
 
644
+ #: core/options-pages.php:1470
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr ""
647
 
648
+ #: core/options-pages.php:1471
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
 
652
+ #: core/options-pages.php:1477 core/options-pages.php:1480
653
  msgid "Show count"
654
  msgstr ""
655
 
656
+ #: core/options-pages.php:1481
657
  msgid "Show item count per category for media filters"
658
  msgstr ""
659
 
660
+ #: core/options-pages.php:1535
661
  msgid "Add New MIME Type"
662
  msgstr ""
663
 
664
+ #: core/options-pages.php:1555 core/options-pages.php:1610
665
  msgid "Extension"
666
  msgstr ""
667
 
668
+ #: core/options-pages.php:1556 core/options-pages.php:1611
669
  msgid "MIME Type"
670
  msgstr ""
671
 
672
+ #: core/options-pages.php:1557 core/options-pages.php:1612
673
  msgid "Singular Label"
674
  msgstr ""
675
 
676
+ #: core/options-pages.php:1558 core/options-pages.php:1613
677
  msgid "Plural Label"
678
  msgstr ""
679
 
680
+ #: core/options-pages.php:1559 core/options-pages.php:1589
681
+ #: core/options-pages.php:1602 core/options-pages.php:1614
682
  msgid "Add Filter"
683
  msgstr ""
684
 
685
+ #: core/options-pages.php:1560 core/options-pages.php:1590
686
+ #: core/options-pages.php:1603 core/options-pages.php:1615
687
  msgid "Allow Upload"
688
  msgstr ""
689
 
690
+ #: core/options-pages.php:1591 core/options-pages.php:1604
691
  msgid "Delete MIME Type"
692
  msgstr ""
693
 
694
+ #: core/options-pages.php:1651
695
  msgid "Save Changes"
696
  msgstr ""
697
 
698
+ #: core/options-pages.php:1681
699
  msgid "Changelog"
700
  msgstr ""
701
 
702
+ #: core/options-pages.php:1682
703
  msgid "What's new in"
704
  msgstr ""
705
 
706
+ #: core/options-pages.php:1682
707
  msgid "version"
708
  msgstr ""
709
 
710
+ #: core/options-pages.php:1685
711
  msgid "More features under the hood"
712
  msgstr ""
713
 
714
+ #: core/options-pages.php:1687
715
  msgid "Support"
716
  msgstr ""
717
 
718
+ #: core/options-pages.php:1688
719
  msgid "Feel free to ask for help on"
720
  msgstr ""
721
 
722
+ #: core/options-pages.php:1688
723
  msgid "Support is free for both versions of the plugin."
724
  msgstr ""
725
 
726
+ #: core/options-pages.php:1690
727
  msgid "Plugin rating"
728
  msgstr ""
729
 
730
+ #: core/options-pages.php:1691
731
  msgid "Please"
732
  msgstr ""
733
 
734
+ #: core/options-pages.php:1691
735
  msgid "vote for the plugin"
736
  msgstr ""
737
 
738
+ #: core/options-pages.php:1691
739
  msgid "Thanks!"
740
  msgstr ""
741
 
742
+ #: core/options-pages.php:1693
743
  msgid "Other plugins you may find useful"
744
  msgstr ""
745
 
746
+ #: core/options-pages.php:1732
747
  msgid "Utility"
748
  msgstr ""
749
 
750
+ #: core/options-pages.php:1755
751
  msgid "Vote!"
752
  msgstr ""
753
 
760
  msgstr ""
761
 
762
  #: core/taxonomies.php:333 core/taxonomies.php:339
763
+ #: enhanced-media-library.php:508
764
  msgid "Filter by"
765
  msgstr ""
766
 
767
+ #: core/taxonomies.php:341 enhanced-media-library.php:510
768
  msgid "Not in a"
769
  msgstr ""
770
 
771
+ #: core/taxonomies.php:1283 core/taxonomies.php:1290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  msgid "Remove"
773
  msgstr ""
774
 
775
+ #: core/taxonomies.php:1285 core/taxonomies.php:1292
776
  msgid "Deselect"
777
  msgstr ""
778
 
779
+ #: core/taxonomies.php:1337
780
  msgid "Caption this image&hellip;"
781
  msgstr ""
782
 
783
+ #: core/taxonomies.php:1341
784
  msgid "Describe this video&hellip;"
785
  msgstr ""
786
 
787
+ #: core/taxonomies.php:1343
788
  msgid "Describe this audio file&hellip;"
789
  msgstr ""
790
 
791
+ #: core/taxonomies.php:1345
792
  msgid "Describe this media file&hellip;"
793
  msgstr ""
794
 
795
+ #: enhanced-media-library.php:342 enhanced-media-library.php:507
796
+ msgid "All Uncategorized"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
797
  msgstr ""
798
 
799
+ #: enhanced-media-library.php:343 enhanced-media-library.php:511
800
+ msgid "Reset All Filters"
801
  msgstr ""
802
 
803
+ #: enhanced-media-library.php:541
804
+ msgid "Uploaded to post #"
805
  msgstr ""
806
 
807
+ #: enhanced-media-library.php:542
808
+ msgid "Based On"
809
  msgstr ""
810
 
811
+ #: enhanced-media-library.php:574 enhanced-media-library.php:576
812
+ msgid "Media Categories"
813
  msgstr ""
814
 
815
+ #: enhanced-media-library.php:575
816
+ msgid "Media Category"
817
  msgstr ""
818
 
819
+ #: enhanced-media-library.php:577
820
+ msgid "All Media Categories"
821
  msgstr ""
822
 
823
+ #: enhanced-media-library.php:578
824
+ msgid "Edit Media Category"
825
  msgstr ""
826
 
827
+ #: enhanced-media-library.php:579
828
+ msgid "View Media Category"
829
  msgstr ""
830
 
831
+ #: enhanced-media-library.php:580
832
+ msgid "Update Media Category"
 
 
 
833
  msgstr ""
834
 
835
+ #: enhanced-media-library.php:581
836
+ msgid "Add New Media Category"
837
  msgstr ""
838
 
839
+ #: enhanced-media-library.php:582
840
+ msgid "New Media Category Name"
 
 
 
 
841
  msgstr ""
842
 
843
+ #: enhanced-media-library.php:583
844
+ msgid "Parent Media Category"
 
 
 
845
  msgstr ""
846
 
847
+ #: enhanced-media-library.php:584
848
+ msgid "Parent Media Category:"
 
 
 
 
 
849
  msgstr ""
850
 
851
+ #: enhanced-media-library.php:585
852
+ msgid "Search Media Categories"
853
  msgstr ""
854
 
855
  #. Plugin URI of the plugin/theme
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: webbistro
3
  Tags: media library, media category, media categories, media gallery, gallery shortcode, media tag, media tags, media taxonomy, media taxonomies, media uploader, mime type, mime, mime types, file types, media types, media filter, attachment, gallery, image, images, media, ux, user experience, wp-admin, admin, taxonomy, taxonomies
4
  Requires at least: 4.5
5
- Tested up to: 4.7
6
- Stable tag: 2.3.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -68,9 +68,9 @@ Support is free for both versions of the plugin. "PRO"-users do not have priorit
68
 
69
  = Available Languages =
70
 
71
- You can see available translations and their progress here: https://translate.wordpress.org/projects/wp-plugins/enhanced-media-library Many thanks to all involved!
72
 
73
- Assistance with translating is highly appreciated! If you'd like to be a translation editor of the PRO version please contact us on [wpuxsolutions.com](https://www.wpuxsolutions.com/support/create-new-ticket/)
74
 
75
 
76
  = Compatible with the Plugins: =
@@ -94,26 +94,29 @@ Please let us know if you find any issue with the plugins from the list above or
94
 
95
  = Incompatibility =
96
 
97
- Please notice that you use the Enhanced Media Library with other plugins that add media categories, media folders, and manage MIME Types at your own risk. We cannot guarantee their compatibility because of different approach to the same functionality. It does NOT mean that we do not recommend using those plugins, it just means we do not recommend to use them at the same time with the Enhanced Media Library. Please choose the one you prefer.
98
 
99
 
100
  > #### Enhanced Media Library PRO
101
 
102
- > Key features:
103
 
104
- > * Media items categorization in bulk (multiple items to multiple categories at once) for both just uploaded and existing
105
- > * Media items within a category can be selected in bulk with a single click
106
- > * Selected media items can be deleted in bulk in the Grid mode of the media library or in the post/page editor media popup with a single click
107
- > * Media items child to a post of any type can be auto-assigned to their parent post categories on upload
108
- > * Categories of existing media items can be synchronized with their parent post categories of any type with a single click
109
- > * Filter-based gallery in two clicks, no need to figure out your media category IDs, nor to delve into the text editor shortcode
110
 
111
 
112
  = Useful Links =
113
 
114
- * [Where to start? (Information is being updated)](https://wpuxsolutions.com/documents/enhanced-media-library/eml-where-to-start/)
115
- * [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts/)
116
- * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs/)
 
 
 
117
 
118
 
119
 
@@ -163,6 +166,15 @@ Please notice that you use the Enhanced Media Library with other plugins that ad
163
 
164
  == Changelog ==
165
 
 
 
 
 
 
 
 
 
 
166
  = 2.3.6 =
167
  *Release Date - December 16, 2016*
168
 
2
  Contributors: webbistro
3
  Tags: media library, media category, media categories, media gallery, gallery shortcode, media tag, media tags, media taxonomy, media taxonomies, media uploader, mime type, mime, mime types, file types, media types, media filter, attachment, gallery, image, images, media, ux, user experience, wp-admin, admin, taxonomy, taxonomies
4
  Requires at least: 4.5
5
+ Tested up to: 4.7.1
6
+ Stable tag: 2.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
68
 
69
  = Available Languages =
70
 
71
+ You can see the list of available translations and their progress on [wpUXsolutions.com](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library). Many thanks to all involved!
72
 
73
+ Assistance with translating is highly appreciated! If you'd like to be a translation editor or to suggest translations for your language please feel free to contribute to translation. All changes made are included to every new release of the plugin.
74
 
75
 
76
  = Compatible with the Plugins: =
94
 
95
  = Incompatibility =
96
 
97
+ Please notice that you use Enhanced Media Library with other plugins which add media categories, media folders, or manage MIME Types at your own risk. We cannot guarantee their compatibility because of the different approach to the same functionality. We do not recommend using them at the same time with Enhanced Media Library. Please choose the one you prefer.
98
 
99
 
100
  > #### Enhanced Media Library PRO
101
 
102
+ > Additional comfort and even more convenient way to organize WordPress media library:
103
 
104
+ > * Categorize media items in bulk
105
+ > * Select multiple media items in a single click
106
+ > * Upload media items to parent (custom) post categories automatically
107
+ > * Enhanced `gallery` / `playlist` shortcodes with just WordPress UI, no "coding"
108
+
109
+ > [More on wpUXsolutions.com](https://www.wpuxsolutions.com/documents/enhanced-media-library/where-to-start#section2)
110
 
111
 
112
  = Useful Links =
113
 
114
+ * [Where to Start?](https://wpuxsolutions.com/documents/enhanced-media-library/where-to-start)
115
+ * [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library)
116
+ * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs)
117
+ * [Contribute to Translation](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library)
118
+ * [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts)
119
+
120
 
121
 
122
 
166
 
167
  == Changelog ==
168
 
169
+ = 2.4 =
170
+ *Release Date - January 13, 2017*
171
+
172
+ = Improvements =
173
+ * Better layout and workflow for the grid mode
174
+ * RTL stylesheets added
175
+
176
+
177
+ &nbsp;
178
  = 2.3.6 =
179
  *Release Date - December 16, 2016*
180