Document Gallery - Version 2.2.5

Version Description

  • Bug Fix: Resolves a bug where document descriptions were not being displayed correctly.
  • Translation: Thanks, Marc Liotard and Traffic Influence for updating the French translation to include new phrases throughout the plugin!
Download this release

Release Info

Developer dan.rossiter
Plugin Icon 128x128 Document Gallery
Version 2.2.5
Comparing to
See all releases

Code changes from version 2.2.4 to 2.2.5

README.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Document Gallery ===
2
- Contributors: dan.rossiter
3
  Tags: attachments, thumbnail, documents, gallery, MS office, pdf
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=EE5LWRLG933EN&lc=US&item_name=Document%20Gallery%20Plugin&item_number=document%2dgallery&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
5
  Requires at least: 3.6
6
  Tested up to: 4.0
7
- Stable tag: 2.2.4
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -26,11 +26,11 @@ Read more in the **Installation** tab!
26
 
27
  Document Gallery has to-date been translated into **5** languages, listed below.
28
 
29
- 1. **French** — *Thanks, Marc Liotard!*
30
- 1. **Russian** — *Thanks, [demur](http://wordpress.org/support/profile/demur)!*
31
- 1. **Spanish** — *Thanks, Andrew Kurtis and [WebHostingHub](http://www.webhostinghub.com/)!*
32
- 1. **Swedish** — *Thanks, [mepmepmep](http://wordpress.org/support/profile/mepmepmep)!*
33
- 1. **Ukrainian** — *Thanks, [demur](http://wordpress.org/support/profile/demur)!*
34
 
35
  = Developers =
36
 
@@ -393,6 +393,12 @@ To see a list of features planned for the future as well as to propose your own
393
  ideas for future Document Gallery development, take a look at our
394
  [issue tracker](https://github.com/thenadz/document-gallery/issues).
395
 
 
 
 
 
 
 
396
  = 2.2.4 =
397
  * **Translation:**: Thanks to [mepmepmep](http://wordpress.org/support/profile/mepmepmep)
398
  who has just updated the Document Gallery Swedish translation!
1
  === Document Gallery ===
2
+ Contributors: dan.rossiter, demur
3
  Tags: attachments, thumbnail, documents, gallery, MS office, pdf
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=EE5LWRLG933EN&lc=US&item_name=Document%20Gallery%20Plugin&item_number=document%2dgallery&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
5
  Requires at least: 3.6
6
  Tested up to: 4.0
7
+ Stable tag: 2.2.5
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
26
 
27
  Document Gallery has to-date been translated into **5** languages, listed below.
28
 
29
+ * **French** — *Thanks, Marc Liotard and [Traffic Influence](http://www.trafic-influence.com/)!*
30
+ * **Russian** — *Thanks, [demur](http://wordpress.org/support/profile/demur)!*
31
+ * **Spanish** — *Thanks, Andrew Kurtis and [WebHostingHub](http://www.webhostinghub.com/)!*
32
+ * **Swedish** — *Thanks, [mepmepmep](http://wordpress.org/support/profile/mepmepmep)!*
33
+ * **Ukrainian** — *Thanks, [demur](http://wordpress.org/support/profile/demur)!*
34
 
35
  = Developers =
36
 
393
  ideas for future Document Gallery development, take a look at our
394
  [issue tracker](https://github.com/thenadz/document-gallery/issues).
395
 
396
+ = 2.2.5 =
397
+ * **Bug Fix:** Resolves a bug where document descriptions were not being displayed
398
+ correctly.
399
+ * **Translation:** Thanks, Marc Liotard and [Traffic Influence](http://www.trafic-influence.com/)
400
+ for updating the French translation to include new phrases throughout the plugin!
401
+
402
  = 2.2.4 =
403
  * **Translation:**: Thanks to [mepmepmep](http://wordpress.org/support/profile/mepmepmep)
404
  who has just updated the Document Gallery Swedish translation!
document-gallery.php CHANGED
@@ -5,14 +5,14 @@ defined('WPINC') OR exit;
5
  Plugin Name: Document Gallery
6
  Plugin URI: http://wordpress.org/extend/plugins/document-gallery/
7
  Description: Display non-images (and images) in gallery format on a page or post with the [dg] shortcode.
8
- Version: 2.2.4
9
  Author: Dan Rossiter
10
  Author URI: http://danrossiter.org/
11
  License: GPLv2
12
  Text Domain: document-gallery
13
  */
14
 
15
- define('DG_VERSION', '2.2.4');
16
 
17
  // define helper paths & URLs
18
  define('DG_BASENAME', plugin_basename(__FILE__));
5
  Plugin Name: Document Gallery
6
  Plugin URI: http://wordpress.org/extend/plugins/document-gallery/
7
  Description: Display non-images (and images) in gallery format on a page or post with the [dg] shortcode.
8
+ Version: 2.2.5
9
  Author: Dan Rossiter
10
  Author URI: http://danrossiter.org/
11
  License: GPLv2
12
  Text Domain: document-gallery
13
  */
14
 
15
+ define('DG_VERSION', '2.2.5');
16
 
17
  // define helper paths & URLs
18
  define('DG_BASENAME', plugin_basename(__FILE__));
inc/class-document.php CHANGED
@@ -70,8 +70,8 @@ class DG_Document {
70
  'dg_icon_template',
71
  ' <div class="document-icon">' . PHP_EOL .
72
  ' <a href="%link%"><img src="%img%" title="%title_attribute%" alt="%title_attribute%" /><br>%title%</a>' . PHP_EOL .
73
- $description .
74
- ' </div>' . PHP_EOL,
75
  $this->gallery->useDescriptions(),
76
  $this->ID);
77
 
70
  'dg_icon_template',
71
  ' <div class="document-icon">' . PHP_EOL .
72
  ' <a href="%link%"><img src="%img%" title="%title_attribute%" alt="%title_attribute%" /><br>%title%</a>' . PHP_EOL .
73
+ ' </div>' . PHP_EOL .
74
+ $description,
75
  $this->gallery->useDescriptions(),
76
  $this->ID);
77
 
languages/document-gallery-fr_FR.mo CHANGED
Binary file
languages/document-gallery-fr_FR.po CHANGED
@@ -2,99 +2,112 @@
2
  # This file is distributed under the same license as the Document Gallery package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Document Gallery 2.0.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/document-gallery\n"
7
- "POT-Creation-Date: 2014-03-22 07:07:30+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-09-12 19:47-0600\n"
12
  "Last-Translator: Marc LIOTARD <tech@trafic-influence.com>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
14
  "X-Generator: Poedit 1.6.9\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "Language: fr\n"
17
 
18
- #: admin/class-admin.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  msgid "Settings"
20
- msgstr "Configuration"
21
 
22
- #: admin/class-admin.php:37
23
  msgid "Document Gallery Settings"
24
- msgstr "Configuration de Document Gallery"
25
 
26
  #. Plugin Name of the plugin/theme
27
- #: admin/class-admin.php:38
28
  msgid "Document Gallery"
29
  msgstr "Document Gallery"
30
 
31
- #: admin/class-admin.php:67
32
  msgid "Default Settings"
33
- msgstr "Configuration par défaut"
34
 
35
- #: admin/class-admin.php:71
36
  msgid "Thumbnail Generation"
37
- msgstr "Génération de miniatures"
38
 
39
- #: admin/class-admin.php:75
40
  msgid "Custom CSS"
41
  msgstr "CSS personnalisé"
42
 
43
- #: admin/class-admin.php:79
44
- msgid "Advanced Thumbnail Generation"
45
- msgstr "Génération avancée de miniatures "
46
-
47
- #: admin/class-admin.php:91
48
  msgid "Link to attachment page rather than to file"
49
- msgstr "Faire un lien vers la page du média plutôt que vers le fichier"
50
 
51
- #: admin/class-admin.php:103
52
  msgid "Include document descriptions"
53
- msgstr "Inclure la description du document"
54
 
55
- #: admin/class-admin.php:115
56
  msgid "Use auto-generated document thumbnails"
57
- msgstr "Utiliser les miniatures du document générées automatiquement"
58
 
59
- #: admin/class-admin.php:127
60
  msgid "Include image attachments in gallery"
61
  msgstr "Inclure les images dans la galerie"
62
 
63
- #: admin/class-admin.php:139
64
  msgid "Only look for attachments in post where [dg] is used"
65
  msgstr ""
66
- "Chercher uniquement les médias attachés à l'article où [dg] est utilisé"
 
67
 
68
- #: admin/class-admin.php:152
69
  msgid "Ascending or descending sorting of documents"
70
- msgstr "Classement ascendant ou descendant des documents"
71
 
72
- #: admin/class-admin.php:165
73
  msgid "Which field to order documents by"
74
- msgstr "Champ par lequel classer les documents"
75
 
76
- #: admin/class-admin.php:178
77
  msgid ""
78
  "Whether matched documents must have all taxa_names (AND) or at least one (OR)"
79
  msgstr ""
80
  "Permet de définir si les documents qui coïncident doivent avoir toutes les "
81
  "taxa_names (AND) ou au moins une (OR)"
82
 
83
- #: admin/class-admin.php:190
84
  msgid "Locally generate thumbnails for audio & video files."
85
  msgstr ""
86
  "Générer localement les miniatures pour les médias de type audio et vidéo."
87
 
88
- #: admin/class-admin.php:203
89
  msgid ""
90
  "Use <a href=\"http://www.ghostscript.com/\" target=\"_blank\">Ghostscript</"
91
  "a> for faster local PDF processing (compared to Imagick)."
92
  msgstr ""
93
  "Utiliser <a href=\"http://www.ghostscript.com/\" target=\"_blank"
94
- "\">Ghostscript</a> pour accélérer le processus de PDF localement (en "
95
  "comparaison avec Imagick)."
96
 
97
- #: admin/class-admin.php:204
98
  msgid ""
99
  "Your server is not configured to run <a href=\"http://www.ghostscript.com/\" "
100
  "target=\"_blank\">Ghostscript</a>."
@@ -102,16 +115,16 @@ msgstr ""
102
  "Votre serveur n'est pas configuré pour exécuter <a href=\"http://www."
103
  "ghostscript.com/\" target=\"_blank\">Ghostscript</a>."
104
 
105
- #: admin/class-admin.php:218
106
  msgid ""
107
  "Use <a href=\"http://www.php.net/manual/en/book.imagick.php\" target=\"_blank"
108
  "\">Imagick</a> to handle lots of filetypes locally."
109
  msgstr ""
110
  "Utiliser <a href=\"http://www.php.net/manual/es/book.imagick.php\" target="
111
- "\"_blank\">Imagick</a> pour gérer la majeure partie des types de fichier "
112
  "localement."
113
 
114
- #: admin/class-admin.php:219
115
  msgid ""
116
  "Your server is not configured to run <a href=\"http://www.php.net/manual/en/"
117
  "book.imagick.php\" target=\"_blank\">Imagick</a>."
@@ -119,7 +132,7 @@ msgstr ""
119
  "Votre serveur n'est pas configuré pour exécuter <a href=\"http://www.php.net/"
120
  "manual/es/book.imagick.php\" target=\"_blank\">Imagick</a>."
121
 
122
- #: admin/class-admin.php:233
123
  msgid ""
124
  "Use <a href=\"https://drive.google.com/viewer\" target=\"_blank\">Google "
125
  "Drive Viewer</a> to generate thumbnails for MS Office files and many other "
@@ -129,20 +142,80 @@ msgstr ""
129
  "\">Google Drive Viewer</a> pour générer les miniatures des fichiers MS "
130
  "Office et autres types de fichiers."
131
 
132
- #: admin/class-admin.php:234
133
  msgid "Your server does not allow remote HTTP access."
134
  msgstr ""
135
  "Votre serveur n'est pas configuré pour gérer les accès HTTP à distance."
136
 
137
- #: admin/class-admin.php:248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  msgid "Successfully auto-detected the location of Ghostscript."
139
- msgstr "Le répertoire de GhostScript a été localisé avec succès."
140
 
141
- #: admin/class-admin.php:249
142
  msgid "Failed to auto-detect the location of Ghostscript."
143
- msgstr "La tentative de localisation du répertoire de GhostScript a échoué."
144
 
145
- #: admin/class-admin.php:257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  msgid ""
147
  "The following values will be used by default in the shortcode. You can still "
148
  "manually set each of these values in each individual shortcode."
@@ -151,113 +224,233 @@ msgstr ""
151
  "Vous pouvez néanmoins paramétrer manuellement ces valeurs pour chaque "
152
  "shortcode individuel."
153
 
154
- #: admin/class-admin.php:264
155
  msgid "Select which tools to use when generating thumbnails."
156
  msgstr "Choisir les outils utilisés pour la génération des miniatures."
157
 
158
- #: admin/class-admin.php:270
159
  msgid ""
160
  "Enter custom CSS styling for use with document galleries. To see which ids "
161
  "and classes you can style, take a look at <a href=\"%s\" target=\"_blank"
162
  "\">style.css</a>."
163
  msgstr ""
164
- "Saisissez CSS personalizado para su uso con galerías de documentos. Para ver "
165
- "los identificadores de clases de estilo, vea <a href=\"%s\" target=\"_blank"
166
- "\">style.css</a>."
167
 
168
- #: admin/class-admin.php:288
169
  msgid ""
170
  "Unless you <em>really</em> know what you're doing, you should not touch "
171
  "these values."
172
  msgstr ""
173
  "A moins de <em>vraiment</em> savoir ce que vous faites, vous ne devriez pas "
174
- "modifier cette valeur."
175
 
176
- #: admin/class-admin.php:290
177
  msgid ""
178
  "NOTE: <code>exec()</code> is not accessible. Ghostscript will not function."
179
  msgstr ""
180
  "NOTE : <code>exec()</code> n'est pas accessible. Ghostscript ne fonctionnera "
181
  "pas."
182
 
183
- #: admin/class-admin.php:387
184
- msgid "Failed to update CSS file."
185
- msgstr "Échec de l'enregistrement du fichier CSS."
 
 
 
 
 
 
 
 
 
 
186
 
187
- #: admin/class-admin.php:398
188
- msgid "Invalid Ghostscript path given: "
189
- msgstr "Chemin de GhostScript invalide :"
190
 
191
- #: inc/class-gallery.php:88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  msgid "Generated using Document Gallery. Get yours here: "
193
  msgstr "Génération réalisée avec Document Gallery. Obtenez votre version ici :"
194
 
195
- #: inc/class-gallery.php:91
196
  msgid "No attachments to display. How boring! :("
197
  msgstr "Aucun média à afficher... Quel ennui ! :("
198
 
199
- #: inc/class-gallery.php:92
200
  msgid "The %s parameter may only be \"%s\" or \"%s.\" You entered \"%s.\""
201
  msgstr ""
202
  "Le paramètre %s ne peut être que \"%s\" ou \"%s.\" Vous avez saisi \"%s.\""
203
 
204
- #: inc/class-gallery.php:263
205
  msgid "The following ID is invalid: "
206
  msgid_plural "The following IDs are invalid: "
207
  msgstr[0] "L'ID suivant est invalide :"
208
  msgstr[1] "Les ID suivants sont invalides :"
209
 
210
- #: inc/class-gallery.php:329
211
  msgid "The orderby value entered, \"%s,\" is not valid."
212
  msgstr "La valeur orderby saisie, \"%s,\" est invalide."
213
 
214
- #: inc/class-gallery.php:438
215
- msgid "The following attributes are invalid: "
216
- msgstr "Les attributs suivants sont invalides :"
217
-
218
- #: inc/class-gallery.php:488
219
  msgid "%s is not a valid term name in %s."
220
  msgstr "%s n'est pas un terme valide dans %s."
221
 
222
- #: inc/class-thumber.php:131
 
 
 
 
 
 
 
 
223
  msgid "Could not open file: "
224
  msgstr "Impossible d'ouvrir le fichier :"
225
 
226
- #: inc/class-thumber.php:136
227
  msgid "Could not write file: "
228
- msgstr "Impossible d'écrire dans le fichier :"
229
 
230
- #: inc/class-thumber.php:174
231
  msgid "Failed to open file in Imagick: "
232
- msgstr "Échec de l'ouverture du fichier dans Imagick:"
233
 
234
- #: inc/class-thumber.php:184
235
  msgid "Failed to save image in Imagick: "
236
- msgstr "Échec de l'enregistrement de l'image dans Imagick:"
237
 
238
- #: inc/class-thumber.php:244
239
  msgid "Ghostscript failed: "
240
  msgstr "Échec Ghostscript :"
241
 
242
- #: inc/class-thumber.php:357
243
  msgid "Failed to retrieve thumbnail from Google: "
244
- msgstr "Échec de l'obtention de la miniature depuis Google :"
 
 
 
 
245
 
246
- #: inc/class-thumber.php:644
 
 
 
 
247
  msgid "Failed to get image editor: "
248
- msgstr "Échec de l'obtention de l'éditeur d'image :"
249
 
250
- #: inc/class-thumber.php:655
251
  msgid "Failed to save image: "
252
- msgstr "Échec de la sauvegarde de l'image :"
 
 
 
 
253
 
254
  #. Description of the plugin/theme
255
  msgid ""
256
  "Display non-images (and images) in gallery format on a page or post with the "
257
  "[dg] shortcode."
258
  msgstr ""
259
- "Affiche les fichiers non-images (et aussi les images) en format gallerie "
260
- "dans une page ou un article grâce au shortcode [dg]."
261
 
262
  #. Author of the plugin/theme
263
  msgid "Dan Rossiter"
2
  # This file is distributed under the same license as the Document Gallery package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Document Gallery 2.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/document-gallery\n"
7
+ "POT-Creation-Date: 2014-09-23 02:11:20+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2014-10-16 23:23-0600\n"
12
  "Last-Translator: Marc LIOTARD <tech@trafic-influence.com>\n"
13
+ "Language-Team: Trafic d'influence <tech@trafic-influence.com>\n"
14
+ "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
15
+ "Language: fr_FR\n"
16
  "X-Generator: Poedit 1.6.9\n"
 
 
17
 
18
+ #: admin/class-admin.php:28
19
+ msgid "General"
20
+ msgstr "Général"
21
+
22
+ #: admin/class-admin.php:29
23
+ msgid "Thumbnail Management"
24
+ msgstr "Gestion des miniatures"
25
+
26
+ #: admin/class-admin.php:30 admin/class-admin.php:904
27
+ msgid "Logging"
28
+ msgstr "Journalisation"
29
+
30
+ #: admin/class-admin.php:31
31
+ msgid "Advanced"
32
+ msgstr "Avancé"
33
+
34
+ #: admin/class-admin.php:68
35
  msgid "Settings"
36
+ msgstr "Paramètres"
37
 
38
+ #: admin/class-admin.php:78
39
  msgid "Document Gallery Settings"
40
+ msgstr "Paramétrage de Document Gallery"
41
 
42
  #. Plugin Name of the plugin/theme
43
+ #: admin/class-admin.php:79
44
  msgid "Document Gallery"
45
  msgstr "Document Gallery"
46
 
47
+ #: admin/class-admin.php:124
48
  msgid "Default Settings"
49
+ msgstr "Paramètres par défaut"
50
 
51
+ #: admin/class-admin.php:128
52
  msgid "Thumbnail Generation"
53
+ msgstr "Génération des miniatures"
54
 
55
+ #: admin/class-admin.php:132
56
  msgid "Custom CSS"
57
  msgstr "CSS personnalisé"
58
 
59
+ #: admin/class-admin.php:144
 
 
 
 
60
  msgid "Link to attachment page rather than to file"
61
+ msgstr "Lier vers la page média plutôt que vers le fichier"
62
 
63
+ #: admin/class-admin.php:156
64
  msgid "Include document descriptions"
65
+ msgstr "Inclure la description des médias"
66
 
67
+ #: admin/class-admin.php:168
68
  msgid "Use auto-generated document thumbnails"
69
+ msgstr "Utiliser des miniatures générées automatiquement"
70
 
71
+ #: admin/class-admin.php:180
72
  msgid "Include image attachments in gallery"
73
  msgstr "Inclure les images dans la galerie"
74
 
75
+ #: admin/class-admin.php:192
76
  msgid "Only look for attachments in post where [dg] is used"
77
  msgstr ""
78
+ "Afficher uniquement les médias liés à l'article où le shortcode [dg] est "
79
+ "utilisé"
80
 
81
+ #: admin/class-admin.php:205
82
  msgid "Ascending or descending sorting of documents"
83
+ msgstr "Tri ascendant ou descendant des médias"
84
 
85
+ #: admin/class-admin.php:218
86
  msgid "Which field to order documents by"
87
+ msgstr "Champ utilisé pour classer les médias"
88
 
89
+ #: admin/class-admin.php:231
90
  msgid ""
91
  "Whether matched documents must have all taxa_names (AND) or at least one (OR)"
92
  msgstr ""
93
  "Permet de définir si les documents qui coïncident doivent avoir toutes les "
94
  "taxa_names (AND) ou au moins une (OR)"
95
 
96
+ #: admin/class-admin.php:243
97
  msgid "Locally generate thumbnails for audio & video files."
98
  msgstr ""
99
  "Générer localement les miniatures pour les médias de type audio et vidéo."
100
 
101
+ #: admin/class-admin.php:256
102
  msgid ""
103
  "Use <a href=\"http://www.ghostscript.com/\" target=\"_blank\">Ghostscript</"
104
  "a> for faster local PDF processing (compared to Imagick)."
105
  msgstr ""
106
  "Utiliser <a href=\"http://www.ghostscript.com/\" target=\"_blank"
107
+ "\">Ghostscript</a> pour accélérer le traitement des PDF localement (en "
108
  "comparaison avec Imagick)."
109
 
110
+ #: admin/class-admin.php:257
111
  msgid ""
112
  "Your server is not configured to run <a href=\"http://www.ghostscript.com/\" "
113
  "target=\"_blank\">Ghostscript</a>."
115
  "Votre serveur n'est pas configuré pour exécuter <a href=\"http://www."
116
  "ghostscript.com/\" target=\"_blank\">Ghostscript</a>."
117
 
118
+ #: admin/class-admin.php:271
119
  msgid ""
120
  "Use <a href=\"http://www.php.net/manual/en/book.imagick.php\" target=\"_blank"
121
  "\">Imagick</a> to handle lots of filetypes locally."
122
  msgstr ""
123
  "Utiliser <a href=\"http://www.php.net/manual/es/book.imagick.php\" target="
124
+ "\"_blank\">Imagick</a> pour traiter la majeure partie des types de fichier "
125
  "localement."
126
 
127
+ #: admin/class-admin.php:272
128
  msgid ""
129
  "Your server is not configured to run <a href=\"http://www.php.net/manual/en/"
130
  "book.imagick.php\" target=\"_blank\">Imagick</a>."
132
  "Votre serveur n'est pas configuré pour exécuter <a href=\"http://www.php.net/"
133
  "manual/es/book.imagick.php\" target=\"_blank\">Imagick</a>."
134
 
135
+ #: admin/class-admin.php:286
136
  msgid ""
137
  "Use <a href=\"https://drive.google.com/viewer\" target=\"_blank\">Google "
138
  "Drive Viewer</a> to generate thumbnails for MS Office files and many other "
142
  "\">Google Drive Viewer</a> pour générer les miniatures des fichiers MS "
143
  "Office et autres types de fichiers."
144
 
145
+ #: admin/class-admin.php:287
146
  msgid "Your server does not allow remote HTTP access."
147
  msgstr ""
148
  "Votre serveur n'est pas configuré pour gérer les accès HTTP à distance."
149
 
150
+ #: admin/class-admin.php:309
151
+ msgid "The max width and height (in pixels) that thumbnails will be generated."
152
+ msgstr ""
153
+ "La hauteur et largeur maximale (en pixels) dans laquelle les miniatures "
154
+ "seront générées."
155
+
156
+ #: admin/class-admin.php:338
157
+ msgid "Advanced Thumbnail Generation"
158
+ msgstr "Génération de miniatures avancée"
159
+
160
+ #: admin/class-admin.php:350
161
+ msgid "Whether to log debug and error information related to Document Gallery."
162
+ msgstr ""
163
+ "Pour activer les logs de debug et informations d'erreurs relatives à "
164
+ "Document Gallery."
165
+
166
+ #: admin/class-admin.php:362
167
+ msgid ""
168
+ "Whether option structure should be validated before save. This is not "
169
+ "generally necessary."
170
+ msgstr ""
171
+ "Dans le cas où les options doivent être validées avant enregistrement. Ce "
172
+ "n'est pas nécessaire généralement."
173
+
174
+ #: admin/class-admin.php:375
175
+ msgid ""
176
+ "Max number of seconds to wait for thumbnail generation before defaulting to "
177
+ "filetype icons."
178
+ msgstr ""
179
+ "Temps maximum d'attente en secondes avant l'abandon de la génération de la "
180
+ "miniature au profit des icônes par défaut."
181
+
182
+ #: admin/class-admin.php:376
183
+ msgid ""
184
+ "Note that generation will continue where timeout happened next time the "
185
+ "gallery is loaded."
186
+ msgstr ""
187
+ "Notez que la génération se poursuivra la prochaine fois que la galerie sera "
188
+ "chargée."
189
+
190
+ #: admin/class-admin.php:388
191
  msgid "Successfully auto-detected the location of Ghostscript."
192
+ msgstr "GhostScript localisé automatiquement avec succès."
193
 
194
+ #: admin/class-admin.php:389
195
  msgid "Failed to auto-detect the location of Ghostscript."
196
+ msgstr "Impossible de localiser Ghostscript."
197
 
198
+ #: admin/class-admin.php:393
199
+ msgid "Options Array Dump"
200
+ msgstr "Export des options"
201
+
202
+ #: admin/class-admin.php:440
203
+ msgid "Invalid width given: "
204
+ msgstr "Largeur invalide :"
205
+
206
+ #: admin/class-admin.php:453
207
+ msgid "Invalid height given: "
208
+ msgstr "Hauteur invalide :"
209
+
210
+ #: admin/class-admin.php:566
211
+ msgid "Invalid Ghostscript path given: "
212
+ msgstr "Chemin de Ghostscript invalide :"
213
+
214
+ #: admin/class-admin.php:577
215
+ msgid "Invalid timeout given: "
216
+ msgstr "Délai invalide :"
217
+
218
+ #: admin/class-admin.php:608
219
  msgid ""
220
  "The following values will be used by default in the shortcode. You can still "
221
  "manually set each of these values in each individual shortcode."
224
  "Vous pouvez néanmoins paramétrer manuellement ces valeurs pour chaque "
225
  "shortcode individuel."
226
 
227
+ #: admin/class-admin.php:615
228
  msgid "Select which tools to use when generating thumbnails."
229
  msgstr "Choisir les outils utilisés pour la génération des miniatures."
230
 
231
+ #: admin/class-admin.php:624
232
  msgid ""
233
  "Enter custom CSS styling for use with document galleries. To see which ids "
234
  "and classes you can style, take a look at <a href=\"%s\" target=\"_blank"
235
  "\">style.css</a>."
236
  msgstr ""
237
+ "Saisissez vos classes CSS personnalisées pour votre usage de Document "
238
+ "Gallery. Pour voir le détail des classes et id à restyler, jetez un oeil au "
239
+ "fichier <a href=\"%s\" target=\"_blank\">style.css</a>."
240
 
241
+ #: admin/class-admin.php:644
242
  msgid ""
243
  "Unless you <em>really</em> know what you're doing, you should not touch "
244
  "these values."
245
  msgstr ""
246
  "A moins de <em>vraiment</em> savoir ce que vous faites, vous ne devriez pas "
247
+ "modifier ces valeurs."
248
 
249
+ #: admin/class-admin.php:647
250
  msgid ""
251
  "NOTE: <code>exec()</code> is not accessible. Ghostscript will not function."
252
  msgstr ""
253
  "NOTE : <code>exec()</code> n'est pas accessible. Ghostscript ne fonctionnera "
254
  "pas."
255
 
256
+ #: admin/class-admin.php:658
257
+ msgid ""
258
+ "The following <em>readonly text</em> should be provided when <a href="
259
+ "\"http://wordpress.org/support/plugin/document-gallery\" target=\"_blank"
260
+ "\">reporting a bug</a>:"
261
+ msgstr ""
262
+ "Le <em>readonly text</em> suivant devra être fourni lors d'un <a href="
263
+ "\"http://wordpress.org/support/plugin/document-gallery\" target=\"_blank"
264
+ "\">rapport de bug</a> :"
265
+
266
+ #: admin/class-admin.php:759
267
+ msgid "Select All"
268
+ msgstr "Tout sélectionner"
269
 
270
+ #: admin/class-admin.php:762
271
+ msgid "Thumbnail"
272
+ msgstr "Miniature"
273
 
274
+ #: admin/class-admin.php:763
275
+ msgid "File name"
276
+ msgstr "Nom de fichier"
277
+
278
+ #: admin/class-admin.php:764 admin/class-admin.php:839
279
+ msgid "Date"
280
+ msgstr "Date"
281
+
282
+ #: admin/class-admin.php:767
283
+ msgid "Delete Selected"
284
+ msgstr "Effacer les sélectionnés"
285
+
286
+ #: admin/class-admin.php:769
287
+ msgid "item"
288
+ msgid_plural "items"
289
+ msgstr[0] "élément"
290
+ msgstr[1] "éléments"
291
+
292
+ #: admin/class-admin.php:772
293
+ msgid "Go to the first page"
294
+ msgstr "Première page"
295
+
296
+ #: admin/class-admin.php:773
297
+ msgid "Go to the previous page"
298
+ msgstr "Page précédente"
299
+
300
+ #: admin/class-admin.php:775
301
+ msgid "Current page"
302
+ msgstr "Page actuelle"
303
+
304
+ #: admin/class-admin.php:775
305
+ msgid "of"
306
+ msgstr "sur"
307
+
308
+ #: admin/class-admin.php:776
309
+ msgid "Go to the next page"
310
+ msgstr "Page suivante"
311
+
312
+ #: admin/class-admin.php:777
313
+ msgid "Go to the last page"
314
+ msgstr "Dernière page"
315
+
316
+ #: admin/class-admin.php:779
317
+ msgid "items per page"
318
+ msgstr "éléments pas page"
319
+
320
+ #: admin/class-admin.php:818
321
+ msgid "View"
322
+ msgstr "Voir"
323
+
324
+ #: admin/class-admin.php:819
325
+ msgid "attachment page"
326
+ msgstr "page des médias"
327
+
328
+ #: admin/class-admin.php:819
329
+ msgid "Attachment not found"
330
+ msgstr "Média introuvable"
331
+
332
+ #: admin/class-admin.php:840
333
+ msgid "Level"
334
+ msgstr "Niveau"
335
+
336
+ #: admin/class-admin.php:841
337
+ msgid "Message"
338
+ msgstr "Message"
339
+
340
+ #: admin/class-admin.php:850
341
+ msgid "Expand All"
342
+ msgstr "Tout déplier"
343
+
344
+ #: admin/class-admin.php:853
345
+ msgid "Collapse All"
346
+ msgstr "Tout replier"
347
+
348
+ #: admin/class-admin.php:897
349
+ msgid "Clear Log"
350
+ msgstr "Effacer les logs"
351
+
352
+ #: admin/class-admin.php:904
353
+ msgid "There are no log entries at this time."
354
+ msgstr "Il n'y aucune entrée de log pour l'instant."
355
+
356
+ #: admin/class-admin.php:904
357
+ msgid "For Your information:"
358
+ msgstr "Information :"
359
+
360
+ #: admin/class-admin.php:904
361
+ msgid "is turned ON"
362
+ msgstr "est activé"
363
+
364
+ #: admin/class-admin.php:904
365
+ msgid "is turned OFF"
366
+ msgstr "n'est PAS activé"
367
+
368
+ #: inc/class-gallery.php:85
369
  msgid "Generated using Document Gallery. Get yours here: "
370
  msgstr "Génération réalisée avec Document Gallery. Obtenez votre version ici :"
371
 
372
+ #: inc/class-gallery.php:88
373
  msgid "No attachments to display. How boring! :("
374
  msgstr "Aucun média à afficher... Quel ennui ! :("
375
 
376
+ #: inc/class-gallery.php:89
377
  msgid "The %s parameter may only be \"%s\" or \"%s.\" You entered \"%s.\""
378
  msgstr ""
379
  "Le paramètre %s ne peut être que \"%s\" ou \"%s.\" Vous avez saisi \"%s.\""
380
 
381
+ #: inc/class-gallery.php:285
382
  msgid "The following ID is invalid: "
383
  msgid_plural "The following IDs are invalid: "
384
  msgstr[0] "L'ID suivant est invalide :"
385
  msgstr[1] "Les ID suivants sont invalides :"
386
 
387
+ #: inc/class-gallery.php:378
388
  msgid "The orderby value entered, \"%s,\" is not valid."
389
  msgstr "La valeur orderby saisie, \"%s,\" est invalide."
390
 
391
+ #: inc/class-gallery.php:532
 
 
 
 
392
  msgid "%s is not a valid term name in %s."
393
  msgstr "%s n'est pas un terme valide dans %s."
394
 
395
+ #: inc/class-image-editor-imagick.php:37
396
+ msgid "Failed to set Imagick page number"
397
+ msgstr "Impossible de définir le numéro de page Imagick"
398
+
399
+ #: inc/class-thumber.php:59
400
+ msgid "Attempting to generate thumbnail for attachment #%d with (%s)"
401
+ msgstr "Tentative de génération de la miniature pour le média #%d avec '%s'"
402
+
403
+ #: inc/class-thumber.php:138
404
  msgid "Could not open file: "
405
  msgstr "Impossible d'ouvrir le fichier :"
406
 
407
+ #: inc/class-thumber.php:143
408
  msgid "Could not write file: "
409
+ msgstr "Impossible d'écrire le fichier :"
410
 
411
+ #: inc/class-thumber.php:180
412
  msgid "Failed to open file in Imagick: "
413
+ msgstr "Impossible d'ouvrir le fichier dans Imagick :"
414
 
415
+ #: inc/class-thumber.php:191
416
  msgid "Failed to save image in Imagick: "
417
+ msgstr "Impossible d'enregistrer l'image dans Imagick :"
418
 
419
+ #: inc/class-thumber.php:249
420
  msgid "Ghostscript failed: "
421
  msgstr "Échec Ghostscript :"
422
 
423
+ #: inc/class-thumber.php:387
424
  msgid "Failed to retrieve thumbnail from Google: "
425
+ msgstr "Impossible d'obtenir la miniature depuis Google :"
426
+
427
+ #: inc/class-thumber.php:631
428
+ msgid "Thumbnail Generators: "
429
+ msgstr "Générateurs de miniature :"
430
 
431
+ #: inc/class-thumber.php:642
432
+ msgid "No thumbnail generators enabled."
433
+ msgstr "Aucun générateur de miniature activé."
434
+
435
+ #: inc/class-thumber.php:685
436
  msgid "Failed to get image editor: "
437
+ msgstr "Impossible d'obtenir l'éditeur d'image :"
438
 
439
+ #: inc/class-thumber.php:697
440
  msgid "Failed to save image: "
441
+ msgstr "Impossible d'enregistrer l'image :"
442
+
443
+ #. Plugin URI of the plugin/theme
444
+ msgid "http://wordpress.org/extend/plugins/document-gallery/"
445
+ msgstr "http://wordpress.org/extend/plugins/document-gallery/"
446
 
447
  #. Description of the plugin/theme
448
  msgid ""
449
  "Display non-images (and images) in gallery format on a page or post with the "
450
  "[dg] shortcode."
451
  msgstr ""
452
+ "Affiche les médias de type documents (et images) au format galerie dans une "
453
+ "page ou un article grâce au shortcode [dg]."
454
 
455
  #. Author of the plugin/theme
456
  msgid "Dan Rossiter"
languages/document-gallery.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Document Gallery package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Document Gallery 2.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/document-gallery\n"
7
- "POT-Creation-Date: 2014-09-23 02:11:20+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  msgid "Thumbnail Management"
21
  msgstr ""
22
 
23
- #: admin/class-admin.php:30 admin/class-admin.php:904
24
  msgid "Logging"
25
  msgstr ""
26
 
@@ -36,7 +36,7 @@ msgstr ""
36
  msgid "Document Gallery Settings"
37
  msgstr ""
38
 
39
- #. #-#-#-#-# plugin.pot (Document Gallery 2.2) #-#-#-#-#
40
  #. Plugin Name of the plugin/theme
41
  #: admin/class-admin.php:79
42
  msgid "Document Gallery"
@@ -201,127 +201,127 @@ msgid ""
201
  "\">style.css</a>."
202
  msgstr ""
203
 
204
- #: admin/class-admin.php:644
205
  msgid ""
206
  "Unless you <em>really</em> know what you're doing, you should not touch "
207
  "these values."
208
  msgstr ""
209
 
210
- #: admin/class-admin.php:647
211
  msgid ""
212
  "NOTE: <code>exec()</code> is not accessible. Ghostscript will not function."
213
  msgstr ""
214
 
215
- #: admin/class-admin.php:658
216
  msgid ""
217
  "The following <em>readonly text</em> should be provided when <a href="
218
  "\"http://wordpress.org/support/plugin/document-gallery\" target=\"_blank"
219
  "\">reporting a bug</a>:"
220
  msgstr ""
221
 
222
- #: admin/class-admin.php:759
223
  msgid "Select All"
224
  msgstr ""
225
 
226
- #: admin/class-admin.php:762
227
  msgid "Thumbnail"
228
  msgstr ""
229
 
230
- #: admin/class-admin.php:763
231
  msgid "File name"
232
  msgstr ""
233
 
234
- #: admin/class-admin.php:764 admin/class-admin.php:839
235
  msgid "Date"
236
  msgstr ""
237
 
238
- #: admin/class-admin.php:767
239
  msgid "Delete Selected"
240
  msgstr ""
241
 
242
- #: admin/class-admin.php:769
243
  msgid "item"
244
  msgid_plural "items"
245
  msgstr[0] ""
246
  msgstr[1] ""
247
 
248
- #: admin/class-admin.php:772
249
  msgid "Go to the first page"
250
  msgstr ""
251
 
252
- #: admin/class-admin.php:773
253
  msgid "Go to the previous page"
254
  msgstr ""
255
 
256
- #: admin/class-admin.php:775
257
  msgid "Current page"
258
  msgstr ""
259
 
260
- #: admin/class-admin.php:775
261
  msgid "of"
262
  msgstr ""
263
 
264
- #: admin/class-admin.php:776
265
  msgid "Go to the next page"
266
  msgstr ""
267
 
268
- #: admin/class-admin.php:777
269
  msgid "Go to the last page"
270
  msgstr ""
271
 
272
- #: admin/class-admin.php:779
273
  msgid "items per page"
274
  msgstr ""
275
 
276
- #: admin/class-admin.php:818
277
  msgid "View"
278
  msgstr ""
279
 
280
- #: admin/class-admin.php:819
281
  msgid "attachment page"
282
  msgstr ""
283
 
284
- #: admin/class-admin.php:819
285
  msgid "Attachment not found"
286
  msgstr ""
287
 
288
- #: admin/class-admin.php:840
289
  msgid "Level"
290
  msgstr ""
291
 
292
- #: admin/class-admin.php:841
293
  msgid "Message"
294
  msgstr ""
295
 
296
- #: admin/class-admin.php:850
297
  msgid "Expand All"
298
  msgstr ""
299
 
300
- #: admin/class-admin.php:853
301
  msgid "Collapse All"
302
  msgstr ""
303
 
304
- #: admin/class-admin.php:897
305
  msgid "Clear Log"
306
  msgstr ""
307
 
308
- #: admin/class-admin.php:904
309
  msgid "There are no log entries at this time."
310
  msgstr ""
311
 
312
- #: admin/class-admin.php:904
313
  msgid "For Your information:"
314
  msgstr ""
315
 
316
- #: admin/class-admin.php:904
317
  msgid "is turned ON"
318
  msgstr ""
319
 
320
- #: admin/class-admin.php:904
321
  msgid "is turned OFF"
322
  msgstr ""
323
 
324
- #: inc/class-gallery.php:85
325
  msgid "Generated using Document Gallery. Get yours here: "
326
  msgstr ""
327
 
@@ -333,17 +333,17 @@ msgstr ""
333
  msgid "The %s parameter may only be \"%s\" or \"%s.\" You entered \"%s.\""
334
  msgstr ""
335
 
336
- #: inc/class-gallery.php:285
337
  msgid "The following ID is invalid: "
338
  msgid_plural "The following IDs are invalid: "
339
  msgstr[0] ""
340
  msgstr[1] ""
341
 
342
- #: inc/class-gallery.php:378
343
  msgid "The orderby value entered, \"%s,\" is not valid."
344
  msgstr ""
345
 
346
- #: inc/class-gallery.php:532
347
  msgid "%s is not a valid term name in %s."
348
  msgstr ""
349
 
2
  # This file is distributed under the same license as the Document Gallery package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Document Gallery 2.2.5\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/document-gallery\n"
7
+ "POT-Creation-Date: 2014-10-17 04:20:59+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
20
  msgid "Thumbnail Management"
21
  msgstr ""
22
 
23
+ #: admin/class-admin.php:30 admin/class-admin.php:898
24
  msgid "Logging"
25
  msgstr ""
26
 
36
  msgid "Document Gallery Settings"
37
  msgstr ""
38
 
39
+ #. #-#-#-#-# plugin.pot (Document Gallery 2.2.5) #-#-#-#-#
40
  #. Plugin Name of the plugin/theme
41
  #: admin/class-admin.php:79
42
  msgid "Document Gallery"
201
  "\">style.css</a>."
202
  msgstr ""
203
 
204
+ #: admin/class-admin.php:642
205
  msgid ""
206
  "Unless you <em>really</em> know what you're doing, you should not touch "
207
  "these values."
208
  msgstr ""
209
 
210
+ #: admin/class-admin.php:645
211
  msgid ""
212
  "NOTE: <code>exec()</code> is not accessible. Ghostscript will not function."
213
  msgstr ""
214
 
215
+ #: admin/class-admin.php:656
216
  msgid ""
217
  "The following <em>readonly text</em> should be provided when <a href="
218
  "\"http://wordpress.org/support/plugin/document-gallery\" target=\"_blank"
219
  "\">reporting a bug</a>:"
220
  msgstr ""
221
 
222
+ #: admin/class-admin.php:757
223
  msgid "Select All"
224
  msgstr ""
225
 
226
+ #: admin/class-admin.php:760
227
  msgid "Thumbnail"
228
  msgstr ""
229
 
230
+ #: admin/class-admin.php:761
231
  msgid "File name"
232
  msgstr ""
233
 
234
+ #: admin/class-admin.php:762 admin/class-admin.php:834
235
  msgid "Date"
236
  msgstr ""
237
 
238
+ #: admin/class-admin.php:765
239
  msgid "Delete Selected"
240
  msgstr ""
241
 
242
+ #: admin/class-admin.php:767
243
  msgid "item"
244
  msgid_plural "items"
245
  msgstr[0] ""
246
  msgstr[1] ""
247
 
248
+ #: admin/class-admin.php:770
249
  msgid "Go to the first page"
250
  msgstr ""
251
 
252
+ #: admin/class-admin.php:771
253
  msgid "Go to the previous page"
254
  msgstr ""
255
 
256
+ #: admin/class-admin.php:773
257
  msgid "Current page"
258
  msgstr ""
259
 
260
+ #: admin/class-admin.php:773
261
  msgid "of"
262
  msgstr ""
263
 
264
+ #: admin/class-admin.php:774
265
  msgid "Go to the next page"
266
  msgstr ""
267
 
268
+ #: admin/class-admin.php:775
269
  msgid "Go to the last page"
270
  msgstr ""
271
 
272
+ #: admin/class-admin.php:777
273
  msgid "items per page"
274
  msgstr ""
275
 
276
+ #: admin/class-admin.php:815
277
  msgid "View"
278
  msgstr ""
279
 
280
+ #: admin/class-admin.php:816
281
  msgid "attachment page"
282
  msgstr ""
283
 
284
+ #: admin/class-admin.php:816
285
  msgid "Attachment not found"
286
  msgstr ""
287
 
288
+ #: admin/class-admin.php:835
289
  msgid "Level"
290
  msgstr ""
291
 
292
+ #: admin/class-admin.php:836
293
  msgid "Message"
294
  msgstr ""
295
 
296
+ #: admin/class-admin.php:845
297
  msgid "Expand All"
298
  msgstr ""
299
 
300
+ #: admin/class-admin.php:848
301
  msgid "Collapse All"
302
  msgstr ""
303
 
304
+ #: admin/class-admin.php:891
305
  msgid "Clear Log"
306
  msgstr ""
307
 
308
+ #: admin/class-admin.php:898
309
  msgid "There are no log entries at this time."
310
  msgstr ""
311
 
312
+ #: admin/class-admin.php:898
313
  msgid "For Your information:"
314
  msgstr ""
315
 
316
+ #: admin/class-admin.php:898
317
  msgid "is turned ON"
318
  msgstr ""
319
 
320
+ #: admin/class-admin.php:898
321
  msgid "is turned OFF"
322
  msgstr ""
323
 
324
+ #: inc/class-gallery.php:86
325
  msgid "Generated using Document Gallery. Get yours here: "
326
  msgstr ""
327
 
333
  msgid "The %s parameter may only be \"%s\" or \"%s.\" You entered \"%s.\""
334
  msgstr ""
335
 
336
+ #: inc/class-gallery.php:286
337
  msgid "The following ID is invalid: "
338
  msgid_plural "The following IDs are invalid: "
339
  msgstr[0] ""
340
  msgstr[1] ""
341
 
342
+ #: inc/class-gallery.php:379
343
  msgid "The orderby value entered, \"%s,\" is not valid."
344
  msgstr ""
345
 
346
+ #: inc/class-gallery.php:533
347
  msgid "%s is not a valid term name in %s."
348
  msgstr ""
349