Version Description
- Housekeeping - Include French translation (thanks to Marie-Aude Koiransky-Ballouk)
- Housekeeping - Wrap 'Initialise Fonts' text in translation ready _e() function
- Housekeeping - Tidy up System Status CSS styles to accomidate translation text lengths
- Housekeeping - Fix E_NOTICE when viewing entry details page when form has no PDF configuration
- Bug - Fixed load_plugin_textdomain which was incorrectly called.
- Bug - Correctly check if the plugin is loaded correctly before letting the PDF class fully load
Download this release
Release Info
Developer | Blue Liquid Designs |
Plugin | Gravity PDF |
Version | 3.5.5 |
Comparing to | |
See all releases |
Code changes from version 3.5.4 to 3.5.5
- .gitignore +0 -5
- README.txt +420 -412
- helper/installation-update-manager.php +1 -1
- helper/pdf-common.php +11 -4
- helper/pdf-configuration-indexer.php +22 -28
- languages/pdfextended-en_GB.po +839 -0
- languages/pdfextended-fr_FR.mo +0 -0
- languages/{language.po → pdfextended-fr_FR.po} +1064 -921
- model/pdf.php +13 -9
- model/settings.php +13 -1
- pdf.php +27 -28
- resources/css/admin-styles.css +10 -0
- resources/css/admin-styles.min.css +1 -1
- view/templates/settings/changelog.php +11 -1
- view/templates/settings/initialisation.php +1 -1
.gitignore
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
_notes
|
2 |
-
_notes/*
|
3 |
-
Thumbs.db
|
4 |
-
default.po
|
5 |
-
default.mo
|
|
|
|
|
|
|
|
|
|
README.txt
CHANGED
@@ -1,412 +1,420 @@
|
|
1 |
-
=== Plugin Name ===
|
2 |
-
Contributors: blueliquiddesigns
|
3 |
-
Donate link: http://www.gravityformspdfextended.com
|
4 |
-
Tags: gravity, forms, pdf, automation, attachment
|
5 |
-
Requires at least: 3.5
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 3.5.
|
8 |
-
License: GPLv2 or later
|
9 |
-
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
-
|
11 |
-
Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission.
|
12 |
-
|
13 |
-
== Description ==
|
14 |
-
|
15 |
-
Gravity Forms PDF Extended is a powerful developer tool for creating PDF documents using form data captured from Gravity Forms. While the software is targeted at web developers, we've attempted to make it user friendly for hobbyists and DIY business owners. The basic setup can be done in minutes, and there is a huge array of options to configure the PDF as you see fit.
|
16 |
-
|
17 |
-
**Gravity Form Features**
|
18 |
-
|
19 |
-
* Save PDF File on user submission of a Gravity Form so it can be attached to a notification
|
20 |
-
* Customise the PDF template without affecting the core Gravity Form Plugin
|
21 |
-
* Multiple PDF Templates
|
22 |
-
* Custom PDF Name
|
23 |
-
* Output individual form fields in the template - like MERGETAGS.
|
24 |
-
* View and download a PDF via the administrator interface or after a user submits their form
|
25 |
-
* Works with Gravity Forms Signature Add-On
|
26 |
-
|
27 |
-
**PDF Features**
|
28 |
-
|
29 |
-
Along with the above, the PDF software includes powerful feature such as:
|
30 |
-
|
31 |
-
* Language Support - almost all languages are supported including RTL (right to left) languages like Arabic, Hebrew and CJK languages - Chinese, Japanese and Korean.
|
32 |
-
* HTML Page Numbering
|
33 |
-
* Odd and even paging with mirrored margins (most commonly used in printing).
|
34 |
-
* Nested Tables
|
35 |
-
* Text-justification and hyphenation
|
36 |
-
* Table of Contents
|
37 |
-
* Index
|
38 |
-
* Bookmarks
|
39 |
-
* Watermarks
|
40 |
-
* Password protection
|
41 |
-
* UTF-8 encoded HTML
|
42 |
-
* Better system resource handling
|
43 |
-
|
44 |
-
**Server Requirements**
|
45 |
-
|
46 |
-
1. PHP 5+
|
47 |
-
2. MB String
|
48 |
-
3. GD Library
|
49 |
-
4. RAM: Recommended: 128MB. Minimum: 64MB.
|
50 |
-
|
51 |
-
*Note:* We've had clients report slow PDF generation times and problems meeting the RAM requirements on cheap shared web hosting. If you experience these problems [we recommend you look into WP Engine's managed hosting platform](http://www.shareasale.com/r.cfm?B=398776&U=955815&M=41388&urllink=) as our software works correctly out of the box.
|
52 |
-
|
53 |
-
**Software Requirements**
|
54 |
-
|
55 |
-
1. [Purchase and install Gravity Forms](https://www.e-junkie.com/ecom/gb.php?cl=54585&c=ib&aff=235154)
|
56 |
-
2. Wordpress 3.5+
|
57 |
-
3. Gravity Forms 1.7+
|
58 |
-
|
59 |
-
**Documentation and Support**
|
60 |
-
|
61 |
-
To view the Development Documentation head to [http://www.gravityformspdfextended.com/documentation/](http://www.gravityformspdfextended.com/documentation/). If you need support with the plugin please post a topic in our [support forums](http://gravityformspdfextended.com/support/gravity-forms-pdf-extended/).
|
62 |
-
|
63 |
-
== Installation ==
|
64 |
-
|
65 |
-
1. Upload this plugin to your website and activate it
|
66 |
-
2. Head to Forms -> Settings -> PDF to initialise the plugin.
|
67 |
-
3. Create a form in Gravity Forms and configure notifications
|
68 |
-
4. Get the Form ID and follow the steps below in [the configuration section](http://gravityformspdfextended.com/documentation-v3-x-x/installation-and-configuration/)
|
69 |
-
5. Modify the PDF template file ([see the advanced templating section in the documentation](http://gravityformspdfextended.com/documentation-v3-x-x/templates/)) inside your active theme's PDF_EXTENDED_TEMPLATES/ folder.
|
70 |
-
|
71 |
-
|
72 |
-
== Frequently Asked Questions ==
|
73 |
-
|
74 |
-
All FAQs can be [viewed on the Gravity Forms PDF Extended website](http://gravityformspdfextended.com/faq/category/developers/).
|
75 |
-
|
76 |
-
== Screenshots ==
|
77 |
-
|
78 |
-
1. The View PDF button is avaliable for each Gravity Form entry
|
79 |
-
2. Multiple PDFs can be assigned to a form and is also avaliable on the detailed entry view.
|
80 |
-
3. The configuration.php file allows you to easily assign PDFs to Gravity Forms
|
81 |
-
|
82 |
-
== Changelog ==
|
83 |
-
|
84 |
-
= 3.5.
|
85 |
-
*
|
86 |
-
*
|
87 |
-
* Housekeeping -
|
88 |
-
|
89 |
-
|
90 |
-
* Bug -
|
91 |
-
|
92 |
-
|
93 |
-
*
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
* Bug - Fixed issue with
|
100 |
-
*
|
101 |
-
* Housekeeping -
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
*
|
108 |
-
*
|
109 |
-
*
|
110 |
-
*
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
*
|
115 |
-
*
|
116 |
-
*
|
117 |
-
*
|
118 |
-
*
|
119 |
-
|
120 |
-
* Housekeeping -
|
121 |
-
|
122 |
-
*
|
123 |
-
|
124 |
-
|
125 |
-
*
|
126 |
-
|
127 |
-
|
128 |
-
*
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
* Bug - Fix
|
134 |
-
|
135 |
-
= 3.4.0.
|
136 |
-
*
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
*
|
142 |
-
|
143 |
-
|
144 |
-
*
|
145 |
-
*
|
146 |
-
*
|
147 |
-
|
148 |
-
|
149 |
-
* Feature -
|
150 |
-
* Feature - Added
|
151 |
-
* Feature -
|
152 |
-
* Feature - Added
|
153 |
-
* Feature -
|
154 |
-
* Feature -
|
155 |
-
* Feature -
|
156 |
-
* Feature - Added
|
157 |
-
* Feature -
|
158 |
-
* Feature - Added
|
159 |
-
* Feature - Added
|
160 |
-
* Feature - Added
|
161 |
-
* Feature
|
162 |
-
|
163 |
-
*
|
164 |
-
*
|
165 |
-
*
|
166 |
-
*
|
167 |
-
*
|
168 |
-
*
|
169 |
-
*
|
170 |
-
|
171 |
-
* Housekeeping -
|
172 |
-
* Housekeeping -
|
173 |
-
* Housekeeping -
|
174 |
-
* Housekeeping -
|
175 |
-
* Housekeeping -
|
176 |
-
* Housekeeping -
|
177 |
-
* Housekeeping -
|
178 |
-
* Housekeeping -
|
179 |
-
* Housekeeping -
|
180 |
-
* Housekeeping -
|
181 |
-
* Housekeeping -
|
182 |
-
* Housekeeping -
|
183 |
-
* Housekeeping -
|
184 |
-
* Housekeeping -
|
185 |
-
|
186 |
-
*
|
187 |
-
*
|
188 |
-
*
|
189 |
-
*
|
190 |
-
*
|
191 |
-
*
|
192 |
-
*
|
193 |
-
|
194 |
-
* Bug -
|
195 |
-
* Bug - Fixed
|
196 |
-
* Bug - Fixed
|
197 |
-
* Bug - Fixed
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
* Bug - Fixed
|
202 |
-
*
|
203 |
-
|
204 |
-
|
205 |
-
* Bug -
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
*
|
211 |
-
|
212 |
-
= 3.3.
|
213 |
-
* Bug -
|
214 |
-
*
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
*
|
222 |
-
*
|
223 |
-
|
224 |
-
|
225 |
-
*
|
226 |
-
|
227 |
-
|
228 |
-
*
|
229 |
-
*
|
230 |
-
*
|
231 |
-
*
|
232 |
-
*
|
233 |
-
*
|
234 |
-
*
|
235 |
-
*
|
236 |
-
*
|
237 |
-
*
|
238 |
-
|
239 |
-
|
240 |
-
*
|
241 |
-
*
|
242 |
-
*
|
243 |
-
*
|
244 |
-
*
|
245 |
-
*
|
246 |
-
|
247 |
-
|
248 |
-
*
|
249 |
-
|
250 |
-
|
251 |
-
* Bug - Fixed
|
252 |
-
*
|
253 |
-
*
|
254 |
-
*
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
* Bug - Fixed issue with
|
260 |
-
*
|
261 |
-
*
|
262 |
-
*
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
*
|
267 |
-
* Bug - Fixed
|
268 |
-
* Bug - Fixed
|
269 |
-
* Bug - Fixed issue with
|
270 |
-
* Bug - Fixed
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
*
|
275 |
-
|
276 |
-
|
277 |
-
*
|
278 |
-
*
|
279 |
-
|
280 |
-
|
281 |
-
*
|
282 |
-
*
|
283 |
-
|
284 |
-
|
285 |
-
*
|
286 |
-
*
|
287 |
-
*
|
288 |
-
*
|
289 |
-
*
|
290 |
-
*
|
291 |
-
|
292 |
-
|
293 |
-
*
|
294 |
-
*
|
295 |
-
|
296 |
-
|
297 |
-
* Bug -
|
298 |
-
* Bug -
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
*
|
307 |
-
* HTML
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
*
|
315 |
-
*
|
316 |
-
*
|
317 |
-
*
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
*
|
325 |
-
*
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
*
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
*
|
342 |
-
*
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
*
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
*
|
353 |
-
|
354 |
-
|
355 |
-
*
|
356 |
-
*
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
*
|
361 |
-
*
|
362 |
-
*
|
363 |
-
*
|
364 |
-
*
|
365 |
-
*
|
366 |
-
*
|
367 |
-
*
|
368 |
-
*
|
369 |
-
|
370 |
-
|
371 |
-
*
|
372 |
-
*
|
373 |
-
|
374 |
-
|
375 |
-
*
|
376 |
-
*
|
377 |
-
|
378 |
-
|
379 |
-
*
|
380 |
-
*
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
* Fixed
|
386 |
-
|
387 |
-
|
388 |
-
*
|
389 |
-
*
|
390 |
-
*
|
391 |
-
|
392 |
-
= 1.2.
|
393 |
-
* Fixed
|
394 |
-
|
395 |
-
= 1.2.
|
396 |
-
*
|
397 |
-
*
|
398 |
-
* Fixed
|
399 |
-
|
400 |
-
= 1.1
|
401 |
-
*
|
402 |
-
|
403 |
-
|
404 |
-
*
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== Plugin Name ===
|
2 |
+
Contributors: blueliquiddesigns
|
3 |
+
Donate link: http://www.gravityformspdfextended.com
|
4 |
+
Tags: gravity, forms, pdf, automation, attachment
|
5 |
+
Requires at least: 3.5
|
6 |
+
Tested up to: 3.9
|
7 |
+
Stable tag: 3.5.5
|
8 |
+
License: GPLv2 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
+
|
11 |
+
Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
|
15 |
+
Gravity Forms PDF Extended is a powerful developer tool for creating PDF documents using form data captured from Gravity Forms. While the software is targeted at web developers, we've attempted to make it user friendly for hobbyists and DIY business owners. The basic setup can be done in minutes, and there is a huge array of options to configure the PDF as you see fit.
|
16 |
+
|
17 |
+
**Gravity Form Features**
|
18 |
+
|
19 |
+
* Save PDF File on user submission of a Gravity Form so it can be attached to a notification
|
20 |
+
* Customise the PDF template without affecting the core Gravity Form Plugin
|
21 |
+
* Multiple PDF Templates
|
22 |
+
* Custom PDF Name
|
23 |
+
* Output individual form fields in the template - like MERGETAGS.
|
24 |
+
* View and download a PDF via the administrator interface or after a user submits their form
|
25 |
+
* Works with Gravity Forms Signature Add-On
|
26 |
+
|
27 |
+
**PDF Features**
|
28 |
+
|
29 |
+
Along with the above, the PDF software includes powerful feature such as:
|
30 |
+
|
31 |
+
* Language Support - almost all languages are supported including RTL (right to left) languages like Arabic, Hebrew and CJK languages - Chinese, Japanese and Korean.
|
32 |
+
* HTML Page Numbering
|
33 |
+
* Odd and even paging with mirrored margins (most commonly used in printing).
|
34 |
+
* Nested Tables
|
35 |
+
* Text-justification and hyphenation
|
36 |
+
* Table of Contents
|
37 |
+
* Index
|
38 |
+
* Bookmarks
|
39 |
+
* Watermarks
|
40 |
+
* Password protection
|
41 |
+
* UTF-8 encoded HTML
|
42 |
+
* Better system resource handling
|
43 |
+
|
44 |
+
**Server Requirements**
|
45 |
+
|
46 |
+
1. PHP 5+
|
47 |
+
2. MB String
|
48 |
+
3. GD Library
|
49 |
+
4. RAM: Recommended: 128MB. Minimum: 64MB.
|
50 |
+
|
51 |
+
*Note:* We've had clients report slow PDF generation times and problems meeting the RAM requirements on cheap shared web hosting. If you experience these problems [we recommend you look into WP Engine's managed hosting platform](http://www.shareasale.com/r.cfm?B=398776&U=955815&M=41388&urllink=) as our software works correctly out of the box.
|
52 |
+
|
53 |
+
**Software Requirements**
|
54 |
+
|
55 |
+
1. [Purchase and install Gravity Forms](https://www.e-junkie.com/ecom/gb.php?cl=54585&c=ib&aff=235154)
|
56 |
+
2. Wordpress 3.5+
|
57 |
+
3. Gravity Forms 1.7+
|
58 |
+
|
59 |
+
**Documentation and Support**
|
60 |
+
|
61 |
+
To view the Development Documentation head to [http://www.gravityformspdfextended.com/documentation/](http://www.gravityformspdfextended.com/documentation/). If you need support with the plugin please post a topic in our [support forums](http://gravityformspdfextended.com/support/gravity-forms-pdf-extended/).
|
62 |
+
|
63 |
+
== Installation ==
|
64 |
+
|
65 |
+
1. Upload this plugin to your website and activate it
|
66 |
+
2. Head to Forms -> Settings -> PDF to initialise the plugin.
|
67 |
+
3. Create a form in Gravity Forms and configure notifications
|
68 |
+
4. Get the Form ID and follow the steps below in [the configuration section](http://gravityformspdfextended.com/documentation-v3-x-x/installation-and-configuration/)
|
69 |
+
5. Modify the PDF template file ([see the advanced templating section in the documentation](http://gravityformspdfextended.com/documentation-v3-x-x/templates/)) inside your active theme's PDF_EXTENDED_TEMPLATES/ folder.
|
70 |
+
|
71 |
+
|
72 |
+
== Frequently Asked Questions ==
|
73 |
+
|
74 |
+
All FAQs can be [viewed on the Gravity Forms PDF Extended website](http://gravityformspdfextended.com/faq/category/developers/).
|
75 |
+
|
76 |
+
== Screenshots ==
|
77 |
+
|
78 |
+
1. The View PDF button is avaliable for each Gravity Form entry
|
79 |
+
2. Multiple PDFs can be assigned to a form and is also avaliable on the detailed entry view.
|
80 |
+
3. The configuration.php file allows you to easily assign PDFs to Gravity Forms
|
81 |
+
|
82 |
+
== Changelog ==
|
83 |
+
|
84 |
+
= 3.5.5 =
|
85 |
+
* Housekeeping - Include French translation (thanks to Marie-Aude Koiransky-Ballouk)
|
86 |
+
* Housekeeping - Wrap 'Initialise Fonts' text in translation ready _e() function
|
87 |
+
* Housekeeping - Tidy up System Status CSS styles to accomidate translation text lengths
|
88 |
+
* Housekeeping - Fix E_NOTICE when viewing entry details page when form has no PDF configuration
|
89 |
+
* Bug - Fixed load_plugin_textdomain which was incorrectly called.
|
90 |
+
* Bug - Correctly check if the plugin is loaded correctly before letting the PDF class fully load
|
91 |
+
|
92 |
+
= 3.5.4 =
|
93 |
+
* Bug - Fixed issue with incorrect PDF name showing on the entry details page
|
94 |
+
* Bug - Fixed issue with custom fonts being inaccessible without manually reinstalling after upgrading.
|
95 |
+
* Housekeeping - Added in two new filters to modify the $mpdf object. 'gfpdfe_mpdf_class' and 'gfpdfe_mpdf_class_pre_render' (replaces the gfpdfe_pre_render_pdf filter).
|
96 |
+
|
97 |
+
= 3.5.3 =
|
98 |
+
* Bug - Mergetags braces ({}) were being encoded before conversion
|
99 |
+
* Bug - Fixed issue with empty string being passed to array filter
|
100 |
+
* Housekeeping - Enabled mergetag usage in the pdf_password and pdf_master_password configuration options
|
101 |
+
* Housekeeping - Correctly call $wpdb->prepare so the variables in are in the second argument
|
102 |
+
|
103 |
+
= 3.5.2 =
|
104 |
+
* Bug - Initialisation folder .htaccess file was preventing template.css from being loaded by the default templates.
|
105 |
+
|
106 |
+
= 3.5.1 =
|
107 |
+
* Bug - Fixed issue with core fonts Arial/Helvetica, Times/Times New Roman and Courier not displaying in the PDF.
|
108 |
+
* Bug - Fixed display issues for multiple PDFs on the details admin entry page
|
109 |
+
* Housekeeping - Made the details entry page PDF view consistent for single or multiple PDFs
|
110 |
+
* Housekeeping - Ensured all javascript files are minified and are correctly being used
|
111 |
+
* Housekeeping - Remove legacy notices from mPDF package
|
112 |
+
|
113 |
+
= 3.5.0 =
|
114 |
+
* Feature - No longer need to reinitialise every time the software is updated.
|
115 |
+
* Feature - Add auto-initialiser on initial installation for sites that have direct write access to their server files
|
116 |
+
* Feature - Add auto-initialiser on initial installation across entire multisite network for sites who have direct write access to their server files.
|
117 |
+
* Feature - Add auto-PDF_EXTENDED_TEMPLATE theme syncer for sites that have direct write access to their server files
|
118 |
+
* Feature - Correctly added language support. The .PO file is located in the /language/ folder if anyone would like to do a translation.
|
119 |
+
|
120 |
+
* Housekeeping - Restrict initialisation process to 64MB or greater to counter problems with users reporting a 'white screen' when running in a low-RAM environment.
|
121 |
+
* Housekeeping - Refractor the admin notices code
|
122 |
+
* Housekeeping - Create responsive PDF settings page
|
123 |
+
* Housekeeping - Minify CSS and Javascript files
|
124 |
+
* Housekeeping - Remove FontAwesome fonts from package and use Wordpress' build-in 'dashicons'
|
125 |
+
* Housekeeping - Refine action and error messages
|
126 |
+
* Housekeeping - Update initialisation tab copy for both pre- and post- initialisation
|
127 |
+
* Housekeeping - Use Gravity Forms get_ip() function instead of custom function
|
128 |
+
* Housekeeping - The in-built support form uses SSL once again (disabled in the past due to some servers being unable to verify the certificate).
|
129 |
+
|
130 |
+
* Bug - When testing write permissions, file_exist() is throwing false positives for some users which would generate a warning when unlink() is called. Hide warning using '@'.
|
131 |
+
|
132 |
+
= 3.4.1 =
|
133 |
+
* Bug - Fix typo that effected sites running PHP5.2 or below.
|
134 |
+
|
135 |
+
= 3.4.0.3 =
|
136 |
+
* Bug - Define array_replace_recursive() if it doesn't exist, as it is PHP 5.3 only.
|
137 |
+
|
138 |
+
= 3.4.0.2 =
|
139 |
+
* Housekeeping - Wrapped the View PDF and Download buttons in correct language functions - _e()
|
140 |
+
* Bug - Fix problem displaying the signature field
|
141 |
+
* Bug - Fix notice errors with new 'save' PDF hook
|
142 |
+
|
143 |
+
= 3.4.0.1 =
|
144 |
+
* Housekeeping - Add commas on the last line of every config node in the configuration.php file
|
145 |
+
* Housekeeping - Fix up initialisation error messages
|
146 |
+
* Bug - Fix up mPDF bugs - soft hyphens, watermarks over SVG images, inline CSS bug
|
147 |
+
|
148 |
+
= 3.4.0 =
|
149 |
+
* Feature - Added auto-print prompt ability when you add &print=1 to the PDF URL (see https://gravityformspdfextended.com/documentation-v3-x-x/display-pdf-in-browser/ for details)
|
150 |
+
* Feature - Added ability to rotate absolute positioned text 180 degrees (previously only 90 and -90). Note: feature in beta
|
151 |
+
* Feature - Backup all template files that are overridden when initialising to a folder inside PDF_EXTENDED_TEMPLATE
|
152 |
+
* Feature - Added SSH initialisation support
|
153 |
+
* Feature - Allow MERGETAGS to be used in all PDF templates, including default template (but only in the HTML field).
|
154 |
+
* Feature - Updated mPDF to 3.7.1
|
155 |
+
* Feature - Enable text/image watermark support. Added new example template example-watermark09.php showing off its usage (see http://gravityformspdfextended.com/documentation-v3-x-x/templates/watermarks/)
|
156 |
+
* Feature - Added full survey, poll and quiz support to both the default template and $form_data (see http://gravityformspdfextended.com/documentation-v3-x-x/accessing-survey-poll-quiz-data/)
|
157 |
+
* Feature - Shortcodes will now be processed in all templates, including default template (but only in the HTML field).
|
158 |
+
* Feature - Added 'save' configuration option so PDFs are saved to the local disk when 'notifications' aren't enabled.
|
159 |
+
* Feature - Added 'dpi' configuration option to modify the PDF image DPI. Default 96dpi. Use 300dpi for printing.
|
160 |
+
* Feature - Added PDF/A1-b compliance option. Enable with 'pdfa1b' => true. See http://mpdf1.com/manual/index.php?tid=420&searchstring=pdf/a1-b for more details.
|
161 |
+
* Feature - Added PDF/X1-a compliance option. Enable with 'pdfx1a' => true. See http://mpdf1.com/manual/index.php?tid=481&searchstring=pdf/x-1a for more details.
|
162 |
+
* Feature - Added new constant option 'PDF_REPACK_FONT' which when enabled may improve function with some PostScript printers (disabled by default). Existing sites will need to add define('PDF_REPACK_FONT', true); to the bottom of their configuration.php file.
|
163 |
+
* Feature - Added a sleuth of new hooks and filters for developers. See https://gravityformspdfextended.com/documentation-v3-x-x/filters-and-hooks/ for examples.
|
164 |
+
* Feature - Added $form_data['form_description'] key to $form_data array
|
165 |
+
* Feature - Update $form_data['products'] array key to field ID
|
166 |
+
* Feature - Added survey Likert output function for custom templates (much like the product table function). It can be used with the following command 'echo GFPDFEntryDetails::get_likert($form, $lead, $field_id);' where $field_id is substituted for the form field ID.
|
167 |
+
* Feature - Added field descriptions to the $form_data array under the $form_data['field_descriptions'] key.
|
168 |
+
* Feature - Added pre and post PDF generation filters and actions to pdf-render.php. These include gfpdfe_pre_render_pdf, gfpdfe_pdf_output_type, gfpdfe_pdf_filename and gfpdf_post_pdf_save.
|
169 |
+
* Feature: $form_data['signature'] et al. keys now contain the signature width and height attributes
|
170 |
+
|
171 |
+
* Housekeeping - Ensure the form and lead IDs are correctly passed throughout the render functions.
|
172 |
+
* Housekeeping - Update settings page link to match new Gravity Forms URL structure
|
173 |
+
* Housekeeping - Check if $lead['gfsurvey_score'] exists before assigning to $form_data array
|
174 |
+
* Housekeeping - Removed table and font checksum debugging from mPDF when WP_DEBUG enabled as they produced inaccurate results.
|
175 |
+
* Housekeeping - Fixed up mPDF logging location when WP_DEBUG enabled. Files now stored in wp-content/themes/Active_Theme_Folder/PDF_EXTENDED_TEMPLATE/output/ folder.
|
176 |
+
* Housekeeping - Removed API logging locally when WP_DEBUG is enabled.
|
177 |
+
* Housekeeping - Increase API timeout interval as some overseas users reported timeout issues
|
178 |
+
* Housekeeping - Modified mPDF functions Image() and purify_utf8_text() to validate the input data so we don't have to do it every time through the template.
|
179 |
+
* Housekeeping - Added ability to not re-deploy every update (not enabled this release as template files were all updated)
|
180 |
+
* Housekeeping - Additional checks on load to see if any of the required file/folder structure is missing. If so, re-initilise.
|
181 |
+
* Housekeeping - Save resources and turn off automatic rtl identification. Users must set the RTL option when configuring form
|
182 |
+
* Housekeeping - Turn off mPDFs packTableData setting, decreasing processing time when working with large tables.
|
183 |
+
* Housekeeping - $gf_pdf_default_configuration options now merge down into existing PDF nodes, instead of applying to only unassigned forms. $gf_pdf_config settings override any in $gf_pdf_default_configuration
|
184 |
+
* Housekeeping - Center aligned Survey Likery field results
|
185 |
+
* Housekeeping - Partially refactored the pdf-entry-detail.php code
|
186 |
+
* Housekeeping - All default and example templates have been tidied. This won't affect custom templates.
|
187 |
+
* Housekeeping - Set the gform_notification order number to 100 which will prevent other functions (example snippets from Gravity Forms, for instance) from overridding the attached PDF.
|
188 |
+
* Housekeeping - Fix spelling mistake on initialising fonts
|
189 |
+
* Housekeeping - Remove wpautop() function from Gravity Form HTML output, which was applied before rendering and was messing up the HTML markup.
|
190 |
+
* Housekeeping - Remove empty list rows from the $form_data['list'] array in single and multi-column lists.
|
191 |
+
* Housekeeping - Apply same CSS styles (padding, border and line height) to HTML fields as done to form values in default templates
|
192 |
+
* Housekeeping - Replaced arbitrary wrapper IDs in the default templates with the actual field ID
|
193 |
+
|
194 |
+
* Bug - Fixed signature rendering issue when custom signature size was being used
|
195 |
+
* Bug - Fixed static error types in helper/install-update-manager.php file.
|
196 |
+
* Bug - Fixed redeployment error message which wasn't showing correctly
|
197 |
+
* Bug - Fixed issue with PDF not attaching to notification using Paypal's delayed notification feature
|
198 |
+
* Bug - Fixed strict standard warning about calling GFPDF_Settings::settings_page();
|
199 |
+
* Bug - Fixed strict standard warning about calling GFPDFEntryDetail::pdf_get_lead_field_display();
|
200 |
+
* Bug - Fixed issue with Gravity Form Post Category field causing fatal error generating PDF
|
201 |
+
* Bug - Fixed number field formatting issue when displaying on PDF.
|
202 |
+
* Bug - Do additional check for PHP's MB_String regex functions before initialising ti prevent errors after initialising
|
203 |
+
* Bug - Fixed problem with multiple nodes assigned to a form using the same template
|
204 |
+
* Bug - Fixed path to fallback templates when not found
|
205 |
+
* Bug - Fixed problem with master password setting to user password
|
206 |
+
|
207 |
+
|
208 |
+
= 3.3.4 =
|
209 |
+
* Bug - Fixed issue linking to PDF from front end
|
210 |
+
* Housekeeping - Removed autoredirect to initialisation page
|
211 |
+
|
212 |
+
= 3.3.3 =
|
213 |
+
* Bug - Correctly call javascript to control admin area 'View PDFs' drop down
|
214 |
+
* Bug - Some users still reported incorrect RAM. Convert MB/KB/GB values to M/K/G as per the PHP documentation.
|
215 |
+
* Housekeeping - Show initilisation prompt on all admin area pages instead of only on the Gravity Forms pages
|
216 |
+
|
217 |
+
= 3.3.2.1 =
|
218 |
+
* Bug - Incorrectly showing assigned RAM to website
|
219 |
+
|
220 |
+
= 3.3.2 =
|
221 |
+
* Bug - Some hosts reported SSL certificate errors when using the support API. Disabled HTTPS for further investigation. Using hash-based verification for authentication.
|
222 |
+
* Housekeeping - Forgot to disable API debug feature after completing beta
|
223 |
+
|
224 |
+
= 3.3.1 =
|
225 |
+
* Bug - $form_data['list'] was mapped using an incremental key instead of via the field ID
|
226 |
+
|
227 |
+
= 3.3.0 =
|
228 |
+
* Feature - Overhauled the initialisation process so that the software better reviews the host for potential problems before initialisation. This should help debug issues and make users aware there could be a problem before they begin using the software.
|
229 |
+
* Feature - Overhauled the settings page to make it easier to access features of the software
|
230 |
+
* Feature - Added a Support tab to the settings page which allows users to securely (over HTTPS) submit a support ticket to the Gravity Form PDF Extended support desk
|
231 |
+
* Feature - Changed select, multiselect and radio fields so that the default templates use the name rather than the value. $form_data now also includes the name and values for all these fields.
|
232 |
+
* Feature - $form_data now includes all miscellaneous lead information in the $form_data['misc'] array.
|
233 |
+
* Feature - $form_data now contains 24 and 12 hour time of entry submission.
|
234 |
+
* Feature - Added localisation support
|
235 |
+
* Compatibility - Added new multi-upload support which was added in Gravity Forms 1.8.
|
236 |
+
* Bug - Added 'aid' parametre to the PDF url when multiple configuration nodes present on a single form
|
237 |
+
* Bug - Fixed issue when Gravity Forms in No Conflict Mode
|
238 |
+
* Bug - Font config.php's array keys now in lower case
|
239 |
+
* Housekeeping - Moved all initialisation files to a folder called 'initialisation'.
|
240 |
+
* Housekeeping - Renamed the configuration.php file in the plugin folder to configuration.php.example to alleviate confusion for developers who unwittingly modify the plugin configuration file instead of the file in their active theme's PDF_EXTENDED_TEMPLATE folder.
|
241 |
+
* Housekeeping - Updated the plugin file system to a more MVC-style approach, with model and view folders.
|
242 |
+
* Housekeeping - Removed ability to directly access default and example template files.
|
243 |
+
* Housekeeping - Fixed PHP notices in default templates related to the default template-only configuration options
|
244 |
+
* Housekeeping - Update core styles to match Wordpress 3.8/Gravity Forms 1.8.
|
245 |
+
* Housekeeping - Updated header/footer examples to use @page in example.
|
246 |
+
|
247 |
+
= 3.2.0 =
|
248 |
+
* Feature - Can now view multiple PDFs assigned to a single form via the admin area. Note: You must provide a unique 'filename' parameter in configuration.php for multiple PDFs assigned to a single form.
|
249 |
+
* Feature - You can exclude a field from the default templates using the class name 'exclude'. See our [FAQ topic](http://gravityformspdfextended.com/faq/can-exclude-field-showing-pdf/) for more details.
|
250 |
+
* Bug - Fixed issue viewing own PDF entry when logged in as anything lower than editor.
|
251 |
+
* Bug - Fixed data return bug in pdf-entry-details.php that was preventing all data returning correctly.
|
252 |
+
* Bug - Fixed PHP Warning when using products with no options
|
253 |
+
* Bug - Fixed issue with invalid characters being added to the PDF filename. Most notably the date mergetag.
|
254 |
+
* Bug - Limit filename length to 150 characters which should work on the majority of web servers.
|
255 |
+
* Bug - Fixed problem sending duplicate PDF when using mass resend notification feature
|
256 |
+
* Depreciated - Removed GF_FORM_ID and GF_LEAD_ID constants which were used in v2.x.x of the software. Ensure you follow [v2.x.x upgrade guide](http://gravityformspdfextended.com/documentation-v3-x-x/v3-0-0-migration-guide/) to your templates before upgrading.
|
257 |
+
|
258 |
+
= 3.1.4 =
|
259 |
+
* Bug - Fixed issue with plugin breaking website's when the Gravity Forms plugin wasn't activated.
|
260 |
+
* Housekeeping - The plugin now only supports Gravity Forms 1.7 or higher and Wordpress 3.5 or higher.
|
261 |
+
* Housekeeping - PDF template files can no longer be accessed directly. Instead, add &html=1 to the end of your URL when viewing a PDF.
|
262 |
+
* Extension - Added additional filters to allow the lead ID and notifications to be overridden.
|
263 |
+
|
264 |
+
= 3.1.3 =
|
265 |
+
* Feature - Added signature_details_id to $form_data array which maps a signatures field ID to the array.
|
266 |
+
* Extension - Added pre-PDF generator filter for use with extensions.
|
267 |
+
* Bug - Fixed issue with quotes in entry data breaking custom templates.
|
268 |
+
* Bug - Fixed issue with the plugin not correctly using the new default configuration template, if set.
|
269 |
+
* Bug - Fixed issue with signature not being removed correctly when only testing with file_exists(). Added second is_dir() test.
|
270 |
+
* Bug - Fixed issue with empty signature field not displaying when option 'default-show-empty' is set.
|
271 |
+
* Bug - Fixed initialisation prompt issue when the MPDF package wasn't unpacked.
|
272 |
+
|
273 |
+
= 3.1.2 =
|
274 |
+
* Feature - Added list array, file path, form ID and lead ID to $form_data array in custom templates
|
275 |
+
* Bug - Fixed initialisation prompt issue when updating plugin
|
276 |
+
* Bug - Fixed window.open issue which prevented a new window from opening when viewing a PDF in the admin area
|
277 |
+
* Bug - Fixed issue with product dropdown and radio button data showing the value instead of the name field.
|
278 |
+
* Bug - Fixed incorrect URL pointing to signature in $form_data
|
279 |
+
|
280 |
+
= 3.1.1 =
|
281 |
+
* Bug - Users whose server only supports FTP file manipulation using the WP_Filesystem API moved the files into the wrong directory due to FTP usually being rooted to the Wordpress home directory. To fix this the plugin attempts to determine the FTP directory, otherwise assumes it is the WP base directory.
|
282 |
+
* Bug - Initialisation error message was being called but the success message was also showing.
|
283 |
+
|
284 |
+
= 3.1.0 =
|
285 |
+
* Feature - Added defaults to configuration.php which allows users to define the default PDF settings for all Gravity Forms. See the [installation and configuration documentation](http://gravityformspdfextended.com/documentation-v3-x-x/installation-and-configuration/#default-configuration-options) for more details.
|
286 |
+
* Feature - Added three new configuration options 'default-show-html', 'default-show-empty' and 'default-show-page-names' which allow different display options to the three default templates. See the [installation and configuration documentation](http://gravityformspdfextended.com/documentation-v3-x-x/installation-and-configuration/#default-template-only) for more details.
|
287 |
+
* Feature - Added filter hooks 'gfpdfe_pdf_name' and 'gfpdfe_template' which allows developers to further modify a PDF name and template file, respectively, outside of the configuration.php. This is useful if you have a special case naming convention based on user input. See [http://gravityformspdfextended.com/filters-and-hooks/](http://gravityformspdfextended.com/filters-and-hooks/) for more details about using these filters.
|
288 |
+
* Feature - Custom font support. Any .ttf font file added to the PDF_EXTENDED_TEMPLATE/fonts/ folder will be automatically installed once the plugin has been initialised. Users also have the option to just initialise the fonts via the settings page. See the [font/language documentation ](http://gravityformspdfextended.com/documentation-v3-x-x/language-support/#installing-fonts) for details.
|
289 |
+
* Compatability - Use Gravity Forms get_upload_root() and get_upload_url_root() instead of hard coding the signature upload directory in pdf-entry-detail.php
|
290 |
+
* Compatability - Changed depreciated functions get_themes() and get_theme() to wp_get_theme() (added in Wordpress v3.4).
|
291 |
+
* Compatability - The plugin now needs to be initialised on fresh installation and upgrade. This allows us to use the WP_Filesystem API for file manipulation.
|
292 |
+
* Compatability - Automatic copying of PDF_EXTENDED_TEMPLATE folder on a theme change was removed in favour of a user prompt. This allows us to take advantage of the WP_Filesystem API.
|
293 |
+
* Compatability - Added Wordpress compatibility checker (minimum now 3.4 or higher).
|
294 |
+
* Bug - Removed ZipArchive in favour of Wordpress's WP_Filesystem API unzip_file() command. Some users reported the plugin would stop their entire website working if this extension wasn't installed.
|
295 |
+
* Bug - Fixed Gravity Forms compatibility checker which wouldn't return the correct response.
|
296 |
+
* Bug - Fixed minor bug in pdf.php when using static call 'self' in add_filter hook. Changed to class name.
|
297 |
+
* Bug - Removed PHP notice about $even variable not being defined in pdf-entry-detail.php
|
298 |
+
* Bug - Prevent code from continuing to excecute after sending header redirect.
|
299 |
+
|
300 |
+
= 3.0.2 =
|
301 |
+
* Backwards Compatibility - While PHP 5.3 has was released a number of years ago it seems a number of hosts do not currently offer this version to their clients. In the interest of backwards compatibility we've re-written the plugin to again work with PHP 5+.
|
302 |
+
* Signature / Image Display Bug - All URLs have been converted to a path so images should now display correctly in PDF.
|
303 |
+
|
304 |
+
= 3.0.1 =
|
305 |
+
* Bug - Fixed issue that caused website to become unresponsive when Gravity Forms was disabled or upgraded
|
306 |
+
* Bug - New HTML fields weren't being displayed in $form_data array
|
307 |
+
* Feature - Options for default templates to disable HTML fields or empty fields (or both)
|
308 |
+
|
309 |
+
= 3.0.0 =
|
310 |
+
As of Gravity Forms PDF Extended v3.0.0 we have removed the DOMPDF package from our plugin and integrated the more advanced mPDF system. Along with a new HTML to PDF generator, we've rewritten the entire plugin's base code to make it more user friendly to both hobbyists and rock star web developers. Configuration time is cut in half and advanced features like adding security features is now accessible to users who have little experience with PHP.
|
311 |
+
|
312 |
+
New Features include:
|
313 |
+
|
314 |
+
* Language Support - almost all languages are supported including RTL (right to left) languages like Arabic and Hebrew and CJK languages - Chinese, Japanese and Korean.
|
315 |
+
* HTML Page Numbering
|
316 |
+
* Odd and even paging with mirrored margins (most commonly used in printing).
|
317 |
+
* Nested Tables
|
318 |
+
* Text-justification and hyphenation
|
319 |
+
* Table of Contents
|
320 |
+
* Index
|
321 |
+
* Bookmarks
|
322 |
+
* Watermarks
|
323 |
+
* Password protection
|
324 |
+
* UTF-8 encoded HTML
|
325 |
+
* Better system resource handling
|
326 |
+
|
327 |
+
A new HTML to PDF package wasn't the only change to this edition of the software. We have rewritten the entire configuration system and made it super easy to get the software up and running.
|
328 |
+
|
329 |
+
Users will no longer place code in their active theme's functions.php file. Instead, configuration will happen in a new file called configuration.php, inside the PDF_EXTENDED_TEMPLATES folder (in your active theme).
|
330 |
+
|
331 |
+
Other changes include
|
332 |
+
* Improved security - further restrictions were placed on non-administrators viewing template files.
|
333 |
+
* $form_data array tidied up - images won't be wrapped in anchor tags.
|
334 |
+
|
335 |
+
For more details [view the 3.x.x online documentation](http://gravityformspdfextended.com/documentation-v3-x-x/introduction/).
|
336 |
+
|
337 |
+
= 2.2.3 =
|
338 |
+
* Bug - Fixed mb_string error in the updated DOMPDF package.
|
339 |
+
|
340 |
+
= 2.2.2 =
|
341 |
+
* DOMPDF - We updated to the latest version of DOMPDF - DOMPDF 0.6.0 beta 3.
|
342 |
+
* DOMPDF - We've enabled font subsetting by default which should help limit the increased PDF size when using DejaVu Sans (or any other font).
|
343 |
+
|
344 |
+
= 2.2.1 =
|
345 |
+
* Bug - Fixed HTML error which caused list items to distort on PDF
|
346 |
+
|
347 |
+
= 2.2.0 =
|
348 |
+
* Compatibility - Ensure compatibility with Gravity Forms 1.7. We've updated the functions.php code and remove gform_user_notification_attachments and gform_admin_notification_attachments hooks which are now depreciated. Functions gform_pdf_create and gform_add_attachment have been removed and replaced with gfpdfe_create_and_attach_pdf(). See upgrade documentation for details.
|
349 |
+
* Enhancement - Added deployment code switch so the template redeployment feature can be turned on and off. This release doesn't require redeployment.
|
350 |
+
* Enhancement - PDF_Generator() variables were getting long and complex so the third variable is now an array which will pass all the optional arguments. The new 1.7 compatible functions.php code includes this method by default. For backwards compatibility the function will still work with the variable structure prior to 2.2.0.
|
351 |
+
* Bug - Fixed error generated by legacy code in the function PDF_processing() which is located in render_to_pdf.php.
|
352 |
+
* Bug - Images and stylesheets will now try and be accessed with a local path instead of a URL. It fixes problem where some hosts were preventing read access from a URL. No template changes are required.
|
353 |
+
|
354 |
+
= 2.1.1 =
|
355 |
+
* Bug - Signatures stopped displaying after 2.1.0 update. Fixed issue.
|
356 |
+
* Bug - First time install code now won't execute if already have configuration variables in database
|
357 |
+
|
358 |
+
= 2.1.0 =
|
359 |
+
|
360 |
+
* Feature - Product table can now be accessed directly through custom templates by running GFPDFEntryDetail::product_table($form, $lead);. See documentation for more details.
|
361 |
+
* Feature - Update screen will ask you if you want to deploy new template files, instead of overriding your modified versions.
|
362 |
+
* Feature - Product subtotal, shipping and total have been added to $form_data['field'] array to make it easier to work with product details in the custom template.
|
363 |
+
* Feature - Added two new default template files. One displays field and name in two rows (like you see when viewing an entry in the admin area) and the other removes all styling. See documentation on use.
|
364 |
+
* Security - Tightened PDF template security so that custom templates couldn't be automatically generated by just anyone. Now only logged in users with the correct privileges and the user who submitted the form (matched against IP) can auto generate a PDF. See documentation on usage.
|
365 |
+
* Depreciated - Removed form data that was added directly to the $form_data array instead of $form_data['field'] array. Users upgrading will need to update their custom templates if not using field data from the $form_data[�field'] array. If using $form_data['field'] in your custom template this won't affect you.
|
366 |
+
* Bug - Fixed problem with default template not showing and displaying a timeout error. Removed table tags and replaced with divs that are styled appropriately.
|
367 |
+
* Bug - The new plugin theme folder will successfully create when upgrading. You won't have to deactivate and reactivate to get it working.
|
368 |
+
* Bug - some installs had plugins that included the function mb_string which is also included in DOMPDF. DOMPDF will now check if the function exists before creating it.
|
369 |
+
* Bug - Remove empty signature field from the default template.
|
370 |
+
* Bug - fixed problem with redirecting to login screen even when logged in while accessing template file through the browser window directly.
|
371 |
+
* Bug - fixed error where sample template would reimport itself automatically even after deleting it. Will now only reimport if any important changes to template need to be viewed straight after an update.
|
372 |
+
* Bug - Moved render_to_pdf.php constants to pdf.php so we can use the constants in the core files. Was previously generating an error.
|
373 |
+
* Housekeeping - Cleaned up core template files, moved functions into classes and added more in-file documentation.
|
374 |
+
* Housekeeping - moved install/upgrade code from pdf.php to installation-update-manager.php
|
375 |
+
* Housekeeping - changed pdf-entry-detail.php class name from GFEntryDetail to GFPDFEntryDetail to remove compatibility problems with Gravity Forms.
|
376 |
+
* Housekeeping - created pdf-settings.php file to house the settings page code.
|
377 |
+
|
378 |
+
= 2.0.1 =
|
379 |
+
* Fixed Signature bug when checking if image file exists using URL instead of filesystem path
|
380 |
+
* Fixed PHP Constants Notice
|
381 |
+
|
382 |
+
= 2.0.0 =
|
383 |
+
* Moved templates to active theme folder to prevent custom themes being removed on upgrade
|
384 |
+
* Allow PDFs to be saved using a custom name
|
385 |
+
* Fixed WP_Error bug when image/css file cannot be found
|
386 |
+
* Upgraded to latest version of DOMPDF
|
387 |
+
* Removed auto-load form bug which would see multiple instances of the example form loaded
|
388 |
+
* Created a number of constants to allow easier developer modification
|
389 |
+
* Plugin/Support moved to dedicated website.
|
390 |
+
* Pro/Business package offers the ability to write fields on an existing PDF.
|
391 |
+
|
392 |
+
= 1.2.3 =
|
393 |
+
* Fixed $wpdb->prepare error
|
394 |
+
|
395 |
+
= 1.2.2 =
|
396 |
+
* Fixed bug with tempalte shipping method MERGETAGS
|
397 |
+
* Fixed bug where attachment wasn't being sent
|
398 |
+
* Fixed problem when all_url_fopen was turned off on server and failed to retreive remote images. Now uses WP_HTTP class.
|
399 |
+
|
400 |
+
= 1.2.1 =
|
401 |
+
* Fixed path to custom css file included in PDF template
|
402 |
+
|
403 |
+
= 1.2.0 =
|
404 |
+
* Template files moved to the plugin's template folder
|
405 |
+
* Sample Form installed so developers have a working example to modify
|
406 |
+
* Fixed bug when using WordPress in another directory to the site
|
407 |
+
|
408 |
+
= 1.1.0 =
|
409 |
+
* Now compatible with Gravity Forms Signature Add-On
|
410 |
+
* Moved the field data functions out side of the Gravity Forms core so users can freely style their form information (located in pdf-entry-detail.php)
|
411 |
+
* Simplified the field data output
|
412 |
+
* Fixed bug when using product information
|
413 |
+
|
414 |
+
= 1.0.0 =
|
415 |
+
* First release.
|
416 |
+
|
417 |
+
== Upgrade Notice ==
|
418 |
+
|
419 |
+
= 3.4.0.1 =
|
420 |
+
mPDF upgrade. Full Survey, Poll and Quiz support. Paypal Delayed notifications support. Enhanced $form_data array. More filters and hooks for developers.
|
helper/installation-update-manager.php
CHANGED
@@ -91,7 +91,7 @@ class GFPDF_InstallUpdater
|
|
91 |
* Test if the blog has gravity forms and PDF Extended active
|
92 |
* If so, we can initialise
|
93 |
*/
|
94 |
-
$gravityforms = 'gravityforms/gravityforms.php'; /* have to hardcode the folder name
|
95 |
$pdfextended = GF_PDF_EXTENDED_PLUGIN_BASENAME; /* no need to hardcode the basename here */
|
96 |
|
97 |
if( (is_plugin_active_for_network($gravityforms) && is_plugin_active_for_network($pdfextended)) ||
|
91 |
* Test if the blog has gravity forms and PDF Extended active
|
92 |
* If so, we can initialise
|
93 |
*/
|
94 |
+
$gravityforms = 'gravityforms/gravityforms.php'; /* have to hardcode the folder name as they don't set it in a constant or variable */
|
95 |
$pdfextended = GF_PDF_EXTENDED_PLUGIN_BASENAME; /* no need to hardcode the basename here */
|
96 |
|
97 |
if( (is_plugin_active_for_network($gravityforms) && is_plugin_active_for_network($pdfextended)) ||
|
helper/pdf-common.php
CHANGED
@@ -107,10 +107,6 @@ class PDF_Common
|
|
107 |
*/
|
108 |
public static function do_mergetags($string, $form_id, $lead_id)
|
109 |
{
|
110 |
-
|
111 |
-
$form = RGFormsModel::get_form_meta($form_id);
|
112 |
-
$lead = RGFormsModel::get_lead($lead_id);
|
113 |
-
|
114 |
/*
|
115 |
* Unconvert { and } symbols from HTML entities
|
116 |
*/
|
@@ -120,6 +116,17 @@ class PDF_Common
|
|
120 |
/* strip {all_fields} merge tag from $string */
|
121 |
$string = str_replace('{all_fields}', '', $string);
|
122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
return trim(GFCommon::replace_variables($string, $form, $lead, false, false, false));
|
124 |
}
|
125 |
|
107 |
*/
|
108 |
public static function do_mergetags($string, $form_id, $lead_id)
|
109 |
{
|
|
|
|
|
|
|
|
|
110 |
/*
|
111 |
* Unconvert { and } symbols from HTML entities
|
112 |
*/
|
116 |
/* strip {all_fields} merge tag from $string */
|
117 |
$string = str_replace('{all_fields}', '', $string);
|
118 |
|
119 |
+
/*
|
120 |
+
* Get form and lead data
|
121 |
+
*/
|
122 |
+
$form = GFAPI::get_form($form_id);
|
123 |
+
$lead = GFAPI::get_entry($lead_id);
|
124 |
+
|
125 |
+
if(is_wp_error($form) || is_wp_error($lead))
|
126 |
+
{
|
127 |
+
return $string;
|
128 |
+
}
|
129 |
+
|
130 |
return trim(GFCommon::replace_variables($string, $form, $lead, false, false, false));
|
131 |
}
|
132 |
|
helper/pdf-configuration-indexer.php
CHANGED
@@ -58,7 +58,7 @@
|
|
58 |
/*
|
59 |
* Include the configuration file and set up the configuration variable.
|
60 |
*/
|
61 |
-
|
62 |
/*
|
63 |
* $gf_pdf_config included from configuration.php file
|
64 |
*/
|
@@ -156,36 +156,30 @@
|
|
156 |
{
|
157 |
return (isset($this->index[$id])) ? $this->index[$id] : false;
|
158 |
}
|
159 |
-
|
160 |
-
|
161 |
-
*
|
162 |
-
*
|
163 |
-
|
164 |
-
|
|
|
165 |
{
|
166 |
if(!isset($this->index[$form_id]))
|
167 |
{
|
168 |
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
}
|
170 |
|
171 |
-
|
172 |
-
|
173 |
-
* Because we now allow multiple PDF templates per form we need a way to get the correct PDF settings
|
174 |
-
* To do this we use the $_GET variable 'aid'
|
175 |
-
* If 'aid' is not found we will pull the first entry
|
176 |
-
* Note: 'aid' has been incremented by 1 so 'aid' === 0 is never found
|
177 |
-
*/
|
178 |
-
if(isset($_GET['aid']) && (int) $_GET['aid'] > 0)
|
179 |
-
{
|
180 |
-
$aid = (int) $_GET['aid'] - 1;
|
181 |
-
return $this->configuration[$index[$aid]];
|
182 |
-
}
|
183 |
-
|
184 |
-
/*
|
185 |
-
* No valid configuration file found so pull the default
|
186 |
-
*/
|
187 |
-
return $this->configuration[$index[0]];
|
188 |
-
}
|
189 |
|
190 |
/**
|
191 |
* Replaced get_config_data in default tempaltes to only return the default-only configuration options
|
@@ -214,7 +208,7 @@
|
|
214 |
* @param integer $form_id ID of the form
|
215 |
* @return array configuration node
|
216 |
*/
|
217 |
-
|
218 |
{
|
219 |
if(!isset($this->index[$form_id]))
|
220 |
{
|
@@ -259,8 +253,8 @@
|
|
259 |
}
|
260 |
|
261 |
if(isset($this->index[$form_id]))
|
262 |
-
|
263 |
-
|
264 |
* Show all PDF nodes
|
265 |
*/
|
266 |
if($return_all === true && sizeof($this->index[$form_id]) > 1)
|
58 |
/*
|
59 |
* Include the configuration file and set up the configuration variable.
|
60 |
*/
|
61 |
+
require_once(PDF_TEMPLATE_LOCATION.'configuration.php');
|
62 |
/*
|
63 |
* $gf_pdf_config included from configuration.php file
|
64 |
*/
|
156 |
{
|
157 |
return (isset($this->index[$id])) ? $this->index[$id] : false;
|
158 |
}
|
159 |
+
|
160 |
+
/**
|
161 |
+
* Pull all config nodes for a single form
|
162 |
+
* @param Integer $form_id The form ID a user is looking for
|
163 |
+
* @return Array The configuration nodes for a particular form
|
164 |
+
*/
|
165 |
+
public function get_form_configuration($form_id)
|
166 |
{
|
167 |
if(!isset($this->index[$form_id]))
|
168 |
{
|
169 |
return false;
|
170 |
+
}
|
171 |
+
|
172 |
+
$indexes = $this->index[$form_id];
|
173 |
+
|
174 |
+
$config_nodes = array();
|
175 |
+
|
176 |
+
foreach($indexes as $index)
|
177 |
+
{
|
178 |
+
$config_nodes[] = $this->configuration[$index];
|
179 |
}
|
180 |
|
181 |
+
return $config_nodes;
|
182 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
|
184 |
/**
|
185 |
* Replaced get_config_data in default tempaltes to only return the default-only configuration options
|
208 |
* @param integer $form_id ID of the form
|
209 |
* @return array configuration node
|
210 |
*/
|
211 |
+
public function pull_config_data($form_id)
|
212 |
{
|
213 |
if(!isset($this->index[$form_id]))
|
214 |
{
|
253 |
}
|
254 |
|
255 |
if(isset($this->index[$form_id]))
|
256 |
+
{
|
257 |
+
/*
|
258 |
* Show all PDF nodes
|
259 |
*/
|
260 |
if($return_all === true && sizeof($this->index[$form_id]) > 1)
|
languages/pdfextended-en_GB.po
ADDED
@@ -0,0 +1,839 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Gravity Forms PDF Extended\n"
|
4 |
+
"POT-Creation-Date: 2014-09-15 16:14+1000\n"
|
5 |
+
"PO-Revision-Date: 2014-09-15 16:14+1000\n"
|
6 |
+
"Last-Translator: Blue Liquid Designs <enquire@blueliquiddesigns.com.au>\n"
|
7 |
+
"Language-Team: <enquire@blueliquiddesigns.com.au>\n"
|
8 |
+
"Language: en\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.5\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: /\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-SearchPath-0: G:\\Blue Liquid Designs\\4) BLUE LIQUID DESIGNS\\19) "
|
17 |
+
"GRAVITY FORMS PDF EXTENDED\\1) github\n"
|
18 |
+
|
19 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
20 |
+
#: EXTENDED\1) github/helper/api.php:142
|
21 |
+
msgid "Bad Request."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
25 |
+
#: EXTENDED\1) github/helper/api.php:150 github/helper/api.php:261
|
26 |
+
msgid "Unauthorized Access."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
30 |
+
#: EXTENDED\1) github/helper/api.php:172
|
31 |
+
msgid "Method not allowed."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
35 |
+
#: EXTENDED\1) github/helper/api.php:180
|
36 |
+
msgid "Internal API Error."
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
40 |
+
#: EXTENDED\1) github/helper/api.php:188
|
41 |
+
msgid "API Unavailable."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
45 |
+
#: EXTENDED\1) github/helper/notices.php:54
|
46 |
+
#, php-format
|
47 |
+
msgid "%sGravity Forms PDF Extended Automated Installer%s: "
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
51 |
+
#: EXTENDED\1) github/helper/notices.php:64
|
52 |
+
#, php-format
|
53 |
+
msgid " %sGo to installer%s."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
57 |
+
#: EXTENDED\1) github/helper/notices.php:74
|
58 |
+
msgid ""
|
59 |
+
"The font files have been successfully installed. A font can be used by "
|
60 |
+
"adding its file name (without .ttf and in lower case) in a CSS font-family "
|
61 |
+
"declaration."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
65 |
+
#: EXTENDED\1) github/helper/notices.php:85
|
66 |
+
msgid "Could not create font configuration file. Try initialise again."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
70 |
+
#: EXTENDED\1) github/helper/notices.php:101
|
71 |
+
msgid ""
|
72 |
+
"Gravity Forms PDF Extended detected a configuration problem. Please "
|
73 |
+
"reinitialise the plugin."
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
77 |
+
#: EXTENDED\1) github/helper/notices.php:105
|
78 |
+
#, php-format
|
79 |
+
msgid ""
|
80 |
+
"Gravity Forms PDF Extended detected a configuration problem. Please go to "
|
81 |
+
"the %splugin's settings page%s to reinitialise."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
85 |
+
#: EXTENDED\1) github/helper/notices.php:122
|
86 |
+
msgid ""
|
87 |
+
"Gravity Forms PDF Extended detected a server compatibility problem which "
|
88 |
+
"prevented the software from running. See the System Status section below for "
|
89 |
+
"details."
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
93 |
+
#: EXTENDED\1) github/helper/notices.php:126
|
94 |
+
#, php-format
|
95 |
+
msgid ""
|
96 |
+
"Gravity Forms PDF Extended detected a server compatibility problem which "
|
97 |
+
"prevented the software from running. Please go to the %splugin's settings "
|
98 |
+
"page%s to view the issue."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
102 |
+
#: EXTENDED\1) github/helper/notices.php:142
|
103 |
+
msgid ""
|
104 |
+
"Welcome to Gravity Forms PDF Extended. Before you can use the plugin "
|
105 |
+
"correctly you need to initilise it."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
109 |
+
#: EXTENDED\1) github/helper/notices.php:146
|
110 |
+
#, php-format
|
111 |
+
msgid ""
|
112 |
+
"Welcome to Gravity Forms PDF Extended. Before you can use the plugin "
|
113 |
+
"correctly you need to initilise it. Please go to the %splugin's settings page"
|
114 |
+
"%s to initialise."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
118 |
+
#: EXTENDED\1) github/helper/notices.php:158
|
119 |
+
#, php-format
|
120 |
+
msgid ""
|
121 |
+
"Gravity Forms PDF Extended only works with Gravity Forms version %s and "
|
122 |
+
"higher. Please %supgrade your copy of Gravity Forms%s to use this plugin."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
126 |
+
#: EXTENDED\1) github/helper/notices.php:172
|
127 |
+
msgid ""
|
128 |
+
"We could not create a template folder in your active theme's directory. "
|
129 |
+
"Please ensure your active theme directory is writable by your web server and "
|
130 |
+
"try again."
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
134 |
+
#: EXTENDED\1) github/helper/notices.php:187
|
135 |
+
#, php-format
|
136 |
+
msgid ""
|
137 |
+
"We could not remove the default template files from the Gravity Forms PDF "
|
138 |
+
"Extended folder in your active theme's directory. Please ensure %s is "
|
139 |
+
"wriable by your web server and try again."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
143 |
+
#: EXTENDED\1) github/helper/notices.php:200
|
144 |
+
#, php-format
|
145 |
+
msgid ""
|
146 |
+
"We could not move the template files to the PDF_EXTENDED_TEMPLATES folder. "
|
147 |
+
"Please ensure %s is wriable by your web server and try again."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
151 |
+
#: EXTENDED\1) github/helper/notices.php:218
|
152 |
+
#, php-format
|
153 |
+
msgid ""
|
154 |
+
"Gravity Forms PDF Extended needs to keep your configuration and templates "
|
155 |
+
"folder in sync with your current active theme. %sSync Now%s"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
159 |
+
#: EXTENDED\1) github/helper/notices.php:227
|
160 |
+
#, php-format
|
161 |
+
msgid "%sGravity Forms PDF Extended Automated Theme Sync%s: "
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
165 |
+
#: EXTENDED\1) github/helper/notices.php:229
|
166 |
+
msgid ""
|
167 |
+
"Your PDF configuration and template folder was successfully synced to your "
|
168 |
+
"new theme."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
172 |
+
#: EXTENDED\1) github/helper/notices.php:241
|
173 |
+
msgid ""
|
174 |
+
"Gravity Forms PDF Extended Auto Initialisation Complete across the entire "
|
175 |
+
"network."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
179 |
+
#: EXTENDED\1) github/helper/notices.php:245
|
180 |
+
msgid ""
|
181 |
+
"Gravity Forms PDF Extended Initialisation Complete across the entire network."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
185 |
+
#: EXTENDED\1) github/helper/notices.php:250 github/helper/notices.php:262
|
186 |
+
#, php-format
|
187 |
+
msgid "%sLearn how to configuring the plugin%s."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
191 |
+
#: EXTENDED\1) github/helper/notices.php:258
|
192 |
+
msgid "Gravity Forms PDF Extended Auto Initialisation Complete."
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
196 |
+
#: EXTENDED\1) github/helper/notices.php:276
|
197 |
+
msgid "There was a network initialisation issue on the following sites;"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
201 |
+
#: EXTENDED\1) github/helper/notices.php:289
|
202 |
+
msgid "Please try manually initialise the software"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
206 |
+
#: EXTENDED\1) github/helper/notices.php:293
|
207 |
+
msgid ""
|
208 |
+
"An unknown network initialisation error occured. Please try initialise again."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
212 |
+
#: EXTENDED\1) github/helper/notices.php:300
|
213 |
+
msgid "You've successfully initialised Gravity Forms PDF Extended."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
217 |
+
#: EXTENDED\1) github/helper/notices.php:307
|
218 |
+
#: github/view/templates/settings/system-status.php:34
|
219 |
+
#: github/view/templates/settings/system-status.php:41
|
220 |
+
msgid "Gravity Forms "
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
224 |
+
#: EXTENDED\1) github/helper/notices.php:313
|
225 |
+
msgid "Wordpress "
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
229 |
+
#: EXTENDED\1) github/helper/notices.php:325
|
230 |
+
msgid "PHP "
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
234 |
+
#: EXTENDED\1) github/helper/notices.php:331
|
235 |
+
#, php-format
|
236 |
+
msgid ""
|
237 |
+
"If you reinitialise and enable this option %syou will overwrite%s the "
|
238 |
+
"default and example template files in your active theme directory."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
242 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:240
|
243 |
+
msgid "Order"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
247 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:251
|
248 |
+
msgid "Product"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
252 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:252
|
253 |
+
msgid "Qty"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
257 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:253
|
258 |
+
msgid "Unit Price"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
262 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:254
|
263 |
+
msgid "Price"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
267 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:317
|
268 |
+
msgid "Total"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
272 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:927
|
273 |
+
msgid ""
|
274 |
+
"Activate Gravity Forms Quiz Add On to see global quiz statistics for this "
|
275 |
+
"form"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
279 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:1339
|
280 |
+
#: github/helper/pdf-entry-detail.php:1704
|
281 |
+
msgid "Qty: "
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
285 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:1339
|
286 |
+
#: github/helper/pdf-entry-detail.php:1704
|
287 |
+
msgid "Price: "
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
291 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:1638
|
292 |
+
msgid "Title"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
296 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:1639
|
297 |
+
msgid "Caption"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
301 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:1640
|
302 |
+
msgid "Description"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
306 |
+
#: EXTENDED\1) github/helper/pdf-entry-detail.php:1645
|
307 |
+
#: github/helper/pdf-entry-detail.php:1664
|
308 |
+
msgid "Click to view"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
312 |
+
#: EXTENDED\1) github/model/pdf.php:136
|
313 |
+
msgid "View"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
317 |
+
#: EXTENDED\1) github/model/pdf.php:137
|
318 |
+
msgid "Download"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
322 |
+
#: EXTENDED\1) github/model/pdf.php:179
|
323 |
+
msgid "View PDFs"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
327 |
+
#: EXTENDED\1) github/model/pdf.php:210
|
328 |
+
msgid "View PDF"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
332 |
+
#: EXTENDED\1) github/model/settings.php:367
|
333 |
+
msgid "Plugin not yet initialised"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
337 |
+
#: EXTENDED\1) github/model/settings.php:422
|
338 |
+
msgid ""
|
339 |
+
"There was a problem with your submission. Please reload the page and try "
|
340 |
+
"again"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
344 |
+
#: EXTENDED\1) github/model/settings.php:439
|
345 |
+
msgid "Please enter a valid email address"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
349 |
+
#: EXTENDED\1) github/model/settings.php:442
|
350 |
+
msgid "Problem"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
354 |
+
#: EXTENDED\1) github/model/settings.php:442
|
355 |
+
msgid "Question"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
359 |
+
#: EXTENDED\1) github/model/settings.php:442
|
360 |
+
msgid "Suggestion"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
364 |
+
#: EXTENDED\1) github/model/settings.php:446
|
365 |
+
msgid "Please select a valid support type."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
369 |
+
#: EXTENDED\1) github/model/settings.php:451
|
370 |
+
msgid ""
|
371 |
+
"Please enter information about your support query so we can aid you more "
|
372 |
+
"easily."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
376 |
+
#: EXTENDED\1) github/model/settings.php:456
|
377 |
+
msgid ""
|
378 |
+
"There is a problem with your support request. Please correct the marked "
|
379 |
+
"issues above."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
383 |
+
#: EXTENDED\1) github/model/settings.php:466
|
384 |
+
msgid ""
|
385 |
+
"Thank you for your support request. We'll respond to your request in the "
|
386 |
+
"next 24-48 hours."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
390 |
+
#: EXTENDED\1) github/model/settings.php:524
|
391 |
+
msgid "Support request received. We will responed in 24 to 48 hours."
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
395 |
+
#: EXTENDED\1) github/view/templates/settings/changelog.php:19
|
396 |
+
msgid "Changelog"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
400 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation-tab.php:41
|
401 |
+
msgid "Gravity Forms PDF Extended"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
405 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation-tab.php:42
|
406 |
+
msgid ""
|
407 |
+
"Your web server isn't compatible with Gravity Forms PDF Extended. Please see "
|
408 |
+
"the problem areas below."
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
412 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation-tab.php:52
|
413 |
+
msgid "Can't Resolve the Issue?"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
417 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation-tab.php:53
|
418 |
+
#, php-format
|
419 |
+
msgid ""
|
420 |
+
"Does Gravity Forms PDF Extended detect a problem that your web host won't "
|
421 |
+
"fix? %sWe recommend you move to a quality web hosting service like WP Engine"
|
422 |
+
"%s which runs our software straight out of the box."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
426 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:19
|
427 |
+
msgid "Welcome to Gravity Forms PDF Extended"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
431 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:19
|
432 |
+
#: github/view/templates/settings/initialisation.php:66
|
433 |
+
msgid "Initialise Plugin"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
437 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:23
|
438 |
+
msgid ""
|
439 |
+
"The plugin has successfully installed and is ready to start automating your "
|
440 |
+
"documents."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
444 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:25
|
445 |
+
msgid "What's next?"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
449 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:26
|
450 |
+
msgid ""
|
451 |
+
"The next step is to correctly configured the plugin so that you can generate "
|
452 |
+
"PDF documents."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
456 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:27
|
457 |
+
msgid ""
|
458 |
+
"To help you get started, we've put together a five-part video series with "
|
459 |
+
"the most common plugin configurations."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
463 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:29
|
464 |
+
msgid "The Basics: Only Download PDF through the Admin Area"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
468 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:30
|
469 |
+
msgid "The Email: Send Completed PDF via Email"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
473 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:31
|
474 |
+
msgid ""
|
475 |
+
"The Download: User Downloads PDF after Submitting Form (using a link or auto "
|
476 |
+
"redirecting)"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
480 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:32
|
481 |
+
msgid "The Email Advanced: Manually Review User Submission before Emailing PDF"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
485 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:33
|
486 |
+
msgid "The Payment: Send PDF after Capturing Payment using Paypal Standard"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
490 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:36
|
491 |
+
#, php-format
|
492 |
+
msgid ""
|
493 |
+
"If you know little about PHP we recommend starting with %sPart 1:The Basics"
|
494 |
+
"%s and then watching the tutorial you’re interested in. It will give you the "
|
495 |
+
"foundational skills you need to configure the software."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
499 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:38
|
500 |
+
msgid "Custom Templates"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
504 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:39
|
505 |
+
#, php-format
|
506 |
+
msgid ""
|
507 |
+
"Creating a custom template gives you ultimate control of the look and feel "
|
508 |
+
"of your documents using only HTML and CSS. %sWe recommend you review our "
|
509 |
+
"online documentation%s to create and customise your template files."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
513 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:45
|
514 |
+
msgid ""
|
515 |
+
"To complete the installation, Gravity Forms PDF Extended needs to be "
|
516 |
+
"initialised."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
520 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:47
|
521 |
+
msgid "Does does initialisation do?"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
525 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:50
|
526 |
+
msgid "Install the template files"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
530 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:50
|
531 |
+
msgid ""
|
532 |
+
"We create a folder called PDF_EXTENDED_TEMPLATE in your active theme "
|
533 |
+
"directory and move over all the templates and configuration files. This "
|
534 |
+
"folder is where you'll look to configure the software and create your PDF "
|
535 |
+
"templates."
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
539 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:62
|
540 |
+
msgid "Have a problem with the software?"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
544 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:63
|
545 |
+
msgid ""
|
546 |
+
"Did you switch themes and something went wrong syncing the template folder? "
|
547 |
+
"Try reinitialise the software."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
551 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:66
|
552 |
+
msgid "Reinitialise Plugin"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
556 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:68
|
557 |
+
msgid "Reinstall Default and Example Templates"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
561 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:74
|
562 |
+
msgid "Install a new font?"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
566 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:75
|
567 |
+
#, php-format
|
568 |
+
msgid ""
|
569 |
+
"Do you want to use a custom font in your template? %sSee our documentation "
|
570 |
+
"on how to correctly install and use a custom font%s before initialising "
|
571 |
+
"below."
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
575 |
+
#: EXTENDED\1) github/view/templates/settings/initialisation.php:76
|
576 |
+
msgid "Initialise Fonts"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
580 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:26
|
581 |
+
msgid ""
|
582 |
+
"Gravity Forms PDF Extended's support hours are from 9:00am-5:00pm Monday to "
|
583 |
+
"Friday, Sydney Australia time."
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
587 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:29
|
588 |
+
#, php-format
|
589 |
+
msgid "The current time in Sydney Australia is %s."
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
593 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:55
|
594 |
+
msgid "Enter the email address you want us to contact you on."
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
598 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:56
|
599 |
+
msgid ""
|
600 |
+
"Note: To ensure the best support possible, please use the above email to "
|
601 |
+
"respond to all support communications."
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
605 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:92
|
606 |
+
msgid "Enter as much detail about the problem as you can."
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
610 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:93
|
611 |
+
msgid "Please enter as much detail about the problem as you can."
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
615 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:94
|
616 |
+
msgid "Note: Our support representatives can only communicate in English."
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
620 |
+
#: EXTENDED\1) github/view/templates/settings/support-form.php:97
|
621 |
+
msgid "Request Support"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
625 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:20
|
626 |
+
msgid "Frequently Asked Questions"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
630 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:22
|
631 |
+
msgid "Can I exclude a field from showing up in the PDF?"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
635 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:23
|
636 |
+
msgid ""
|
637 |
+
"I want to have multiple PDF template files generated on one form. How do I "
|
638 |
+
"do it?"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
642 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:24
|
643 |
+
msgid "I want users to be able to download the PDF from the server."
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
647 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:25
|
648 |
+
msgid "How do I change the PDF size or create a landscape PDF?"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
652 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:26
|
653 |
+
msgid ""
|
654 |
+
"I am created a custom template. How do I know the names of my fields in the "
|
655 |
+
"$form_data array?"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
659 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:27
|
660 |
+
msgid "How large a PDF are you able to create/process?"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
664 |
+
#: EXTENDED\1) github/view/templates/settings/support-sidebar.php:30
|
665 |
+
#, php-format
|
666 |
+
msgid ""
|
667 |
+
"Got a question that isn't answered above? %sHead to our support forum%s and "
|
668 |
+
"let us know."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
672 |
+
#: EXTENDED\1) github/view/templates/settings/support.php:20
|
673 |
+
msgid "Support"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
677 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:19
|
678 |
+
msgid "System Status"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
682 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:22
|
683 |
+
msgid "Wordpress Version"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
687 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:25
|
688 |
+
msgid "Wordpress Version "
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
692 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:30
|
693 |
+
msgid "Gravity Forms"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
697 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:32
|
698 |
+
msgid "Not Installed"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
702 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:47
|
703 |
+
msgid "PHP Version"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
707 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:50
|
708 |
+
msgid "PHP Version "
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
712 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:54
|
713 |
+
msgid "MB String"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
717 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:54
|
718 |
+
#: github/view/templates/settings/system-status.php:62
|
719 |
+
#: github/view/templates/settings/system-status.php:94
|
720 |
+
#: github/view/templates/settings/system-status.php:101
|
721 |
+
#: github/view/templates/settings/system-status.php:110
|
722 |
+
#: github/view/templates/settings/system-status.php:117
|
723 |
+
#: github/view/templates/settings/system-status.php:124
|
724 |
+
msgid "Yes"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
728 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:54
|
729 |
+
#: github/view/templates/settings/system-status.php:62
|
730 |
+
#: github/view/templates/settings/system-status.php:94
|
731 |
+
#: github/view/templates/settings/system-status.php:101
|
732 |
+
#: github/view/templates/settings/system-status.php:110
|
733 |
+
#: github/view/templates/settings/system-status.php:117
|
734 |
+
#: github/view/templates/settings/system-status.php:124
|
735 |
+
msgid "No"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
739 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:58
|
740 |
+
msgid ""
|
741 |
+
"The PHP extension MB String and MB String Regex functions are required to "
|
742 |
+
"use this plugin. Contact your web host to have it enabled."
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
746 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:62
|
747 |
+
msgid "GD Library"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
751 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:66
|
752 |
+
msgid ""
|
753 |
+
"The PHP extension GD Library is required to use this plugin. Contact your "
|
754 |
+
"web host to have it enabled."
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
758 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:84
|
759 |
+
msgid "Available RAM"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
763 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:87
|
764 |
+
#, php-format
|
765 |
+
msgid ""
|
766 |
+
"We recommend you have 128MB of available RAM to run this plugin. The minimum "
|
767 |
+
"system requirement is 64MB. %sNot sure what this means? Contact your web "
|
768 |
+
"host and ask them to fix the issue. %sNote: If you run less than 128MB, you "
|
769 |
+
"risk PHP suffering a fatal error which will stop your website from running "
|
770 |
+
"on Gravity Form pages."
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
774 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:94
|
775 |
+
msgid "Plugin Directory Writable?"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
779 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:97
|
780 |
+
#, php-format
|
781 |
+
msgid ""
|
782 |
+
"The plugin folder is not writable by your web server. Check the directory "
|
783 |
+
"\"%s\" is writable by your web server otherwise we will attempt to use the "
|
784 |
+
"FTP installer to initialise."
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
788 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:101
|
789 |
+
msgid "Theme Directory Writable?"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
793 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:104
|
794 |
+
#, php-format
|
795 |
+
msgid ""
|
796 |
+
"Your active theme folder is not writable by your web server. Check that \"%s"
|
797 |
+
"\" is writable by your web server otherwise we will attempt to use the FTP "
|
798 |
+
"installer to initialise."
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
802 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:110
|
803 |
+
msgid "PDF Output Directory Writable?"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
807 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:113
|
808 |
+
#, php-format
|
809 |
+
msgid ""
|
810 |
+
"The plugin's output folder is not writable by your web server. PDFs will not "
|
811 |
+
"be attached to notifications until this problem is fixed. Check that \"%s\" "
|
812 |
+
"is writable by your web server."
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
816 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:117
|
817 |
+
msgid "PDF Font Directory Writable?"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
821 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:120
|
822 |
+
#, php-format
|
823 |
+
msgid ""
|
824 |
+
"The plugin's font folder is not writable by your web server. Check that \"%s"
|
825 |
+
"\" is writable by your web server otherwise we will attempt to use the FTP "
|
826 |
+
"installer to initialise."
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
830 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:124
|
831 |
+
msgid "mPDF Temporary Directory Writable?"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
835 |
+
#: EXTENDED\1) github/view/templates/settings/system-status.php:127
|
836 |
+
msgid ""
|
837 |
+
"mPDF temporary directory not writable (mPDF/tmp/). Memory and image "
|
838 |
+
"processing time will increase."
|
839 |
+
msgstr ""
|
languages/pdfextended-fr_FR.mo
ADDED
Binary file
|
languages/{language.po → pdfextended-fr_FR.po}
RENAMED
@@ -1,921 +1,1064 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Gravity Forms PDF Extended\n"
|
4 |
-
"POT-Creation-Date: 2014-06-05 13:39+1000\n"
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
-
"Last-Translator:
|
7 |
-
"Language-Team:
|
8 |
-
"Language:
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
-
"X-Poedit-Basepath: /\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
|
19 |
-
|
20 |
-
#:
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
#:
|
26 |
-
#: repository\tags\3.5.0/helper/api.php:
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
#:
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
#:
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
#:
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
#:
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
#:
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
#:
|
59 |
-
|
60 |
-
|
61 |
-
"
|
62 |
-
"
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#:
|
79 |
-
|
80 |
-
"
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
#:
|
86 |
-
|
87 |
-
msgid ""
|
88 |
-
"Gravity Forms PDF Extended detected a configuration problem. Please
|
89 |
-
"the
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
"
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
"
|
113 |
-
"
|
114 |
-
|
115 |
-
|
116 |
-
#:
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
"
|
121 |
-
"
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
"
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
"
|
146 |
-
"
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
"
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
#:
|
160 |
-
|
161 |
-
msgid ""
|
162 |
-
"
|
163 |
-
"
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
"
|
176 |
-
"
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
"
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
#:
|
194 |
-
#: repository\tags\3.5.0/helper/notices.php:
|
195 |
-
#, php-format
|
196 |
-
msgid "
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
205 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
"
|
218 |
-
|
219 |
-
|
220 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
221 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:
|
222 |
-
msgid "
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
#:
|
238 |
-
#:
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
#:
|
244 |
-
|
245 |
-
msgid ""
|
246 |
-
"
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
#:
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
#:
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
#:
|
289 |
-
#: repository\tags\3.5.0/helper/
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
300 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:
|
301 |
-
msgid "
|
302 |
-
msgstr ""
|
303 |
-
|
304 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
305 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:
|
306 |
-
msgid "
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
310 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:
|
311 |
-
msgid "
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
315 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
#:
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
#:
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
#:
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
#:
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
#:
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
#:
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
"
|
396 |
-
msgstr ""
|
397 |
-
|
398 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
399 |
-
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:
|
400 |
-
msgid ""
|
401 |
-
"
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
#:
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
#:
|
418 |
-
#: repository\tags\3.5.0/
|
419 |
-
msgid "
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
423 |
-
#: EXTENDED\2) WP SVN
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
#:
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
#:
|
438 |
-
#: repository\tags\3.5.0/
|
439 |
-
|
440 |
-
|
441 |
-
"
|
442 |
-
|
443 |
-
"
|
444 |
-
|
445 |
-
|
446 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
447 |
-
#: EXTENDED\2) WP SVN
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
#:
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
#:
|
483 |
-
#:
|
484 |
-
|
485 |
-
|
486 |
-
"
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
"
|
506 |
-
"
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
#:
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
#:
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
#:
|
563 |
-
#:
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
"
|
574 |
-
"
|
575 |
-
|
576 |
-
|
577 |
-
#:
|
578 |
-
#:
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
#:
|
604 |
-
#:
|
605 |
-
|
606 |
-
msgid "
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
"
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
#:
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
"
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
#:
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
#:
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
#:
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
673 |
-
#: EXTENDED\2) WP SVN
|
674 |
-
#: repository\tags\3.5.0/view/templates/settings/
|
675 |
-
msgid "
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
679 |
-
#: EXTENDED\2) WP SVN
|
680 |
-
#: repository\tags\3.5.0/view/templates/settings/
|
681 |
-
msgid "
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
#:
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
#:
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
#:
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
#:
|
720 |
-
#:
|
721 |
-
|
722 |
-
msgid ""
|
723 |
-
"
|
724 |
-
"
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
#:
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
#:
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
#:
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
#:
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
#:
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
#:
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
#:
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
#:
|
784 |
-
#:
|
785 |
-
#: repository\tags\3.5.0/view/templates/settings/
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
#:
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
#:
|
799 |
-
#:
|
800 |
-
#: repository\tags\3.5.0/view/templates/settings/
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
806 |
-
#: EXTENDED\2) WP SVN
|
807 |
-
#: repository\tags\3.5.0/view/templates/settings/
|
808 |
-
msgid ""
|
809 |
-
"
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
#:
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
#:
|
822 |
-
|
823 |
-
|
824 |
-
"
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
828 |
-
#: EXTENDED\2) WP SVN
|
829 |
-
#: repository\tags\3.5.0/view/templates/settings/
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
#:
|
846 |
-
#:
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
#:
|
852 |
-
#:
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
#:
|
863 |
-
#:
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
#:
|
869 |
-
#:
|
870 |
-
|
871 |
-
msgid ""
|
872 |
-
"
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
"
|
891 |
-
|
892 |
-
|
893 |
-
#:
|
894 |
-
#:
|
895 |
-
#: repository\tags\3.5.0/view/templates/settings/system-status.php:
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
#:
|
900 |
-
#:
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
#:
|
910 |
-
#:
|
911 |
-
#: repository\tags\3.5.0/view/templates/settings/system-status.php:
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
#:
|
917 |
-
#:
|
918 |
-
|
919 |
-
|
920 |
-
"
|
921 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Gravity Forms PDF Extended\n"
|
4 |
+
"POT-Creation-Date: 2014-06-05 13:39+1000\n"
|
5 |
+
"PO-Revision-Date: 2014-09-15 00:31-0000\n"
|
6 |
+
"Last-Translator: Marie-Aude Koiransky <contact@lumieredelune.com>\n"
|
7 |
+
"Language-Team: Lumiere de Lune <contact@lumieredelune.com>\n"
|
8 |
+
"Language: fr\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.3\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: /\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
17 |
+
"X-Poedit-SearchPath-0: G:\\Blue Liquid Designs\\4) BLUE LIQUID DESIGNS\\19) "
|
18 |
+
"GRAVITY FORMS PDF EXTENDED\\2) WP SVN repository\\tags\\3.5.0\n"
|
19 |
+
|
20 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
21 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/api.php:142
|
22 |
+
msgid "Bad Request."
|
23 |
+
msgstr "Mauvais requête."
|
24 |
+
|
25 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
26 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/api.php:150
|
27 |
+
#: repository\tags\3.5.0/helper/api.php:261
|
28 |
+
msgid "Unauthorized Access."
|
29 |
+
msgstr "Accès non authorisé."
|
30 |
+
|
31 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
32 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/api.php:172
|
33 |
+
msgid "Method not allowed."
|
34 |
+
msgstr "Méthode non autorisée."
|
35 |
+
|
36 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
37 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/api.php:180
|
38 |
+
msgid "Internal API Error."
|
39 |
+
msgstr "Erreur interne de l'API."
|
40 |
+
|
41 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
42 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/api.php:188
|
43 |
+
msgid "API Unavailable."
|
44 |
+
msgstr "API non disponible."
|
45 |
+
|
46 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
47 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:54
|
48 |
+
#, php-format
|
49 |
+
msgid "%sGravity Forms PDF Extended Automated Installer%s: "
|
50 |
+
msgstr "%sInstallateur automatique de Gravity Forms PDF Extended%s : "
|
51 |
+
|
52 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
53 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:64
|
54 |
+
#, php-format
|
55 |
+
msgid " %sGo to installer%s."
|
56 |
+
msgstr " %sAller à l'installateur%s."
|
57 |
+
|
58 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
59 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:74
|
60 |
+
msgid ""
|
61 |
+
"The font files have been successfully installed. A font can be used by "
|
62 |
+
"adding its file name (without .ttf and in lower case) in a CSS font-family "
|
63 |
+
"declaration."
|
64 |
+
msgstr ""
|
65 |
+
"Les fichiers ont été installés avec succès. Une police de caractère peut "
|
66 |
+
"être utilisée en ajoutant le nom de son fichier (sans l'extension .ttf et en "
|
67 |
+
"minuscule) dans une déclaration CSS font-family."
|
68 |
+
|
69 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
70 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:85
|
71 |
+
msgid ""
|
72 |
+
"There was a problem installing the font files. Check the file permissions in "
|
73 |
+
"the plugin folder and try again."
|
74 |
+
msgstr ""
|
75 |
+
"Il y a eu un problème lors de l'installation des polices de caractères. "
|
76 |
+
"Vérifiez les permissions dans le dossier du plugin et réessayer."
|
77 |
+
|
78 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
79 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:96
|
80 |
+
msgid "Could not create font configuration file. Try initialise again."
|
81 |
+
msgstr ""
|
82 |
+
"Impossible de créer le fichier de configuration. Essayez à nouveau de faire "
|
83 |
+
"l'initialisation."
|
84 |
+
|
85 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
86 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:112
|
87 |
+
msgid ""
|
88 |
+
"Gravity Forms PDF Extended detected a configuration problem. Please "
|
89 |
+
"reinitialise the plugin."
|
90 |
+
msgstr ""
|
91 |
+
"Gravity Forms PDF Extended a détecté un problème de configuration. Merci de "
|
92 |
+
"réinitialiser l'extension."
|
93 |
+
|
94 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
95 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:116
|
96 |
+
#, php-format
|
97 |
+
msgid ""
|
98 |
+
"Gravity Forms PDF Extended detected a configuration problem. Please go to "
|
99 |
+
"the %splugin's settings page%s to reinitialise."
|
100 |
+
msgstr ""
|
101 |
+
"Gravity Forms PDF Extended a détecté un problème de configuration. Merci "
|
102 |
+
"d'aller sur la page des %sréglages de l'extension%s pour la réinitialiser."
|
103 |
+
|
104 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
105 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:133
|
106 |
+
msgid ""
|
107 |
+
"Gravity Forms PDF Extended detected a server compatibility problem which "
|
108 |
+
"prevented the software from running. See the System Status section below for "
|
109 |
+
"details."
|
110 |
+
msgstr ""
|
111 |
+
"Gravity Forms PDF Extended a détecté un problème de compatibilité avec le "
|
112 |
+
"serveur qui empêche l'extension de fonctionner. Regardez la section \"Etat "
|
113 |
+
"du Système\" ci-dessous pour plus de détails."
|
114 |
+
|
115 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
116 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:137
|
117 |
+
#, php-format
|
118 |
+
msgid ""
|
119 |
+
"Gravity Forms PDF Extended detected a server compatibility problem which "
|
120 |
+
"prevented the software from running. Please go to the %splugin's settings "
|
121 |
+
"page%s to view the issue."
|
122 |
+
msgstr ""
|
123 |
+
"Gravity Forms PDF Extended a détecté un problème de compatibilité avec le "
|
124 |
+
"serveur qui empêche l'extension de fonctionner. Merci d'aller sur la page "
|
125 |
+
"des %sréglages de l'extension%s pour voir les détails."
|
126 |
+
|
127 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
128 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:153
|
129 |
+
msgid ""
|
130 |
+
"Welcome to Gravity Forms PDF Extended. Before you can use the plugin "
|
131 |
+
"correctly you need to initilise it."
|
132 |
+
msgstr ""
|
133 |
+
"Bienvenue chez Gravity Forms PDF Extended. Avant d'utiliser l'extension, "
|
134 |
+
"vous devez l'initialiser."
|
135 |
+
|
136 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
137 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:157
|
138 |
+
#, php-format
|
139 |
+
msgid ""
|
140 |
+
"Welcome to Gravity Forms PDF Extended. Before you can use the plugin "
|
141 |
+
"correctly you need to initilise it. Please go to the %splugin's settings page"
|
142 |
+
"%s to initialise."
|
143 |
+
msgstr ""
|
144 |
+
"Bienvenue chez Gravity Forms PDF Extended. Avant d'utiliser l'extension, "
|
145 |
+
"vous devez l'initialiser. Merci d'aller sur la page des %sréglages de "
|
146 |
+
"l'extension%s pour l'initialisation."
|
147 |
+
|
148 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
149 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:169
|
150 |
+
#, php-format
|
151 |
+
msgid ""
|
152 |
+
"Gravity Forms PDF Extended only works with Gravity Forms version %s and "
|
153 |
+
"higher. Please %supgrade your copy of Gravity Forms%s to use this plugin."
|
154 |
+
msgstr ""
|
155 |
+
"Gravity Forms PDF Extended a besoin de Gravity Forms (version %s et "
|
156 |
+
"supérieures). Merci de %smettre votre version de Gravity Forms à jour%s pour "
|
157 |
+
"utiliser l'extension. "
|
158 |
+
|
159 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
160 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:183
|
161 |
+
msgid ""
|
162 |
+
"We could not create a template folder in your active theme's directory. "
|
163 |
+
"Please ensure your active theme directory is writable by your web server and "
|
164 |
+
"try again."
|
165 |
+
msgstr ""
|
166 |
+
"Nous n'avons pas pu créer un dossier de modèles dans le répertoire de votre "
|
167 |
+
"thème actif. Merci de vérifier qu'il est accessible en écriture par le "
|
168 |
+
"serveur web et de réessayer."
|
169 |
+
|
170 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
171 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:198
|
172 |
+
#, php-format
|
173 |
+
msgid ""
|
174 |
+
"We could not remove the default template files from the Gravity Forms PDF "
|
175 |
+
"Extended folder in your active theme's directory. Please ensure %s is "
|
176 |
+
"wriable by your web server and try again."
|
177 |
+
msgstr ""
|
178 |
+
"Nous n'avons pas pu supprimer les modèles par défaut du répertoire Gravity "
|
179 |
+
"Forms PDF Extended dans le répertoire de votre thème actif. Merci de "
|
180 |
+
"vérifier qu'%s est accessible en écriture pour le serveur et de réessayer."
|
181 |
+
|
182 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
183 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:211
|
184 |
+
#, php-format
|
185 |
+
msgid ""
|
186 |
+
"We could not move the template files to the PDF_EXTENDED_TEMPLATES folder. "
|
187 |
+
"Please ensure %s is wriable by your web server and try again."
|
188 |
+
msgstr ""
|
189 |
+
"Nous n'avons pas pu déplacer les modèles vers le répertoire "
|
190 |
+
"PDF_EXTENDED_TEMPLATES. Merci de vérifier que %s est accessible en écriture "
|
191 |
+
"pour le serveur et de vérifier."
|
192 |
+
|
193 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
194 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:229
|
195 |
+
#, php-format
|
196 |
+
msgid ""
|
197 |
+
"Gravity Forms PDF Extended needs to keep your configuration and templates "
|
198 |
+
"folder in sync with your current active theme. %sSync Now%s"
|
199 |
+
msgstr ""
|
200 |
+
"Gravity Forms PDF Extended a besoin de synchroniser votre configuration et "
|
201 |
+
"votre répertoire de modèles avec votre thème actif. %sSynchroniser maintenant"
|
202 |
+
"%s"
|
203 |
+
|
204 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
205 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:238
|
206 |
+
#, php-format
|
207 |
+
msgid "%sGravity Forms PDF Extended Automated Theme Sync%s: "
|
208 |
+
msgstr ""
|
209 |
+
"%sSynchronisation automatique des thèmes avec Gravity Forms PDF Extended%s : "
|
210 |
+
|
211 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
212 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:240
|
213 |
+
msgid ""
|
214 |
+
"Your PDF configuration and template folder was successfully synced to your "
|
215 |
+
"new theme."
|
216 |
+
msgstr ""
|
217 |
+
"Votre configuration PDF et votre dossier de modèle a été transféré avec "
|
218 |
+
"succès vers votre nouveau thème."
|
219 |
+
|
220 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
221 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:252
|
222 |
+
msgid ""
|
223 |
+
"Gravity Forms PDF Extended Auto Initialisation Complete across the entire "
|
224 |
+
"network."
|
225 |
+
msgstr ""
|
226 |
+
"Initialisation automatique de Gravity Forms Extended terminée sur la "
|
227 |
+
"totalité du réseau."
|
228 |
+
|
229 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
230 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:256
|
231 |
+
msgid ""
|
232 |
+
"Gravity Forms PDF Extended Initialisation Complete across the entire network."
|
233 |
+
msgstr ""
|
234 |
+
"Initialisation de Gravity Forms Extended terminée sur la totalité du réseau."
|
235 |
+
|
236 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
237 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:261
|
238 |
+
#: repository\tags\3.5.0/helper/notices.php:273
|
239 |
+
#, php-format
|
240 |
+
msgid "%sLearn how to configuring the plugin%s."
|
241 |
+
msgstr "%sDécouvrez comment configurer cette extension%s."
|
242 |
+
|
243 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
244 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:269
|
245 |
+
msgid "Gravity Forms PDF Extended Auto Initialisation Complete."
|
246 |
+
msgstr "Initialisation automatique de Gravity Forms Extended terminée."
|
247 |
+
|
248 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
249 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:287
|
250 |
+
msgid "There was a network initialisation issue on the following sites;"
|
251 |
+
msgstr "Il y a eu un problème d'initialisation avec les sites suivants :"
|
252 |
+
|
253 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
254 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:300
|
255 |
+
msgid "Please try manually initialise the software"
|
256 |
+
msgstr "Essayez d'initialiser l'extension manuellement"
|
257 |
+
|
258 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
259 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:304
|
260 |
+
msgid ""
|
261 |
+
"An unknown network initialisation error occured. Please try initialise again."
|
262 |
+
msgstr ""
|
263 |
+
"Une erreur inconnue est survenue lors de l'initialisation. Merci de "
|
264 |
+
"réessayer."
|
265 |
+
|
266 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
267 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:311
|
268 |
+
msgid "You've successfully initialised Gravity Forms PDF Extended."
|
269 |
+
msgstr "Vous avez bien réussi à initialiser Gravity Forms PDF Extended."
|
270 |
+
|
271 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
272 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:318
|
273 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:34
|
274 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:41
|
275 |
+
msgid "Gravity Forms "
|
276 |
+
msgstr "Gravity Forms "
|
277 |
+
|
278 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
279 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:324
|
280 |
+
msgid "Wordpress "
|
281 |
+
msgstr "Wordpress "
|
282 |
+
|
283 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
284 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:336
|
285 |
+
msgid "PHP "
|
286 |
+
msgstr "PHP "
|
287 |
+
|
288 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
289 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/notices.php:342
|
290 |
+
#, php-format
|
291 |
+
msgid ""
|
292 |
+
"If you reinitialise and enable this option %syou will overwrite%s the "
|
293 |
+
"default and example template files in your active theme directory."
|
294 |
+
msgstr ""
|
295 |
+
"Si vous réinitialisez et activer cette option, %svous allez remplacer%s les "
|
296 |
+
"fichier de modèles par défaut et exemple dans le répertoire de votre thème "
|
297 |
+
"actif."
|
298 |
+
|
299 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
300 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:240
|
301 |
+
msgid "Order"
|
302 |
+
msgstr "Commander"
|
303 |
+
|
304 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
305 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:251
|
306 |
+
msgid "Product"
|
307 |
+
msgstr "Produit"
|
308 |
+
|
309 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
310 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:252
|
311 |
+
msgid "Qty"
|
312 |
+
msgstr "Qté"
|
313 |
+
|
314 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
315 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:253
|
316 |
+
msgid "Unit Price"
|
317 |
+
msgstr "Prix unitaire"
|
318 |
+
|
319 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
320 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:254
|
321 |
+
msgid "Price"
|
322 |
+
msgstr "PRix"
|
323 |
+
|
324 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
325 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:317
|
326 |
+
msgid "Total"
|
327 |
+
msgstr "Total"
|
328 |
+
|
329 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
330 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:927
|
331 |
+
msgid ""
|
332 |
+
"Activate Gravity Forms Quiz Add On to see global quiz statistics for this "
|
333 |
+
"form"
|
334 |
+
msgstr ""
|
335 |
+
"Activez Gravity Forms Quiz Add On pour voir les statistiqies globales du "
|
336 |
+
"quiz pour ce formulaire"
|
337 |
+
|
338 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
339 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:1340
|
340 |
+
#: repository\tags\3.5.0/helper/pdf-entry-detail.php:1705
|
341 |
+
msgid "Qty: "
|
342 |
+
msgstr "Qté : "
|
343 |
+
|
344 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
345 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:1340
|
346 |
+
#: repository\tags\3.5.0/helper/pdf-entry-detail.php:1705
|
347 |
+
msgid "Price: "
|
348 |
+
msgstr "Prix : "
|
349 |
+
|
350 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
351 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:1639
|
352 |
+
msgid "Title"
|
353 |
+
msgstr "Titre"
|
354 |
+
|
355 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
356 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:1640
|
357 |
+
msgid "Caption"
|
358 |
+
msgstr "Légende"
|
359 |
+
|
360 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
361 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:1641
|
362 |
+
msgid "Description"
|
363 |
+
msgstr "Description"
|
364 |
+
|
365 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
366 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/helper/pdf-entry-detail.php:1646
|
367 |
+
#: repository\tags\3.5.0/helper/pdf-entry-detail.php:1665
|
368 |
+
msgid "Click to view"
|
369 |
+
msgstr "Cliquer pour voir"
|
370 |
+
|
371 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
372 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/pdf.php:127
|
373 |
+
#: repository\tags\3.5.0/model/pdf.php:142
|
374 |
+
msgid "View"
|
375 |
+
msgstr "Voir"
|
376 |
+
|
377 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
378 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/pdf.php:128
|
379 |
+
#: repository\tags\3.5.0/model/pdf.php:143
|
380 |
+
msgid "Download"
|
381 |
+
msgstr "Télécharger"
|
382 |
+
|
383 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
384 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/pdf.php:142
|
385 |
+
msgid "PDF"
|
386 |
+
msgstr "PDF"
|
387 |
+
|
388 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
389 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/pdf.php:182
|
390 |
+
msgid "View PDFs"
|
391 |
+
msgstr "Voir les PDFs"
|
392 |
+
|
393 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
394 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/pdf.php:213
|
395 |
+
msgid "View PDF"
|
396 |
+
msgstr "Voir le PDF"
|
397 |
+
|
398 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
399 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:355
|
400 |
+
msgid "Plugin not yet initialised"
|
401 |
+
msgstr "L'extension n'est pas encore initialisée"
|
402 |
+
|
403 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
404 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:410
|
405 |
+
msgid ""
|
406 |
+
"There was a problem with your submission. Please reload the page and try "
|
407 |
+
"again"
|
408 |
+
msgstr ""
|
409 |
+
"Il y a eu un problème avec votre soumission. Merci de recharger la page et "
|
410 |
+
"de réessayer"
|
411 |
+
|
412 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
413 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:427
|
414 |
+
msgid "Please enter a valid email address"
|
415 |
+
msgstr "Merci de saisir une adresse email valide"
|
416 |
+
|
417 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
418 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:430
|
419 |
+
msgid "Problem"
|
420 |
+
msgstr "Problème"
|
421 |
+
|
422 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
423 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:430
|
424 |
+
msgid "Question"
|
425 |
+
msgstr "Question"
|
426 |
+
|
427 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
428 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:430
|
429 |
+
msgid "Suggestion"
|
430 |
+
msgstr "Suggestion"
|
431 |
+
|
432 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
433 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:434
|
434 |
+
msgid "Please select a valid support type."
|
435 |
+
msgstr "Merci de choisir un type de support valide."
|
436 |
+
|
437 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
438 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:439
|
439 |
+
msgid ""
|
440 |
+
"Please enter information about your support query so we can aid you more "
|
441 |
+
"easily."
|
442 |
+
msgstr ""
|
443 |
+
"Merci d'entrer l'information nécessaire à votre requête pour que nous "
|
444 |
+
"puissions vous aider plus facilement."
|
445 |
+
|
446 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
447 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:444
|
448 |
+
msgid ""
|
449 |
+
"There is a problem with your support request. Please correct the marked "
|
450 |
+
"issues above."
|
451 |
+
msgstr ""
|
452 |
+
"Il y a un problème avec votre demande de support. Merci de corriger les "
|
453 |
+
"problèmes indiqués ci-dessus."
|
454 |
+
|
455 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
456 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:454
|
457 |
+
msgid ""
|
458 |
+
"Thank you for your support request. We'll respond to your request in the "
|
459 |
+
"next 24-48 hours."
|
460 |
+
msgstr ""
|
461 |
+
"Merci pour votre demande de support. Nous répondrons à votre demande dans "
|
462 |
+
"les prochaines 24 à 48 heures."
|
463 |
+
|
464 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
465 |
+
#: EXTENDED\2) WP SVN repository\tags\3.5.0/model/settings.php:512
|
466 |
+
msgid "Support request received. We will responed in 24 to 48 hours."
|
467 |
+
msgstr ""
|
468 |
+
"Demande de support reçue. Nous répondrons dans les prochaines 24 à 48 heures."
|
469 |
+
|
470 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
471 |
+
#: EXTENDED\2) WP SVN
|
472 |
+
#: repository\tags\3.5.0/view/templates/settings/changelog.php:19
|
473 |
+
msgid "Changelog"
|
474 |
+
msgstr "Changelog"
|
475 |
+
|
476 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
477 |
+
#: EXTENDED\2) WP SVN
|
478 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation-tab.php:41
|
479 |
+
msgid "Gravity Forms PDF Extended"
|
480 |
+
msgstr "Gravity Forms PDF Extended"
|
481 |
+
|
482 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
483 |
+
#: EXTENDED\2) WP SVN
|
484 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation-tab.php:42
|
485 |
+
msgid ""
|
486 |
+
"Your web server isn't compatible with Gravity Forms PDF Extended. Please see "
|
487 |
+
"the problem areas below."
|
488 |
+
msgstr ""
|
489 |
+
"Votre serveur web n'est pas compatible avec Gravity Forms PDF Extended.. "
|
490 |
+
"Merci de résoudre les problèmes ci-dessous."
|
491 |
+
|
492 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
493 |
+
#: EXTENDED\2) WP SVN
|
494 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation-tab.php:52
|
495 |
+
msgid "Can't Resolve the Issue?"
|
496 |
+
msgstr "Impossible de résoudre le problème ?"
|
497 |
+
|
498 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
499 |
+
#: EXTENDED\2) WP SVN
|
500 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation-tab.php:53
|
501 |
+
#, php-format
|
502 |
+
msgid ""
|
503 |
+
"Does Gravity Forms PDF Extended detect a problem that your web host won't "
|
504 |
+
"fix? %sWe recommend you move to a quality web hosting service like WP Engine"
|
505 |
+
"%s which runs our software straight out of the box."
|
506 |
+
msgstr ""
|
507 |
+
"Est-ce que Gravity Forms PDF Extended détecte un problème que votre "
|
508 |
+
"hébergeur ne peut pas résoudre ? %sNous vous recommandons de changer pour un "
|
509 |
+
"service d'hébergement de qualité comme WP Engine%s qui peut faire tourner "
|
510 |
+
"notre extension sans aucun problème."
|
511 |
+
|
512 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
513 |
+
#: EXTENDED\2) WP SVN
|
514 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:19
|
515 |
+
msgid "Welcome to Gravity Forms PDF Extended"
|
516 |
+
msgstr "Bienvenue dans Gravity Forms PDF Extended"
|
517 |
+
|
518 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
519 |
+
#: EXTENDED\2) WP SVN
|
520 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:19
|
521 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:66
|
522 |
+
msgid "Initialise Plugin"
|
523 |
+
msgstr "Initiailiser l'extension"
|
524 |
+
|
525 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
526 |
+
#: EXTENDED\2) WP SVN
|
527 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:23
|
528 |
+
msgid ""
|
529 |
+
"The plugin has successfully installed and is ready to start automating your "
|
530 |
+
"documents."
|
531 |
+
msgstr ""
|
532 |
+
"L'extension a été installée avec succès, elle est prête à commencer à "
|
533 |
+
"automatiser vos documents."
|
534 |
+
|
535 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
536 |
+
#: EXTENDED\2) WP SVN
|
537 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:25
|
538 |
+
msgid "What's next?"
|
539 |
+
msgstr "Et maintenant ?"
|
540 |
+
|
541 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
542 |
+
#: EXTENDED\2) WP SVN
|
543 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:26
|
544 |
+
msgid ""
|
545 |
+
"The next step is to correctly configured the plugin so that you can generate "
|
546 |
+
"PDF documents."
|
547 |
+
msgstr ""
|
548 |
+
"La prochaine étape est la configuration correcte de l'extension, afin de "
|
549 |
+
"pouvoir générer des documents PDF."
|
550 |
+
|
551 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
552 |
+
#: EXTENDED\2) WP SVN
|
553 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:27
|
554 |
+
msgid ""
|
555 |
+
"To help you get started, we've put together a five-part video series with "
|
556 |
+
"the most common plugin configurations."
|
557 |
+
msgstr ""
|
558 |
+
"Pour vous aider à démarrer, nous avons mis en ligne un tutoriel en cinq "
|
559 |
+
"vidéos (en anglais) avec les configurations les plus courantes de "
|
560 |
+
"l'extension."
|
561 |
+
|
562 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
563 |
+
#: EXTENDED\2) WP SVN
|
564 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:29
|
565 |
+
msgid "The Basics: Only Download PDF through the Admin Area"
|
566 |
+
msgstr ""
|
567 |
+
"La base : le téléchargement des PDF se fait seulement à partir de "
|
568 |
+
"l'administration"
|
569 |
+
|
570 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
571 |
+
#: EXTENDED\2) WP SVN
|
572 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:30
|
573 |
+
msgid "The Email: Send Completed PDF via Email"
|
574 |
+
msgstr "L'email : l'envoi du PDF terminé par mail"
|
575 |
+
|
576 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
577 |
+
#: EXTENDED\2) WP SVN
|
578 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:31
|
579 |
+
msgid ""
|
580 |
+
"The Download: User Downloads PDF after Submitting Form (using a link or auto "
|
581 |
+
"redirecting)"
|
582 |
+
msgstr ""
|
583 |
+
"Le téléchargement : l'utilisateur peut télécharger le PDF après avoir soumis "
|
584 |
+
"un formulaire (en utilisant un lien ou via la redirection)"
|
585 |
+
|
586 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
587 |
+
#: EXTENDED\2) WP SVN
|
588 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:32
|
589 |
+
msgid "The Email Advanced: Manually Review User Submission before Emailing PDF"
|
590 |
+
msgstr ""
|
591 |
+
"Les fonctionnalités avancées de l'email : vérification manuelle des données "
|
592 |
+
"soumises par l'utilisateur avant d'envoyer le PDF par mail"
|
593 |
+
|
594 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
595 |
+
#: EXTENDED\2) WP SVN
|
596 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:33
|
597 |
+
msgid "The Payment: Send PDF after Capturing Payment using Paypal Standard"
|
598 |
+
msgstr ""
|
599 |
+
"Le paiement : l'envoir du PDF après la réception du paiement via Paypal "
|
600 |
+
"Standard"
|
601 |
+
|
602 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
603 |
+
#: EXTENDED\2) WP SVN
|
604 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:36
|
605 |
+
#, php-format
|
606 |
+
msgid ""
|
607 |
+
"If you know little about PHP we recommend starting with %sPart 1:The Basics"
|
608 |
+
"%s and then watching the tutorial you’re interested in. It will give you the "
|
609 |
+
"foundational skills you need to configure the software."
|
610 |
+
msgstr ""
|
611 |
+
"Si vous n'avez pas beaucoup de connaissances en PHP, nous vous recommandons "
|
612 |
+
"de commencer par la %svidéo n°1 : La base%s et ensuite de choisir le "
|
613 |
+
"tutoriel qui vous intéresse. Elle vous donnera les connaissances de base "
|
614 |
+
"dont vous avez besoin pour configurer l'extension. "
|
615 |
+
|
616 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
617 |
+
#: EXTENDED\2) WP SVN
|
618 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:38
|
619 |
+
msgid "Custom Templates"
|
620 |
+
msgstr "Modèles personnalisés"
|
621 |
+
|
622 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
623 |
+
#: EXTENDED\2) WP SVN
|
624 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:39
|
625 |
+
#, php-format
|
626 |
+
msgid ""
|
627 |
+
"Creating a custom template gives you ultimate control of the look and feel "
|
628 |
+
"of your documents using only HTML and CSS. %sWe recommend you review our "
|
629 |
+
"online documentation%s to create and customise your template files."
|
630 |
+
msgstr ""
|
631 |
+
"La création d'un template personnalisé vous donne un contrôle complet de "
|
632 |
+
"l'apparence de votre document en utilisant seulement HTML et le CSS. %sNous "
|
633 |
+
"vous recommandons de regarder la documentation en ligne (en anglais)%s pour "
|
634 |
+
"savoir comment créer et personnaliser vos fichiers de modèles."
|
635 |
+
|
636 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
637 |
+
#: EXTENDED\2) WP SVN
|
638 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:45
|
639 |
+
msgid ""
|
640 |
+
"To complete the installation, Gravity Forms PDF Extended needs to be "
|
641 |
+
"initialised."
|
642 |
+
msgstr ""
|
643 |
+
"Pour terminer l'installation, Gravity Forms PDF Extended doit être "
|
644 |
+
"initialisé."
|
645 |
+
|
646 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
647 |
+
#: EXTENDED\2) WP SVN
|
648 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:47
|
649 |
+
msgid "Does does initialisation do?"
|
650 |
+
msgstr "Que fait l'initialisation ?"
|
651 |
+
|
652 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
653 |
+
#: EXTENDED\2) WP SVN
|
654 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:50
|
655 |
+
msgid "Install the template files"
|
656 |
+
msgstr "Installation des fichiers de modèles"
|
657 |
+
|
658 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
659 |
+
#: EXTENDED\2) WP SVN
|
660 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:50
|
661 |
+
msgid ""
|
662 |
+
"We create a folder called PDF_EXTENDED_TEMPLATE in your active theme "
|
663 |
+
"directory and move over all the templates and configuration files. This "
|
664 |
+
"folder is where you'll look to configure the software and create your PDF "
|
665 |
+
"templates."
|
666 |
+
msgstr ""
|
667 |
+
"Nous créons un dossier appelé PDF_EXTENDED_TEMPLATE dans le répertoire de "
|
668 |
+
"votre thème et déplaçons tous les templates et les fichiers de "
|
669 |
+
"configuration. Ce dossier est là où vous trouverez les éléments pour "
|
670 |
+
"configurer l'extension et créer vos modèles PDF. "
|
671 |
+
|
672 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
673 |
+
#: EXTENDED\2) WP SVN
|
674 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:62
|
675 |
+
msgid "Have a problem with the software?"
|
676 |
+
msgstr "Avez-vous un problème avec l'extension ?"
|
677 |
+
|
678 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
679 |
+
#: EXTENDED\2) WP SVN
|
680 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:63
|
681 |
+
msgid ""
|
682 |
+
"Did you switch themes and something went wrong syncing the template folder? "
|
683 |
+
"Try reinitialise the software."
|
684 |
+
msgstr ""
|
685 |
+
"Avez-vous changé de thèmes et que quelque chose s'est mal passé pendant la "
|
686 |
+
"synchronisation du dossier de modèles ? Essayez de réinitialiser l'extension."
|
687 |
+
|
688 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
689 |
+
#: EXTENDED\2) WP SVN
|
690 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:66
|
691 |
+
msgid "Reinitialise Plugin"
|
692 |
+
msgstr "Réinitialisation de l'extension"
|
693 |
+
|
694 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
695 |
+
#: EXTENDED\2) WP SVN
|
696 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:68
|
697 |
+
msgid "Reinstall Default and Example Templates"
|
698 |
+
msgstr "Réinstallation des modèles par défaut et des exemples"
|
699 |
+
|
700 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
701 |
+
#: EXTENDED\2) WP SVN
|
702 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:74
|
703 |
+
msgid "Install a new font?"
|
704 |
+
msgstr "Installer une nouvelle police ?"
|
705 |
+
|
706 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
707 |
+
#: EXTENDED\2) WP SVN
|
708 |
+
#: repository\tags\3.5.0/view/templates/settings/initialisation.php:75
|
709 |
+
#, php-format
|
710 |
+
msgid ""
|
711 |
+
"Do you want to use a custom font in your template? %sSee our documentation "
|
712 |
+
"on how to correctly install and use a custom font%s before initialising "
|
713 |
+
"below."
|
714 |
+
msgstr ""
|
715 |
+
"Voulez-vous utiliser une police personnalisée dans votre modèle ? %sRegardez "
|
716 |
+
"dans notre documentation (en) comment installer correctement et utiliser une "
|
717 |
+
"police personnalisée%s avant de faire l'installation ci-dessous."
|
718 |
+
|
719 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
720 |
+
#: EXTENDED\2) WP SVN
|
721 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:26
|
722 |
+
msgid ""
|
723 |
+
"Gravity Forms PDF Extended's support hours are from 9:00am-5:00pm Monday to "
|
724 |
+
"Friday, Sydney Australia time."
|
725 |
+
msgstr ""
|
726 |
+
"Les heures de disponibilité du service de Gravity Forms PDF Extended sont de "
|
727 |
+
"9:00 à 17:00 du Lundi au Vendredi, heure de Sydney (Australie)."
|
728 |
+
|
729 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
730 |
+
#: EXTENDED\2) WP SVN
|
731 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:29
|
732 |
+
#, php-format
|
733 |
+
msgid "The current time in Sydney Australia is %s."
|
734 |
+
msgstr "En ce moment, à Sydney en Australie, il est %s."
|
735 |
+
|
736 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
737 |
+
#: EXTENDED\2) WP SVN
|
738 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:55
|
739 |
+
msgid "Enter the email address you want us to contact you on."
|
740 |
+
msgstr ""
|
741 |
+
"Saisir l'adresse email à laquelle vous voulez que nous vous contactions."
|
742 |
+
|
743 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
744 |
+
#: EXTENDED\2) WP SVN
|
745 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:56
|
746 |
+
msgid ""
|
747 |
+
"Note: To ensure the best support possible, please use the above email to "
|
748 |
+
"respond to all support communications."
|
749 |
+
msgstr ""
|
750 |
+
"NB : pour assurer le meilleur support possible, merci d'utiliser l'email ci-"
|
751 |
+
"dessus pour toutes les réponses au support."
|
752 |
+
|
753 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
754 |
+
#: EXTENDED\2) WP SVN
|
755 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:92
|
756 |
+
msgid "Enter as much detail about the problem as you can."
|
757 |
+
msgstr "Donnez autant de détails que possible sur le problème."
|
758 |
+
|
759 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
760 |
+
#: EXTENDED\2) WP SVN
|
761 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:93
|
762 |
+
msgid "Please enter as much detail about the problem as you can."
|
763 |
+
msgstr "Merci de donner autant de détails que possible sur le problème."
|
764 |
+
|
765 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
766 |
+
#: EXTENDED\2) WP SVN
|
767 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:94
|
768 |
+
msgid "Note: Our support representatives can only communicate in English."
|
769 |
+
msgstr "NB : notre support communique uniquement en anglais."
|
770 |
+
|
771 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
772 |
+
#: EXTENDED\2) WP SVN
|
773 |
+
#: repository\tags\3.5.0/view/templates/settings/support-form.php:97
|
774 |
+
msgid "Request Support"
|
775 |
+
msgstr "Envoyer au support"
|
776 |
+
|
777 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
778 |
+
#: EXTENDED\2) WP SVN
|
779 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:20
|
780 |
+
msgid "Frequently Asked Questions"
|
781 |
+
msgstr "F.A.Q."
|
782 |
+
|
783 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
784 |
+
#: EXTENDED\2) WP SVN
|
785 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:22
|
786 |
+
msgid "Can I exclude a field from showing up in the PDF?"
|
787 |
+
msgstr "Puis-je empêcher un champ d'apparaitre dans le PDF ?"
|
788 |
+
|
789 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
790 |
+
#: EXTENDED\2) WP SVN
|
791 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:23
|
792 |
+
msgid ""
|
793 |
+
"I want to have multiple PDF template files generated on one form. How do I "
|
794 |
+
"do it?"
|
795 |
+
msgstr ""
|
796 |
+
"Je veux avoir plusieurs modèles PDF pour un formulaire. Comment faire ?"
|
797 |
+
|
798 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
799 |
+
#: EXTENDED\2) WP SVN
|
800 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:24
|
801 |
+
msgid "I want users to be able to download the PDF from the server."
|
802 |
+
msgstr ""
|
803 |
+
"Je veux que les utilisateurs puissent télécharger le PDF à partir du serveur."
|
804 |
+
|
805 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
806 |
+
#: EXTENDED\2) WP SVN
|
807 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:25
|
808 |
+
msgid "How do I change the PDF size or create a landscape PDF?"
|
809 |
+
msgstr "Comment changer la taille du PDF ou créer un PDF en mode paysage ?"
|
810 |
+
|
811 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
812 |
+
#: EXTENDED\2) WP SVN
|
813 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:26
|
814 |
+
msgid ""
|
815 |
+
"I am created a custom template. How do I know the names of my fields in the "
|
816 |
+
"$form_data array?"
|
817 |
+
msgstr ""
|
818 |
+
"Je crée un modèle personnalisé. Comment savoir quels sont les noms de mes "
|
819 |
+
"champs dans $form_data array ?"
|
820 |
+
|
821 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
822 |
+
#: EXTENDED\2) WP SVN
|
823 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:27
|
824 |
+
msgid "How large a PDF are you able to create/process?"
|
825 |
+
msgstr "Quelle est la taille maximum de PDF que vous pouvez créer / traiter ?"
|
826 |
+
|
827 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
828 |
+
#: EXTENDED\2) WP SVN
|
829 |
+
#: repository\tags\3.5.0/view/templates/settings/support-sidebar.php:30
|
830 |
+
#, php-format
|
831 |
+
msgid ""
|
832 |
+
"Got a question that isn't answered above? %sHead to our support forum%s and "
|
833 |
+
"let us know."
|
834 |
+
msgstr ""
|
835 |
+
"Une question pour laquelle il n'y a pas de réponse ? %sAllez la poser sur "
|
836 |
+
"notre forum de support (en)%s."
|
837 |
+
|
838 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
839 |
+
#: EXTENDED\2) WP SVN
|
840 |
+
#: repository\tags\3.5.0/view/templates/settings/support.php:20
|
841 |
+
msgid "Support"
|
842 |
+
msgstr "Support"
|
843 |
+
|
844 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
845 |
+
#: EXTENDED\2) WP SVN
|
846 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:19
|
847 |
+
msgid "System Status"
|
848 |
+
msgstr "Statut du système"
|
849 |
+
|
850 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
851 |
+
#: EXTENDED\2) WP SVN
|
852 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:22
|
853 |
+
msgid "Wordpress Version"
|
854 |
+
msgstr "Version de WordPress"
|
855 |
+
|
856 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
857 |
+
#: EXTENDED\2) WP SVN
|
858 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:25
|
859 |
+
msgid "Wordpress Version "
|
860 |
+
msgstr "Version de Wordpress "
|
861 |
+
|
862 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
863 |
+
#: EXTENDED\2) WP SVN
|
864 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:30
|
865 |
+
msgid "Gravity Forms"
|
866 |
+
msgstr "Gravity Forms"
|
867 |
+
|
868 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
869 |
+
#: EXTENDED\2) WP SVN
|
870 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:32
|
871 |
+
msgid "Not Installed"
|
872 |
+
msgstr "Pas installé"
|
873 |
+
|
874 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
875 |
+
#: EXTENDED\2) WP SVN
|
876 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:47
|
877 |
+
msgid "PHP Version"
|
878 |
+
msgstr " Version de PHP"
|
879 |
+
|
880 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
881 |
+
#: EXTENDED\2) WP SVN
|
882 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:50
|
883 |
+
msgid "PHP Version "
|
884 |
+
msgstr "Version de PHP "
|
885 |
+
|
886 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
887 |
+
#: EXTENDED\2) WP SVN
|
888 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:54
|
889 |
+
msgid "MB String"
|
890 |
+
msgstr "MB String"
|
891 |
+
|
892 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
893 |
+
#: EXTENDED\2) WP SVN
|
894 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:54
|
895 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:62
|
896 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:94
|
897 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:101
|
898 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:110
|
899 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:117
|
900 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:124
|
901 |
+
msgid "Yes"
|
902 |
+
msgstr "Oui"
|
903 |
+
|
904 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
905 |
+
#: EXTENDED\2) WP SVN
|
906 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:54
|
907 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:62
|
908 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:94
|
909 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:101
|
910 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:110
|
911 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:117
|
912 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:124
|
913 |
+
msgid "No"
|
914 |
+
msgstr "Non"
|
915 |
+
|
916 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
917 |
+
#: EXTENDED\2) WP SVN
|
918 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:58
|
919 |
+
msgid ""
|
920 |
+
"The PHP extension MB String and MB String Regex functions are required to "
|
921 |
+
"use this plugin. Contact your web host to have it enabled."
|
922 |
+
msgstr ""
|
923 |
+
"L'extension PHP MB String et les fonctions MB String Regex sont nécessaires "
|
924 |
+
"pour utiliser cette extension. Contactez votre hébergeur pour les faire "
|
925 |
+
"activer."
|
926 |
+
|
927 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
928 |
+
#: EXTENDED\2) WP SVN
|
929 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:62
|
930 |
+
msgid "GD Library"
|
931 |
+
msgstr "GD Library"
|
932 |
+
|
933 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
934 |
+
#: EXTENDED\2) WP SVN
|
935 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:66
|
936 |
+
msgid ""
|
937 |
+
"The PHP extension GD Library is required to use this plugin. Contact your "
|
938 |
+
"web host to have it enabled."
|
939 |
+
msgstr ""
|
940 |
+
"L'extension PHP GD Librairy est nécessaire pour utiliser cette extension. "
|
941 |
+
"Contactez votre hébergeur pour la faire activer."
|
942 |
+
|
943 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
944 |
+
#: EXTENDED\2) WP SVN
|
945 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:84
|
946 |
+
msgid "Available RAM"
|
947 |
+
msgstr "RAM disponible"
|
948 |
+
|
949 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
950 |
+
#: EXTENDED\2) WP SVN
|
951 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:87
|
952 |
+
#, php-format
|
953 |
+
msgid ""
|
954 |
+
"We recommend you have 128MB of available RAM to run this plugin. The minimum "
|
955 |
+
"system requirement is 64MB. %sNot sure what this means? Contact your web "
|
956 |
+
"host and ask them to fix the issue. %sNote: If you run less than 128MB, you "
|
957 |
+
"risk PHP suffering a fatal error which will stop your website from running "
|
958 |
+
"on Gravity Form pages."
|
959 |
+
msgstr ""
|
960 |
+
"Nous vous recommandons une mémoire RAM disponible de 128MB pour faire "
|
961 |
+
"tourner cette extension. Le niveau minimum est de 64MB. %sVous n'êtes pas "
|
962 |
+
"sûr de ce que cela signifie ? Contactez votre hébergeur et demandez leur de "
|
963 |
+
"résoudre cela. %sNB : si vous avez moins de 128MB, vous risquez des erreurs "
|
964 |
+
"fatales de PHP qui empêcheront votre site de fonctionner sur les pages avec "
|
965 |
+
"des formulaires Gravity Forms."
|
966 |
+
|
967 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
968 |
+
#: EXTENDED\2) WP SVN
|
969 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:94
|
970 |
+
msgid "Plugin Directory Writable?"
|
971 |
+
msgstr "Répertoire des extensions accessible en écriture ?"
|
972 |
+
|
973 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
974 |
+
#: EXTENDED\2) WP SVN
|
975 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:97
|
976 |
+
#, php-format
|
977 |
+
msgid ""
|
978 |
+
"The plugin folder is not writable by your web server. Check the directory "
|
979 |
+
"\"%s\" is writable by your web server otherwise we will attempt to use the "
|
980 |
+
"FTP installer to initialise."
|
981 |
+
msgstr ""
|
982 |
+
"Le dossier de l'extension n'est pas accessible en écriture par le serveur. "
|
983 |
+
"Vérifiez que le répertoire \"%s\" est accessible en écriture, ou bien nous "
|
984 |
+
"essayerons d'utiliser l'installateur FTP pour l'initialisation. "
|
985 |
+
|
986 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
987 |
+
#: EXTENDED\2) WP SVN
|
988 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:101
|
989 |
+
msgid "Theme Directory Writable?"
|
990 |
+
msgstr "Répertoire des thèmes accessible en écriture ?"
|
991 |
+
|
992 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
993 |
+
#: EXTENDED\2) WP SVN
|
994 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:104
|
995 |
+
#, php-format
|
996 |
+
msgid ""
|
997 |
+
"Your active theme folder is not writable by your web server. Check that \"%s"
|
998 |
+
"\" is writable by your web server otherwise we will attempt to use the FTP "
|
999 |
+
"installer to initialise."
|
1000 |
+
msgstr ""
|
1001 |
+
"Le répertoire de votre thème actif n'est pas accessible en écriture par le "
|
1002 |
+
"serveur. Vérifiez que le répertoire \"%s\" est accessible en écriture, ou "
|
1003 |
+
"bien nous essayerons d'utiliser l'installateur FTP pour l'initialisation. "
|
1004 |
+
|
1005 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
1006 |
+
#: EXTENDED\2) WP SVN
|
1007 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:110
|
1008 |
+
msgid "PDF Output Directory Writable?"
|
1009 |
+
msgstr "Répertoire de sortie des PDF accessible en écriture ?"
|
1010 |
+
|
1011 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
1012 |
+
#: EXTENDED\2) WP SVN
|
1013 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:113
|
1014 |
+
#, php-format
|
1015 |
+
msgid ""
|
1016 |
+
"The plugin's output folder is not writable by your web server. PDFs will not "
|
1017 |
+
"be attached to notifications until this problem is fixed. Check that \"%s\" "
|
1018 |
+
"is writable by your web server."
|
1019 |
+
msgstr ""
|
1020 |
+
"Le répertoire de stockage de l'extension n'est pas accessible en écriture "
|
1021 |
+
"par le serveur. Les PDF ne pourront pas être joints aux notifications tant "
|
1022 |
+
"que ce problème n'est pas réglé. Vérifiez que le répertoire \"%s\" est "
|
1023 |
+
"accessible en écriture. "
|
1024 |
+
|
1025 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
1026 |
+
#: EXTENDED\2) WP SVN
|
1027 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:117
|
1028 |
+
msgid "PDF Font Directory Writable?"
|
1029 |
+
msgstr "Répertoire des polices de caractère PDF accessible en écriture ?"
|
1030 |
+
|
1031 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
1032 |
+
#: EXTENDED\2) WP SVN
|
1033 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:120
|
1034 |
+
#, php-format
|
1035 |
+
msgid ""
|
1036 |
+
"The plugin's font folder is not writable by your web server. Check that \"%s"
|
1037 |
+
"\" is writable by your web server otherwise we will attempt to use the FTP "
|
1038 |
+
"installer to initialise."
|
1039 |
+
msgstr ""
|
1040 |
+
"Le répertoire des polices de l'extension n'est pas accessible en écriture "
|
1041 |
+
"par le serveur. Vérifiez que le répertoire \"%s\" est accessible en "
|
1042 |
+
"écriture, ou bien nous essayerons d'utiliser l'installateur FTP pour "
|
1043 |
+
"l'initialisation. "
|
1044 |
+
|
1045 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
1046 |
+
#: EXTENDED\2) WP SVN
|
1047 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:124
|
1048 |
+
msgid "mPDF Temporary Directory Writable?"
|
1049 |
+
msgstr "Répertoire temporaire de mPDF accessible en écriture ?"
|
1050 |
+
|
1051 |
+
#: G:\Blue Liquid Designs\4) BLUE LIQUID DESIGNS\19) GRAVITY FORMS PDF
|
1052 |
+
#: EXTENDED\2) WP SVN
|
1053 |
+
#: repository\tags\3.5.0/view/templates/settings/system-status.php:127
|
1054 |
+
msgid ""
|
1055 |
+
"mPDF temporary directory not writable (mPDF/tmp/). Memory and image "
|
1056 |
+
"processing time will increase."
|
1057 |
+
msgstr ""
|
1058 |
+
"Le répertoire temporaire de mPDF (mPDF/tmp/) n'est pas accessible en "
|
1059 |
+
"écriture. La mémoire utilisée et le temps de traitement des images vont "
|
1060 |
+
"augmenter."
|
1061 |
+
|
1062 |
+
#: view/templates/settings/initialisation.php:76
|
1063 |
+
msgid "Initialise Fonts"
|
1064 |
+
msgstr "Installer les polices de caractères"
|
model/pdf.php
CHANGED
@@ -19,7 +19,7 @@ class GFPDF_Core_Model
|
|
19 |
$form_id = isset($_POST["gform_submit"]) ? $_POST["gform_submit"] : 0;
|
20 |
if($form_id)
|
21 |
{
|
22 |
-
$form_info =
|
23 |
$is_valid_form = $form_info && $form_info->is_active;
|
24 |
|
25 |
if($is_valid_form)
|
@@ -34,10 +34,9 @@ class GFPDF_Core_Model
|
|
34 |
* Function to check if the major compatibility functionality is met
|
35 |
* This includes Wordpress and Gravity Forms
|
36 |
*/
|
37 |
-
public function check_major_compatibility()
|
38 |
{
|
39 |
-
global $gfpdfe_data;
|
40 |
-
|
41 |
|
42 |
if($gfpdfe_data->wp_is_compatible === false)
|
43 |
{
|
@@ -49,7 +48,7 @@ class GFPDF_Core_Model
|
|
49 |
{
|
50 |
add_action('after_plugin_row_' . GF_PDF_EXTENDED_PLUGIN_BASENAME, array('GFPDF_Notices', 'display_pdf_compatibility_error'));
|
51 |
return false;
|
52 |
-
}
|
53 |
|
54 |
if($gfpdfe_data->gf_is_compatible === false)
|
55 |
{
|
@@ -66,7 +65,12 @@ class GFPDF_Core_Model
|
|
66 |
*/
|
67 |
public static function is_fully_installed()
|
68 |
{
|
69 |
-
global $gfpdfe_data;
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
if( ($gfpdfe_data->fresh_install === true) || (!is_dir(PDF_TEMPLATE_LOCATION)) )
|
72 |
{
|
@@ -112,7 +116,7 @@ class GFPDF_Core_Model
|
|
112 |
|
113 |
if(!is_array($templates))
|
114 |
{
|
115 |
-
$index = $gfpdf->index[$form_id];
|
116 |
$templates = array($index[0] => array('template' => $templates));
|
117 |
}
|
118 |
|
@@ -594,8 +598,8 @@ class GFPDF_Core_Model
|
|
594 |
$rtl = (isset($config['rtl'])) ? $config['rtl'] : false;
|
595 |
|
596 |
|
597 |
-
$form =
|
598 |
-
$lead =
|
599 |
|
600 |
/*
|
601 |
* Run the options through filters
|
19 |
$form_id = isset($_POST["gform_submit"]) ? $_POST["gform_submit"] : 0;
|
20 |
if($form_id)
|
21 |
{
|
22 |
+
$form_info = GFAPI::get_form($form_id);
|
23 |
$is_valid_form = $form_info && $form_info->is_active;
|
24 |
|
25 |
if($is_valid_form)
|
34 |
* Function to check if the major compatibility functionality is met
|
35 |
* This includes Wordpress and Gravity Forms
|
36 |
*/
|
37 |
+
public static function check_major_compatibility()
|
38 |
{
|
39 |
+
global $gfpdfe_data;
|
|
|
40 |
|
41 |
if($gfpdfe_data->wp_is_compatible === false)
|
42 |
{
|
48 |
{
|
49 |
add_action('after_plugin_row_' . GF_PDF_EXTENDED_PLUGIN_BASENAME, array('GFPDF_Notices', 'display_pdf_compatibility_error'));
|
50 |
return false;
|
51 |
+
}
|
52 |
|
53 |
if($gfpdfe_data->gf_is_compatible === false)
|
54 |
{
|
65 |
*/
|
66 |
public static function is_fully_installed()
|
67 |
{
|
68 |
+
global $gfpdfe_data;
|
69 |
+
|
70 |
+
if(self::check_major_compatibility() === false)
|
71 |
+
{
|
72 |
+
return false;
|
73 |
+
}
|
74 |
|
75 |
if( ($gfpdfe_data->fresh_install === true) || (!is_dir(PDF_TEMPLATE_LOCATION)) )
|
76 |
{
|
116 |
|
117 |
if(!is_array($templates))
|
118 |
{
|
119 |
+
$index = (isset($gfpdf->index[$form_id])) ? $gfpdf->index[$form_id] : array(-1); /* if no index (no actual configuration) we use the default name - bypassing the naming function below */
|
120 |
$templates = array($index[0] => array('template' => $templates));
|
121 |
}
|
122 |
|
598 |
$rtl = (isset($config['rtl'])) ? $config['rtl'] : false;
|
599 |
|
600 |
|
601 |
+
$form = GFAPI::get_form($form_id);
|
602 |
+
$lead = GFAPI::get_entry($lead_id);
|
603 |
|
604 |
/*
|
605 |
* Run the options through filters
|
model/settings.php
CHANGED
@@ -118,12 +118,13 @@ class GFPDF_Settings_Model extends GFPDF_Settings
|
|
118 |
|
119 |
private function check_gf_compatibility()
|
120 |
{
|
|
|
121 |
global $gfpdfe_data;
|
122 |
|
123 |
if(class_exists('GFCommon'))
|
124 |
{
|
125 |
$gfpdfe_data->gf_installed = true;
|
126 |
-
$gfpdfe_data->gf_version =
|
127 |
|
128 |
if(version_compare($gfpdfe_data->gf_version, GF_PDF_EXTENDED_SUPPORTED_VERSION, '>=') === true)
|
129 |
{
|
@@ -201,6 +202,17 @@ class GFPDF_Settings_Model extends GFPDF_Settings
|
|
201 |
private function check_available_ram()
|
202 |
{
|
203 |
global $gfpdfe_data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
|
205 |
/*
|
206 |
* Get ram available in bytes and convert it to megabytes
|
118 |
|
119 |
private function check_gf_compatibility()
|
120 |
{
|
121 |
+
|
122 |
global $gfpdfe_data;
|
123 |
|
124 |
if(class_exists('GFCommon'))
|
125 |
{
|
126 |
$gfpdfe_data->gf_installed = true;
|
127 |
+
$gfpdfe_data->gf_version = GFForms::$version;
|
128 |
|
129 |
if(version_compare($gfpdfe_data->gf_version, GF_PDF_EXTENDED_SUPPORTED_VERSION, '>=') === true)
|
130 |
{
|
202 |
private function check_available_ram()
|
203 |
{
|
204 |
global $gfpdfe_data;
|
205 |
+
|
206 |
+
/*
|
207 |
+
* Our unit tests fail because PHP is being run from the CLI
|
208 |
+
* Overriding the RAM check if running from the CLI
|
209 |
+
*/
|
210 |
+
if(PHP_SAPI === 'cli')
|
211 |
+
{
|
212 |
+
$gfpdfe_data->ram_compatible = true;
|
213 |
+
$gfpdfe_data->allow_initilisation = true;
|
214 |
+
return;
|
215 |
+
}
|
216 |
|
217 |
/*
|
218 |
* Get ram available in bytes and convert it to megabytes
|
pdf.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Gravity Forms PDF Extended
|
5 |
Plugin URI: http://www.gravityformspdfextended.com
|
6 |
Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Our Business Plus package also allows you to overlay field onto an existing PDF.
|
7 |
-
Version: 3.5.
|
8 |
Author: Blue Liquid Designs
|
9 |
Author URI: http://www.blueliquiddesigns.com.au
|
10 |
|
@@ -33,7 +33,7 @@ GNU General Public License for more details.
|
|
33 |
/*
|
34 |
* Define our constants
|
35 |
*/
|
36 |
-
define('PDF_EXTENDED_VERSION', '3.5.
|
37 |
define('GF_PDF_EXTENDED_SUPPORTED_VERSION', '1.7');
|
38 |
define('GF_PDF_EXTENDED_WP_SUPPORTED_VERSION', '3.5');
|
39 |
define('GF_PDF_EXTENDED_PHP_SUPPORTED_VERSION', '5');
|
@@ -94,8 +94,8 @@ class GFPDF_Core extends PDFGenerator
|
|
94 |
|
95 |
/*
|
96 |
* Add localisation support
|
97 |
-
*/
|
98 |
-
load_plugin_textdomain(
|
99 |
|
100 |
/*
|
101 |
* Call our Settings class which will do our compatibility processing
|
@@ -106,12 +106,12 @@ class GFPDF_Core extends PDFGenerator
|
|
106 |
* We'll initialise our model which will do any function checks ect
|
107 |
*/
|
108 |
include PDF_PLUGIN_DIR . 'model/pdf.php';
|
109 |
-
self::$model = new GFPDF_Core_Model();
|
110 |
|
111 |
/*
|
112 |
* Check for any major compatibility issues early
|
113 |
*/
|
114 |
-
if(
|
115 |
{
|
116 |
/*
|
117 |
* Major compatibility errors (WP version, Gravity Forms or PHP errors)
|
@@ -153,14 +153,25 @@ class GFPDF_Core extends PDFGenerator
|
|
153 |
}
|
154 |
|
155 |
public function __construct()
|
156 |
-
{
|
157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
/*
|
160 |
* Include the core files
|
161 |
*/
|
162 |
-
|
163 |
-
|
164 |
|
165 |
/*
|
166 |
* Set up the PDF configuration and indexer
|
@@ -171,16 +182,7 @@ class GFPDF_Core extends PDFGenerator
|
|
171 |
/*
|
172 |
* Run our scripts and add the settings page to the admin area
|
173 |
*/
|
174 |
-
add_action('admin_init', array(
|
175 |
-
|
176 |
-
/*
|
177 |
-
* Ensure the system is fully installed
|
178 |
-
* We run this after the 'settings' page has been set up (above)
|
179 |
-
*/
|
180 |
-
if(GFPDF_Core_Model::is_fully_installed() === false)
|
181 |
-
{
|
182 |
-
return;
|
183 |
-
}
|
184 |
|
185 |
/*
|
186 |
* Add our main hooks
|
@@ -189,7 +191,6 @@ class GFPDF_Core extends PDFGenerator
|
|
189 |
add_action("gform_entry_info", array('GFPDF_Core_Model', 'detail_pdf_link'), 10, 2);
|
190 |
add_action('wp', array('GFPDF_Core_Model', 'process_exterior_pages'));
|
191 |
|
192 |
-
|
193 |
/*
|
194 |
* Apply default filters
|
195 |
*/
|
@@ -342,13 +343,12 @@ class GFPDF_Core extends PDFGenerator
|
|
342 |
/**
|
343 |
* Add our scripts and settings page to the admin area
|
344 |
*/
|
345 |
-
function gfe_admin_init()
|
346 |
-
{
|
347 |
-
|
348 |
/*
|
349 |
* Configure the settings page
|
350 |
*/
|
351 |
-
wp_enqueue_style( 'pdfextended-admin-styles', PDF_PLUGIN_URL . 'resources/css/admin-styles.min.css', array('dashicons'), '1.
|
352 |
wp_enqueue_script( 'pdfextended-settings-script', PDF_PLUGIN_URL . 'resources/javascript/admin.min.js' );
|
353 |
|
354 |
/*
|
@@ -359,8 +359,7 @@ class GFPDF_Core extends PDFGenerator
|
|
359 |
|
360 |
add_filter('gform_tooltips', array('GFPDF_Notices', 'add_tooltips'));
|
361 |
|
362 |
-
GFPDF_Settings::settings_page();
|
363 |
-
|
364 |
}
|
365 |
|
366 |
/*
|
@@ -389,7 +388,7 @@ class GFPDF_Core extends PDFGenerator
|
|
389 |
/*
|
390 |
* array_replace_recursive was added in PHP5.3
|
391 |
* Add fallback support for those with a version lower than this
|
392 |
-
*
|
393 |
*/
|
394 |
if (!function_exists('array_replace_recursive'))
|
395 |
{
|
4 |
Plugin Name: Gravity Forms PDF Extended
|
5 |
Plugin URI: http://www.gravityformspdfextended.com
|
6 |
Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Our Business Plus package also allows you to overlay field onto an existing PDF.
|
7 |
+
Version: 3.5.5
|
8 |
Author: Blue Liquid Designs
|
9 |
Author URI: http://www.blueliquiddesigns.com.au
|
10 |
|
33 |
/*
|
34 |
* Define our constants
|
35 |
*/
|
36 |
+
define('PDF_EXTENDED_VERSION', '3.5.5');
|
37 |
define('GF_PDF_EXTENDED_SUPPORTED_VERSION', '1.7');
|
38 |
define('GF_PDF_EXTENDED_WP_SUPPORTED_VERSION', '3.5');
|
39 |
define('GF_PDF_EXTENDED_PHP_SUPPORTED_VERSION', '5');
|
94 |
|
95 |
/*
|
96 |
* Add localisation support
|
97 |
+
*/
|
98 |
+
load_plugin_textdomain('pdfextended', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
99 |
|
100 |
/*
|
101 |
* Call our Settings class which will do our compatibility processing
|
106 |
* We'll initialise our model which will do any function checks ect
|
107 |
*/
|
108 |
include PDF_PLUGIN_DIR . 'model/pdf.php';
|
109 |
+
$model = self::$model = new GFPDF_Core_Model();
|
110 |
|
111 |
/*
|
112 |
* Check for any major compatibility issues early
|
113 |
*/
|
114 |
+
if($model->check_major_compatibility() === false)
|
115 |
{
|
116 |
/*
|
117 |
* Major compatibility errors (WP version, Gravity Forms or PHP errors)
|
153 |
}
|
154 |
|
155 |
public function __construct()
|
156 |
+
{
|
157 |
+
|
158 |
+
/*
|
159 |
+
* Ensure the system is fully installed
|
160 |
+
* We run this after the 'settings' page has been set up (above)
|
161 |
+
*/
|
162 |
+
$model = self::$model;
|
163 |
+
if($model::is_fully_installed() === false)
|
164 |
+
{
|
165 |
+
return;
|
166 |
+
}
|
167 |
+
|
168 |
+
global $gfpdfe_data;
|
169 |
|
170 |
/*
|
171 |
* Include the core files
|
172 |
*/
|
173 |
+
include_once PDF_PLUGIN_DIR . 'helper/pdf-render.php';
|
174 |
+
include_once PDF_PLUGIN_DIR . 'helper/pdf-entry-detail.php';
|
175 |
|
176 |
/*
|
177 |
* Set up the PDF configuration and indexer
|
182 |
/*
|
183 |
* Run our scripts and add the settings page to the admin area
|
184 |
*/
|
185 |
+
add_action('admin_init', array('GFPDF_Core', 'gfe_admin_init'), 9);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
/*
|
188 |
* Add our main hooks
|
191 |
add_action("gform_entry_info", array('GFPDF_Core_Model', 'detail_pdf_link'), 10, 2);
|
192 |
add_action('wp', array('GFPDF_Core_Model', 'process_exterior_pages'));
|
193 |
|
|
|
194 |
/*
|
195 |
* Apply default filters
|
196 |
*/
|
343 |
/**
|
344 |
* Add our scripts and settings page to the admin area
|
345 |
*/
|
346 |
+
public static function gfe_admin_init()
|
347 |
+
{
|
|
|
348 |
/*
|
349 |
* Configure the settings page
|
350 |
*/
|
351 |
+
wp_enqueue_style( 'pdfextended-admin-styles', PDF_PLUGIN_URL . 'resources/css/admin-styles.min.css', array('dashicons'), '1.2' );
|
352 |
wp_enqueue_script( 'pdfextended-settings-script', PDF_PLUGIN_URL . 'resources/javascript/admin.min.js' );
|
353 |
|
354 |
/*
|
359 |
|
360 |
add_filter('gform_tooltips', array('GFPDF_Notices', 'add_tooltips'));
|
361 |
|
362 |
+
GFPDF_Settings::settings_page();
|
|
|
363 |
}
|
364 |
|
365 |
/*
|
388 |
/*
|
389 |
* array_replace_recursive was added in PHP5.3
|
390 |
* Add fallback support for those with a version lower than this
|
391 |
+
* as Wordpress still supports PHP5.0 to PHP5.2
|
392 |
*/
|
393 |
if (!function_exists('array_replace_recursive'))
|
394 |
{
|
resources/css/admin-styles.css
CHANGED
@@ -44,6 +44,14 @@ padding: 2px 0 2px 2px;
|
|
44 |
font-weight: bold;
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
#pdf-system-status span.details, #support-request span.details {
|
48 |
font-size: 95%;
|
49 |
color: #444;
|
@@ -203,6 +211,8 @@ div.notice p {
|
|
203 |
#pdf-system-status strong {
|
204 |
display: inline-block;
|
205 |
float: left;
|
|
|
|
|
206 |
}
|
207 |
|
208 |
#initialisation label {
|
44 |
font-weight: bold;
|
45 |
}
|
46 |
|
47 |
+
#pdf-system-status {
|
48 |
+
overflow: hidden;
|
49 |
+
}
|
50 |
+
|
51 |
+
#pdf-system-status p {
|
52 |
+
clear: left;
|
53 |
+
}
|
54 |
+
|
55 |
#pdf-system-status span.details, #support-request span.details {
|
56 |
font-size: 95%;
|
57 |
color: #444;
|
211 |
#pdf-system-status strong {
|
212 |
display: inline-block;
|
213 |
float: left;
|
214 |
+
padding-left: 15px;
|
215 |
+
line-height: 27px;
|
216 |
}
|
217 |
|
218 |
#initialisation label {
|
resources/css/admin-styles.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#pdfextended-settings{margin-top:20px}#pdfextended-settings ol,#pdfextended-settings ul{margin-left:25px}#pdfextended-settings ul>li{list-style:disc}#pdfextended-settings ol>li{list-style:decimal}#pdfextended-settings ol li>ul,#pdfextended-settings ul li>ul{margin:5px 0 0 20px}#pdfextended-settings ul ul>li{list-style:circle}#pdfextended-settings ol ul>li{list-style:disc}#gform_tab_group #icon-gf_edit_forms{display:none}.detailed_pdf{clear:left;margin-bottom:3px}.detailed_pdf span{display:block;padding:2px 0 2px 2px}#support-request label{display:block;font-weight:bold}#pdf-system-status span.details,#support-request span.details{font-size:95%;color:#444;padding-top:7px;display:block}#support-request input,#support-request select{width:20em}#support-request input[type="submit"]{width:auto}#support-request textarea{width:65%;height:150px}#support-request input,#support-request textarea{padding:5px 4px}#support-request #support-request-button{padding:5px 8px}#support-request textarea{border:1px solid #999;color:#444}#support-request :disabled,#support-request textarea:disabled{color:#CCC;border:1px solid #CCC}#support-request input.error,#support-request textarea.error,#support-request select.error{color:#d10b0b;border:1px solid #d10b0b}#support-request .icon-remove-sign{vertical-align:middle}.icon-spinner{font-size:18px;margin-left:5px}#support-request span.msg{margin-left:5px;color:#008000}#support-request span.error{margin-left:5px;color:#d10b0b}#pdfextended-settings #changelog h3{margin-top:20px}#pdfextended-settings div.notice{margin:5px 15px 2px;padding:0 .6em}#pdfextended-settings div.notice{background-color:#fff;border-left:4px solid #7ad03a;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}.wrap #pdfextended-settings div.notice{margin:5px 0 15px;padding:1px 12px}div.notice p{margin:.5em 0;padding:2px}[class^="icon-"]:before,[class*=" icon-"]:before{display:inline-block;text-decoration:inherit;-webkit-font-smoothing:antialiased}[class^="icon-"],[class*=" icon-"]{background-image:none;background-position:0 0;background-repeat:repeat;display:inline;height:auto;line-height:normal;margin-top:0;vertical-align:baseline;width:auto;-webkit-font-smoothing:antialiased}[class^="icon-"],[class*=" icon-"]{font-family:"dashicons";font-style:normal;font-weight:normal;text-decoration:inherit}.icon-ok-sign,.icon-remove-sign,.icon-warning-sign{border-radius:50%;font-size:13px;margin-left:5px;color:#FFF}.icon-ok-sign{background:#008000}.icon-remove-sign{background:#d10b0b}.icon-warning-sign{background:#ff8a00}.icon-ok-sign:before{content:"\f147";padding:0 1px 0 0}.icon-remove-sign:before{content:"\f335";padding:0 1px 0 0}.icon-warning-sign:before{content:"\f107"}#pdf-system-status label,label.inline-label{float:left;width:15em}#pdf-system-status strong{display:inline-block;float:left}#initialisation label{line-height:26px}@media only screen and (min-width:1000px){#pdfextended-settings .leftcolumn{width:65%;float:left}#pdfextended-settings .rightcolumn{margin-left:70%}#pdf-system-status label,label.inline-label{float:none;width:auto}#pdf-system-status strong{display:inline;float:none;vertical-align:middle}[class^="icon-"],[class*=" icon-"]{vertical-align:middle}}@media only screen and (min-width:1250px){#pdf-system-status label,label.inline-label{float:left;width:15em}#pdf-system-status strong{display:inline-block;float:left}#support-request span.details.tabbed{margin-left:16em}}
|
1 |
+
#pdfextended-settings{margin-top:20px}#pdfextended-settings ol,#pdfextended-settings ul{margin-left:25px}#pdfextended-settings ul>li{list-style:disc}#pdfextended-settings ol>li{list-style:decimal}#pdfextended-settings ol li>ul,#pdfextended-settings ul li>ul{margin:5px 0 0 20px}#pdfextended-settings ul ul>li{list-style:circle}#pdfextended-settings ol ul>li{list-style:disc}#gform_tab_group #icon-gf_edit_forms{display:none}.detailed_pdf{clear:left;margin-bottom:3px}.detailed_pdf span{display:block;padding:2px 0 2px 2px}#support-request label{display:block;font-weight:bold}#pdf-system-status{overflow:hidden}#pdf-system-status p{clear:left}#pdf-system-status span.details,#support-request span.details{font-size:95%;color:#444;padding-top:7px;display:block}#support-request input,#support-request select{width:20em}#support-request input[type="submit"]{width:auto}#support-request textarea{width:65%;height:150px}#support-request input,#support-request textarea{padding:5px 4px}#support-request #support-request-button{padding:5px 8px}#support-request textarea{border:1px solid #999;color:#444}#support-request :disabled,#support-request textarea:disabled{color:#CCC;border:1px solid #CCC}#support-request input.error,#support-request textarea.error,#support-request select.error{color:#d10b0b;border:1px solid #d10b0b}#support-request .icon-remove-sign{vertical-align:middle}.icon-spinner{font-size:18px;margin-left:5px}#support-request span.msg{margin-left:5px;color:#008000}#support-request span.error{margin-left:5px;color:#d10b0b}#pdfextended-settings #changelog h3{margin-top:20px}#pdfextended-settings div.notice{margin:5px 15px 2px;padding:0 .6em}#pdfextended-settings div.notice{background-color:#fff;border-left:4px solid #7ad03a;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}.wrap #pdfextended-settings div.notice{margin:5px 0 15px;padding:1px 12px}div.notice p{margin:.5em 0;padding:2px}[class^="icon-"]:before,[class*=" icon-"]:before{display:inline-block;text-decoration:inherit;-webkit-font-smoothing:antialiased}[class^="icon-"],[class*=" icon-"]{background-image:none;background-position:0 0;background-repeat:repeat;display:inline;height:auto;line-height:normal;margin-top:0;vertical-align:baseline;width:auto;-webkit-font-smoothing:antialiased}[class^="icon-"],[class*=" icon-"]{font-family:"dashicons";font-style:normal;font-weight:normal;text-decoration:inherit}.icon-ok-sign,.icon-remove-sign,.icon-warning-sign{border-radius:50%;font-size:13px;margin-left:5px;color:#FFF}.icon-ok-sign{background:#008000}.icon-remove-sign{background:#d10b0b}.icon-warning-sign{background:#ff8a00}.icon-ok-sign:before{content:"\f147";padding:0 1px 0 0}.icon-remove-sign:before{content:"\f335";padding:0 1px 0 0}.icon-warning-sign:before{content:"\f107"}#pdf-system-status label,label.inline-label{float:left;width:15em}#pdf-system-status strong{display:inline-block;float:left;padding-left:15px;line-height:27px}#initialisation label{line-height:26px}@media only screen and (min-width:1000px){#pdfextended-settings .leftcolumn{width:65%;float:left}#pdfextended-settings .rightcolumn{margin-left:70%}#pdf-system-status label,label.inline-label{float:none;width:auto}#pdf-system-status strong{display:inline;float:none;vertical-align:middle}[class^="icon-"],[class*=" icon-"]{vertical-align:middle}}@media only screen and (min-width:1250px){#pdf-system-status label,label.inline-label{float:left;width:15em}#pdf-system-status strong{display:inline-block;float:left}#support-request span.details.tabbed{margin-left:16em}}
|
view/templates/settings/changelog.php
CHANGED
@@ -20,7 +20,17 @@
|
|
20 |
|
21 |
<p><strong>Current Version: <?php echo PDF_EXTENDED_VERSION; ?></strong></p>
|
22 |
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
<ul>
|
25 |
<li>Bug - Fixed issue with incorrect PDF name showing on the entry details page</li>
|
26 |
<li>Bug - Fixed issue with custom fonts being inaccessible without manually reinstalling after upgrading.</li>
|
20 |
|
21 |
<p><strong>Current Version: <?php echo PDF_EXTENDED_VERSION; ?></strong></p>
|
22 |
|
23 |
+
<h3><?php echo PDF_EXTENDED_VERSION; ?></h3>
|
24 |
+
<ul>
|
25 |
+
<li>Housekeeping - Include French translation (thanks to Marie-Aude Koiransky-Ballouk)</li>
|
26 |
+
<li>Housekeeping - Wrap 'Initialise Fonts' text in translation ready _e() function</li>
|
27 |
+
<li>Housekeeping - Tidy up System Status CSS styles to accomidate translation text lengths</li>
|
28 |
+
<li>Housekeeping - Fix E_NOTICE when viewing entry details page when form has no PDF configuration</li>
|
29 |
+
<li>Bug - Fixed load_plugin_textdomain which was incorrectly called.</li>
|
30 |
+
<li>Bug - Correctly check if the plugin is loaded correctly before letting the PDF class fully load</li>
|
31 |
+
</ul>
|
32 |
+
|
33 |
+
<h3>3.5.4</h3>
|
34 |
<ul>
|
35 |
<li>Bug - Fixed issue with incorrect PDF name showing on the entry details page</li>
|
36 |
<li>Bug - Fixed issue with custom fonts being inaccessible without manually reinstalling after upgrading.</li>
|
view/templates/settings/initialisation.php
CHANGED
@@ -73,7 +73,7 @@
|
|
73 |
<?php if($gfpdfe_data->is_initialised): ?>
|
74 |
<h3><?php _e('Install a new font?', 'pdfextended'); ?></h3>
|
75 |
<p><?php echo sprintf(__('Do you want to use a custom font in your template? %sSee our documentation on how to correctly install and use a custom font%s before initialising below.', 'pdfextended'), '<a href="http://gravityformspdfextended.com/documentation-v3-x-x/language-support/">', '</a>'); ?></p>
|
76 |
-
<input type="submit" value="Initialise Fonts" class="button" id="font-initialise" name="font-initialise">
|
77 |
<?php endif; ?>
|
78 |
|
79 |
|
73 |
<?php if($gfpdfe_data->is_initialised): ?>
|
74 |
<h3><?php _e('Install a new font?', 'pdfextended'); ?></h3>
|
75 |
<p><?php echo sprintf(__('Do you want to use a custom font in your template? %sSee our documentation on how to correctly install and use a custom font%s before initialising below.', 'pdfextended'), '<a href="http://gravityformspdfextended.com/documentation-v3-x-x/language-support/">', '</a>'); ?></p>
|
76 |
+
<input type="submit" value="<?php _e('Initialise Fonts', 'pdfextended') ; ?>" class="button" id="font-initialise" name="font-initialise">
|
77 |
<?php endif; ?>
|
78 |
|
79 |
|