Version Description
- Fixed: No submit button on support tab in using < WP 3.4 (thanks fatherb)
- Fixed: save=0 option not respected in some cases
- Fixed: (E) cache=0 option breaks secure document display (thanks Manish)
- Fixed: (E) Javascript sometimes broken with WP_DEBUG enabled
- Changed: (E) Increased timeout period on fetching document contents
Download this release
Release Info
Developer | k3davis |
Plugin | Google Doc Embedder |
Version | 2.5.7 |
Comparing to | |
See all releases |
Code changes from version 2.5.6 to 2.5.7
- gviewer.php +8 -5
- js/tb-newwin.php +1 -1
- languages/gde-cs_CZ.mo +0 -0
- languages/gde-cs_CZ.po +1084 -301
- libs/lib-setup.php +10 -4
- libs/tab-support.php +5 -3
- readme.txt +13 -6
- view.php +2 -2
gviewer.php
CHANGED
@@ -8,7 +8,7 @@ Author: Kevin Davis
|
|
8 |
Author URI: http://www.davistribe.org/
|
9 |
Text Domain: gde
|
10 |
Domain Path: /languages/
|
11 |
-
Version: 2.5.
|
12 |
License: GPLv2
|
13 |
*/
|
14 |
|
@@ -38,7 +38,7 @@ License: GPLv2
|
|
38 |
*/
|
39 |
|
40 |
// boring init junk
|
41 |
-
$gde_ver = "2.5.
|
42 |
$gde_db_ver = "1.2"; // update also in gde_activate()
|
43 |
|
44 |
require_once( plugin_dir_path( __FILE__ ) . 'functions.php' );
|
@@ -132,8 +132,10 @@ function gde_do_shortcode( $atts ) {
|
|
132 |
}
|
133 |
|
134 |
// use profile defaults if shortcode override not defined
|
135 |
-
if (
|
136 |
-
$save
|
|
|
|
|
137 |
}
|
138 |
if ( empty( $width ) ) {
|
139 |
$width = $profile['default_width'];
|
@@ -226,7 +228,8 @@ function gde_do_shortcode( $atts ) {
|
|
226 |
}
|
227 |
|
228 |
// obfuscate filename if cache disabled (globally or via shortcode)
|
229 |
-
|
|
|
230 |
$links[0] .= "?" . time();
|
231 |
}
|
232 |
|
8 |
Author URI: http://www.davistribe.org/
|
9 |
Text Domain: gde
|
10 |
Domain Path: /languages/
|
11 |
+
Version: 2.5.7
|
12 |
License: GPLv2
|
13 |
*/
|
14 |
|
38 |
*/
|
39 |
|
40 |
// boring init junk
|
41 |
+
$gde_ver = "2.5.7.98";
|
42 |
$gde_db_ver = "1.2"; // update also in gde_activate()
|
43 |
|
44 |
require_once( plugin_dir_path( __FILE__ ) . 'functions.php' );
|
132 |
}
|
133 |
|
134 |
// use profile defaults if shortcode override not defined
|
135 |
+
if ( $save !== "0" ) {
|
136 |
+
if ( empty( $save ) ) {
|
137 |
+
$save = $profile['link_show'];
|
138 |
+
}
|
139 |
}
|
140 |
if ( empty( $width ) ) {
|
141 |
$width = $profile['default_width'];
|
228 |
}
|
229 |
|
230 |
// obfuscate filename if cache disabled (globally or via shortcode)
|
231 |
+
// note that this is ignored if the document is secure to prevent each hit from generating a new db row
|
232 |
+
if ( ! empty( $links[1] ) && ( $cache == "off" || $cache == "0" ) ) {
|
233 |
$links[0] .= "?" . time();
|
234 |
}
|
235 |
|
js/tb-newwin.php
CHANGED
@@ -48,7 +48,7 @@ if (top === self) {
|
|
48 |
|
49 |
<?php
|
50 |
// use WP language (not Google) for tooltip if full screen - this string doesn't exist in Google version
|
51 |
-
if ( $_GET['a'] == "fs" ) {
|
52 |
?>
|
53 |
dv1.setAttribute("title", "<?php echo $tip; ?>");
|
54 |
<?php
|
48 |
|
49 |
<?php
|
50 |
// use WP language (not Google) for tooltip if full screen - this string doesn't exist in Google version
|
51 |
+
if ( isset( $_GET['a'] ) && $_GET['a'] == "fs" ) {
|
52 |
?>
|
53 |
dv1.setAttribute("title", "<?php echo $tip; ?>");
|
54 |
<?php
|
languages/gde-cs_CZ.mo
CHANGED
Binary file
|
languages/gde-cs_CZ.po
CHANGED
@@ -1,59 +1,68 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Google Doc Embedder\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2012-05-25 10:14-0600\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Atelier Gadjukin <atelier@gadjukin.net>\n"
|
8 |
"Language-Team: Atelier Gadjukin <atelier@gadjukin.net>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
|
|
|
|
16 |
"X-Poedit-Basepath: .\n"
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
|
|
|
|
|
20 |
msgid "Download"
|
21 |
msgstr "Stáhnout"
|
22 |
|
23 |
-
|
|
|
24 |
msgid "Support"
|
25 |
msgstr "Podpora"
|
26 |
|
27 |
-
|
|
|
28 |
msgid ""
|
29 |
"Please review the documentation before submitting a request for support:"
|
30 |
msgstr "Prohlédněte si prosím dokumentaci před odesláním požadavku na podporu:"
|
31 |
|
32 |
-
|
|
|
33 |
msgid "Plugin FAQ"
|
34 |
msgstr "FAQ Pluginu"
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
msgstr "Fórum podpory"
|
39 |
-
|
40 |
-
#: gde-functions.php:353
|
41 |
msgid "If you're still experiencing a problem, please complete the form below."
|
42 |
msgstr "Pokud stále dochází k problému, vyplňte prosím níže uvedený formulář."
|
43 |
|
44 |
-
|
|
|
45 |
msgid "Your Name"
|
46 |
msgstr "Vaše jméno"
|
47 |
|
48 |
-
|
|
|
49 |
msgid "Your E-mail"
|
50 |
msgstr "Váš email"
|
51 |
|
52 |
-
|
|
|
53 |
msgid "Shortcode"
|
54 |
msgstr "Zkratka"
|
55 |
|
56 |
-
|
|
|
57 |
msgid ""
|
58 |
"If you're having a problem getting a specific document to work, paste the "
|
59 |
"shortcode you're trying to use here."
|
@@ -61,411 +70,1185 @@ msgstr ""
|
|
61 |
"Pokud máte nějaký problém s fungováním konkrétního dokumentu, vložte sem "
|
62 |
"zkratku, kterou se snažíte použít."
|
63 |
|
64 |
-
|
|
|
65 |
msgid "Message"
|
66 |
msgstr "Zpráva"
|
67 |
|
68 |
-
|
|
|
69 |
msgid "Message Options"
|
70 |
msgstr "Volby zprávy"
|
71 |
|
72 |
-
|
|
|
73 |
msgid "Send debug information"
|
74 |
msgstr "Odešlete ladící informace"
|
75 |
|
76 |
-
|
|
|
77 |
msgid "View"
|
78 |
msgstr "Zobrazit"
|
79 |
|
80 |
-
|
|
|
81 |
msgid "Send me a copy"
|
82 |
msgstr "Poslat kopii mně"
|
83 |
|
84 |
-
|
|
|
85 |
msgid "Debug Information"
|
86 |
msgstr "Ladící informace"
|
87 |
|
88 |
-
|
|
|
89 |
msgid ""
|
90 |
"I'm less likely to be able to help you if you do not include debug "
|
91 |
"information."
|
92 |
msgstr ""
|
93 |
"Obávám se, že vám nebudu schopen pomoct, pokud nepřiložíte ladící informace."
|
94 |
|
95 |
-
|
96 |
-
|
97 |
-
msgstr "Odešlete požadavek na podporu"
|
98 |
-
|
99 |
-
#: gviewer.php:137
|
100 |
msgid "Error"
|
101 |
msgstr "Chyba"
|
102 |
|
103 |
-
|
|
|
|
|
104 |
msgid "Settings"
|
105 |
msgstr "Nastavení"
|
106 |
|
107 |
-
|
|
|
108 |
msgid "You do not have sufficient permissions to access this page"
|
109 |
msgstr "Nemáte dostatečná oprávnění pro přístup na tuto stránku"
|
110 |
|
111 |
-
|
112 |
-
|
113 |
-
msgstr "Beta verze je dostupná"
|
114 |
-
|
115 |
-
#: gviewer.php:305
|
116 |
-
msgid ""
|
117 |
-
"Please deactivate the plug-in and install the current version if you wish to "
|
118 |
-
"participate. Otherwise, you can turn off beta version checking in GDE "
|
119 |
-
"Settings. Testers appreciated!"
|
120 |
-
msgstr ""
|
121 |
-
"Prosím deaktivujte plugin a nainstalujte aktuální verzi, pokud se chcete "
|
122 |
-
"zúčastnit vývoje. V opačném případě můžete vypnout beta verzi kontroly v "
|
123 |
-
"Nastavení GDE. Testery vítám!"
|
124 |
-
|
125 |
-
#: gviewer.php:306
|
126 |
-
msgid "Updated beta version available"
|
127 |
-
msgstr "Je dostupná beta verze pro aktualizaci"
|
128 |
-
|
129 |
-
#: gviewer.php:306
|
130 |
-
msgid ""
|
131 |
-
"A newer beta has been released. Please deactivate the plug-in and install "
|
132 |
-
"the current version. Thanks for your help!"
|
133 |
-
msgstr ""
|
134 |
-
"Nová beta verze byla uvolněna. Deaktivujte prosím plugin a nainstalujte "
|
135 |
-
"aktuální verzi. Děkuji za vaši pomoc!"
|
136 |
-
|
137 |
-
#: gviewer.php:307
|
138 |
-
msgid "You're running a beta version. Please give feedback."
|
139 |
-
msgstr "Používáte beta verzi. Zašlete mi prosím vaše návrhy."
|
140 |
-
|
141 |
-
#: gviewer.php:307
|
142 |
-
msgid ""
|
143 |
-
"Thank you for running a test version of Google Doc Embedder. You are running "
|
144 |
-
"the most current beta version. Please give feedback on this version using "
|
145 |
-
"the "Support" link above. Thanks for your help!"
|
146 |
-
msgstr ""
|
147 |
-
"Děkuji, že používáte testovací verzi GDE. Používáte nejnovější beta verzi. "
|
148 |
-
"Uveďte, prosím, svůj názor na tuto verzi pomocí odkazu "Podpora" "
|
149 |
-
"nahoře. Děkuji za vaši pomoc!"
|
150 |
-
|
151 |
-
#: gviewer.php:308
|
152 |
-
msgid "more info"
|
153 |
-
msgstr "více informací"
|
154 |
-
|
155 |
-
#: gviewer.php:375
|
156 |
msgid "plugin"
|
157 |
msgstr "plugin"
|
158 |
|
159 |
-
|
|
|
160 |
msgid "Version"
|
161 |
msgstr "Verze"
|
162 |
|
163 |
-
|
164 |
-
|
165 |
-
msgstr "Volby resetovány do výchozího stavu"
|
166 |
-
|
167 |
-
#: options.php:123
|
168 |
-
msgid "Options updated"
|
169 |
-
msgstr "Volby aktualizovány"
|
170 |
-
|
171 |
-
#: options.php:141
|
172 |
-
msgid "Viewer Options"
|
173 |
-
msgstr "Možnosti prohlížeče"
|
174 |
-
|
175 |
-
#: options.php:146
|
176 |
-
msgid "Viewer Selection"
|
177 |
-
msgstr "Výběr prohlížeče"
|
178 |
-
|
179 |
-
#: options.php:147 options.php:253 options.php:303
|
180 |
msgid "Help"
|
181 |
msgstr "Pomoc"
|
182 |
|
183 |
-
|
184 |
-
|
185 |
-
msgstr "Prohlížeč Google Standard"
|
186 |
-
|
187 |
-
#: options.php:150
|
188 |
-
msgid "Embed the standard Google Viewer."
|
189 |
-
msgstr "Vložený standardní Google prohlížeč"
|
190 |
-
|
191 |
-
#: options.php:151
|
192 |
msgid "Enhanced Viewer"
|
193 |
msgstr "Rozšířený prohlížeč"
|
194 |
|
195 |
-
|
196 |
-
|
197 |
-
"Use this option to enable toolbar customization and fix some display "
|
198 |
-
"problems (experimental)."
|
199 |
-
msgstr ""
|
200 |
-
"Tuto volbu použijte k povolení úprav nástrojového pruhu a k řešení některých "
|
201 |
-
"problémů se zobrazením (experimentální)."
|
202 |
-
|
203 |
-
#: options.php:156
|
204 |
-
msgid "Customize Toolbar"
|
205 |
-
msgstr "Upravit nástrojový pruh"
|
206 |
-
|
207 |
-
#: options.php:160
|
208 |
-
msgid "Hide Zoom In/Out"
|
209 |
-
msgstr "Skrýt Zoom +/-"
|
210 |
-
|
211 |
-
#: options.php:161
|
212 |
-
msgid "Hide Open in New Window"
|
213 |
-
msgstr "Skrýt Otevřít v novém okně"
|
214 |
-
|
215 |
-
#: options.php:162
|
216 |
-
msgid "Always Use Mobile Theme"
|
217 |
-
msgstr "Vždy použít mobilní vzhled"
|
218 |
-
|
219 |
-
#: options.php:166
|
220 |
msgid "Default Size"
|
221 |
msgstr "Výchozí velikost"
|
222 |
|
223 |
-
|
|
|
224 |
msgid "Width"
|
225 |
msgstr "Šířka"
|
226 |
|
227 |
-
|
|
|
228 |
msgid "Height"
|
229 |
msgstr "Výška"
|
230 |
|
231 |
-
|
|
|
232 |
msgid "Default Language"
|
233 |
msgstr "Výchozí jazyk"
|
234 |
|
235 |
-
|
236 |
-
|
237 |
-
msgstr "Uvnitř (výchozí)"
|
238 |
-
|
239 |
-
#: options.php:236
|
240 |
-
msgid "Collapsible (Open)"
|
241 |
-
msgstr "Rozbalovací (rozbalený)"
|
242 |
-
|
243 |
-
#: options.php:237
|
244 |
-
msgid "Collapsible (Closed)"
|
245 |
-
msgstr "Rozbalovací (sbalený)"
|
246 |
-
|
247 |
-
#: options.php:249
|
248 |
-
msgid "Download Link Options"
|
249 |
-
msgstr "Volby odkazu pro stažení"
|
250 |
-
|
251 |
-
#: options.php:254
|
252 |
-
msgid "Display the download link by default"
|
253 |
-
msgstr "Zobrazit odkaz ke stažení jako výchozí"
|
254 |
-
|
255 |
-
#: options.php:255
|
256 |
-
msgid "Only display download link to logged in users"
|
257 |
-
msgstr "Zobrazit odkaz ke stažení jen přihlášeným uživatelům"
|
258 |
-
|
259 |
-
#: options.php:256
|
260 |
-
msgid ""
|
261 |
-
"Track downloads in Google Analytics (tracking script must be installed on "
|
262 |
-
"your site)"
|
263 |
-
msgstr ""
|
264 |
-
"zapisovat stažení do Google Analytics (musíte mít na vašem webu instalován "
|
265 |
-
"příslušný skript)"
|
266 |
-
|
267 |
-
#: options.php:259
|
268 |
msgid "File Base URL"
|
269 |
msgstr "URL úložiště souborů"
|
270 |
|
271 |
-
|
272 |
-
|
273 |
-
msgstr "Pokud soubor nezačíná <em>http</em>, bude automaticky doplněn"
|
274 |
-
|
275 |
-
#: options.php:264
|
276 |
msgid "Link Text"
|
277 |
msgstr "Text odkazu"
|
278 |
|
279 |
-
|
|
|
280 |
msgid "You can further customize text using these dynamic replacements:"
|
281 |
msgstr "Můžete upravit zobrazovaný text za pomocí těchto zástupců:"
|
282 |
|
283 |
-
|
|
|
284 |
msgid "filename"
|
285 |
msgstr "jméno souboru"
|
286 |
|
287 |
-
|
|
|
288 |
msgid "file type"
|
289 |
msgstr "typ souboru"
|
290 |
|
291 |
-
|
|
|
292 |
msgid "file size"
|
293 |
msgstr "velikost souboru"
|
294 |
|
295 |
-
|
|
|
296 |
msgid "Link Position"
|
297 |
msgstr "Umístění odkazu"
|
298 |
|
299 |
-
|
|
|
300 |
msgid "Above Viewer"
|
301 |
msgstr "Nad prohlížečem"
|
302 |
|
303 |
-
|
|
|
304 |
msgid "Below Viewer"
|
305 |
msgstr "Pod prohlížečem"
|
306 |
|
307 |
-
|
|
|
308 |
msgid "Link Behavior"
|
309 |
msgstr "Chování odkazu"
|
310 |
|
311 |
-
|
312 |
-
|
313 |
-
msgstr "Dle prohlížeče"
|
314 |
-
|
315 |
-
#: options.php:283
|
316 |
-
msgid "Force Download"
|
317 |
-
msgstr "Přímé stažení"
|
318 |
-
|
319 |
-
#: options.php:284
|
320 |
-
msgid "Force Download (Mask URL)"
|
321 |
-
msgstr "Přímé stažení (maskovaná URL)"
|
322 |
-
|
323 |
-
#: options.php:298
|
324 |
-
msgid "Advanced Options"
|
325 |
-
msgstr "Rozšířené volby"
|
326 |
-
|
327 |
-
#: options.php:300
|
328 |
msgid "Plugin Behavior"
|
329 |
msgstr "Chování pluginu"
|
330 |
|
331 |
-
|
332 |
-
|
333 |
-
msgstr "Editor chování"
|
334 |
-
|
335 |
-
#: options.php:305
|
336 |
-
msgid "Display error messages inline (not hidden)"
|
337 |
-
msgstr "Zobrazovat chybové hlášky (není skryto)"
|
338 |
-
|
339 |
-
#: options.php:306
|
340 |
-
msgid "Disable internal error checking"
|
341 |
-
msgstr "Zakázat testování interních chyb"
|
342 |
-
|
343 |
-
#: options.php:307
|
344 |
-
msgid "Disable document caching"
|
345 |
-
msgstr "Zakázat ukládání do mezipaměti"
|
346 |
-
|
347 |
-
#: options.php:308
|
348 |
-
msgid "Disable beta version notifications"
|
349 |
-
msgstr "Zakázat upozornění na beta verze"
|
350 |
-
|
351 |
-
#: options.php:311
|
352 |
msgid "Disable all editor integration"
|
353 |
msgstr "Zakázat integraci všech prohlížečů"
|
354 |
|
355 |
-
|
356 |
-
|
357 |
-
msgstr "Vložit zkratku z Knihovny médií"
|
358 |
-
|
359 |
-
#: options.php:318
|
360 |
msgid "Allow uploads of all supported media types"
|
361 |
msgstr "Povolit upload všech podporovaných typů souborů"
|
362 |
|
363 |
-
|
364 |
-
|
365 |
-
msgstr "Uložit volby"
|
366 |
-
|
367 |
-
#: options.php:330
|
368 |
-
msgid "Reset to Defaults"
|
369 |
-
msgstr "Reset do výchozího nastavení"
|
370 |
-
|
371 |
-
#: options.php:330
|
372 |
-
msgid "Are you sure you want to reset all settings to defaults?"
|
373 |
-
msgstr "Opravdu chcete resetovat všechna nastavení do výchozího stavu?"
|
374 |
-
|
375 |
-
#: proxy.php:29
|
376 |
-
msgid ""
|
377 |
-
"This function is not supported on your web server. Please add\n"
|
378 |
-
"\t\t\t<code>allow_url_fopen = 1</code> to your php.ini or enable cURL "
|
379 |
-
"library.\n"
|
380 |
-
"\t\t\tIf you are unable to do this, please switch to Google Standard Viewer "
|
381 |
-
"in GDE Options."
|
382 |
-
msgstr ""
|
383 |
-
"tato funkce není podporována na vašem web serveru. Přidejte prosím\n"
|
384 |
-
"\t\t\t<code>allow_url_fopen = 1</code> do vašeho php.ini nebo povolte cURL "
|
385 |
-
"library.\n"
|
386 |
-
"\t\t\tPokud tohle nemůžete, zapněte prosím prohlížeč Google Standard v GDE "
|
387 |
-
"Nastavení."
|
388 |
-
|
389 |
-
#: libs/lib-bootstrap.php:15
|
390 |
-
msgid "Could not find wp-load.php"
|
391 |
-
msgstr "Nemohu najít wp-load.php"
|
392 |
-
|
393 |
-
#: libs/gde-dialog.php:34
|
394 |
-
msgid "I'll insert the shortcode myself"
|
395 |
-
msgstr "Vložím zkratku sám"
|
396 |
-
|
397 |
-
#: libs/gde-dialog.php:36
|
398 |
-
msgid "GDE Shortcode Options"
|
399 |
-
msgstr "Volby zkratek GDE"
|
400 |
-
|
401 |
-
#: libs/gde-dialog.php:40
|
402 |
msgid "Required"
|
403 |
msgstr "Vyžadováno"
|
404 |
|
405 |
-
|
|
|
406 |
msgid "URL or Filename"
|
407 |
msgstr "URL nebo jméno souboru"
|
408 |
|
409 |
-
|
410 |
-
|
411 |
-
msgstr "Celá URL nebo jméno souboru pro přidání do URL úložiště souborů"
|
412 |
-
|
413 |
-
#: libs/gde-dialog.php:45
|
414 |
-
msgid "File Base URL will be prefixed"
|
415 |
-
msgstr "URL úložiště bude s prefixem"
|
416 |
-
|
417 |
-
#: libs/gde-dialog.php:46
|
418 |
msgid "Unsupported file type"
|
419 |
msgstr "Nepodporovaný typ souboru"
|
420 |
|
421 |
-
|
422 |
-
|
423 |
-
msgstr "Volitelné (přepíše hlavní nastavení)"
|
424 |
-
|
425 |
-
#: libs/gde-dialog.php:57 libs/gde-dialog.php:61
|
426 |
-
msgid "format:"
|
427 |
-
msgstr "formát:"
|
428 |
-
|
429 |
-
#: libs/gde-dialog.php:57 libs/gde-dialog.php:61
|
430 |
-
msgid "or"
|
431 |
-
msgstr "nebo"
|
432 |
-
|
433 |
-
#: libs/gde-dialog.php:65
|
434 |
msgid "Show Download Link"
|
435 |
msgstr "Zobrazit odkaz ke stažení"
|
436 |
|
437 |
-
|
|
|
438 |
msgid "Yes"
|
439 |
msgstr "Ano"
|
440 |
|
441 |
-
|
|
|
442 |
msgid "No"
|
443 |
msgstr "Ne"
|
444 |
|
445 |
-
|
446 |
-
|
447 |
-
msgstr "Zobrazit odkaz ke stažení jen přihlášeným uživatelům "
|
448 |
-
|
449 |
-
#: libs/gde-dialog.php:77
|
450 |
msgid "Disable caching (this document is frequently overwritten)"
|
451 |
msgstr "Zakázat ukládání mezipaměti (tento dokument bude často přepisován)"
|
452 |
|
453 |
-
|
454 |
-
|
455 |
-
"Disable internal error checking (try if URL is confirmed good but document "
|
456 |
-
"doesn't display)"
|
457 |
-
msgstr ""
|
458 |
-
"Zakázat testování vnitřních chyb (vyzkoušejte, pokud je URL správně zadaná, "
|
459 |
-
"ale dokument se nezobrazuje)"
|
460 |
-
|
461 |
-
#: libs/gde-dialog.php:94
|
462 |
msgid "Shortcode Preview"
|
463 |
msgstr "Náhled zkratky"
|
464 |
|
465 |
-
|
|
|
466 |
msgid "Insert"
|
467 |
msgstr "Vložit"
|
468 |
|
469 |
-
|
|
|
470 |
msgid "Cancel"
|
471 |
msgstr "Zrušit"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Google Doc Embedder v2.5.7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2012-05-25 10:14-0600\n"
|
6 |
+
"PO-Revision-Date: 2013-06-18 07:33+0100\n"
|
7 |
"Last-Translator: Atelier Gadjukin <atelier@gadjukin.net>\n"
|
8 |
"Language-Team: Atelier Gadjukin <atelier@gadjukin.net>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n"
|
13 |
+
"+9)%10>3 ? 2 : 1;\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Textdomain-Support: yes\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
# @ gde
|
23 |
+
#: functions.php:361 gviewer.php:304 libs/lib-setup.php:71
|
24 |
+
#: libs/lib-setup.php:121
|
25 |
msgid "Download"
|
26 |
msgstr "Stáhnout"
|
27 |
|
28 |
+
# @ gde
|
29 |
+
#: options.php:208
|
30 |
msgid "Support"
|
31 |
msgstr "Podpora"
|
32 |
|
33 |
+
# @ gde
|
34 |
+
#: libs/tab-support.php:27
|
35 |
msgid ""
|
36 |
"Please review the documentation before submitting a request for support:"
|
37 |
msgstr "Prohlédněte si prosím dokumentaci před odesláním požadavku na podporu:"
|
38 |
|
39 |
+
# @ gde
|
40 |
+
#: libs/tab-support.php:30
|
41 |
msgid "Plugin FAQ"
|
42 |
msgstr "FAQ Pluginu"
|
43 |
|
44 |
+
# @ gde
|
45 |
+
#: libs/tab-support.php:32
|
|
|
|
|
|
|
46 |
msgid "If you're still experiencing a problem, please complete the form below."
|
47 |
msgstr "Pokud stále dochází k problému, vyplňte prosím níže uvedený formulář."
|
48 |
|
49 |
+
# @ gde
|
50 |
+
#: libs/tab-support.php:42
|
51 |
msgid "Your Name"
|
52 |
msgstr "Vaše jméno"
|
53 |
|
54 |
+
# @ gde
|
55 |
+
#: libs/tab-support.php:46
|
56 |
msgid "Your E-mail"
|
57 |
msgstr "Váš email"
|
58 |
|
59 |
+
# @ gde
|
60 |
+
#: libs/tab-support.php:53
|
61 |
msgid "Shortcode"
|
62 |
msgstr "Zkratka"
|
63 |
|
64 |
+
# @ gde
|
65 |
+
#: libs/tab-support.php:56
|
66 |
msgid ""
|
67 |
"If you're having a problem getting a specific document to work, paste the "
|
68 |
"shortcode you're trying to use here."
|
70 |
"Pokud máte nějaký problém s fungováním konkrétního dokumentu, vložte sem "
|
71 |
"zkratku, kterou se snažíte použít."
|
72 |
|
73 |
+
# @ gde
|
74 |
+
#: libs/tab-support.php:67
|
75 |
msgid "Message"
|
76 |
msgstr "Zpráva"
|
77 |
|
78 |
+
# @ gde
|
79 |
+
#: libs/tab-support.php:73
|
80 |
msgid "Message Options"
|
81 |
msgstr "Volby zprávy"
|
82 |
|
83 |
+
# @ gde
|
84 |
+
#: libs/tab-support.php:75
|
85 |
msgid "Send debug information"
|
86 |
msgstr "Odešlete ladící informace"
|
87 |
|
88 |
+
# @ gde
|
89 |
+
#: libs/tab-support.php:76
|
90 |
msgid "View"
|
91 |
msgstr "Zobrazit"
|
92 |
|
93 |
+
# @ gde
|
94 |
+
#: libs/tab-support.php:78
|
95 |
msgid "Send me a copy"
|
96 |
msgstr "Poslat kopii mně"
|
97 |
|
98 |
+
# @ gde
|
99 |
+
#: libs/tab-support.php:84
|
100 |
msgid "Debug Information"
|
101 |
msgstr "Ladící informace"
|
102 |
|
103 |
+
# @ gde
|
104 |
+
#: libs/tab-support.php:160
|
105 |
msgid ""
|
106 |
"I'm less likely to be able to help you if you do not include debug "
|
107 |
"information."
|
108 |
msgstr ""
|
109 |
"Obávám se, že vám nebudu schopen pomoct, pokud nepřiložíte ladící informace."
|
110 |
|
111 |
+
# @ gde
|
112 |
+
#: functions.php:500 view.php:397
|
|
|
|
|
|
|
113 |
msgid "Error"
|
114 |
msgstr "Chyba"
|
115 |
|
116 |
+
# @ gde
|
117 |
+
#: functions-admin.php:414 functions-admin.php:540 libs/tab-advanced.php:143
|
118 |
+
#: options.php:168
|
119 |
msgid "Settings"
|
120 |
msgstr "Nastavení"
|
121 |
|
122 |
+
# @ gde
|
123 |
+
#: functions-admin.php:423
|
124 |
msgid "You do not have sufficient permissions to access this page"
|
125 |
msgstr "Nemáte dostatečná oprávnění pro přístup na tuto stránku"
|
126 |
|
127 |
+
# @ gde
|
128 |
+
#: functions-admin.php:528
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
msgid "plugin"
|
130 |
msgstr "plugin"
|
131 |
|
132 |
+
# @ gde
|
133 |
+
#: functions-admin.php:529
|
134 |
msgid "Version"
|
135 |
msgstr "Verze"
|
136 |
|
137 |
+
# @ gde
|
138 |
+
#: options.php:349
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
msgid "Help"
|
140 |
msgstr "Pomoc"
|
141 |
|
142 |
+
# @ gde
|
143 |
+
#: libs/lib-profile.php:67
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
msgid "Enhanced Viewer"
|
145 |
msgstr "Rozšířený prohlížeč"
|
146 |
|
147 |
+
# @ gde
|
148 |
+
#: libs/lib-profile.php:195
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
msgid "Default Size"
|
150 |
msgstr "Výchozí velikost"
|
151 |
|
152 |
+
# @ gde
|
153 |
+
#: libs/lib-eddialog.php:108 libs/lib-profile.php:197
|
154 |
msgid "Width"
|
155 |
msgstr "Šířka"
|
156 |
|
157 |
+
# @ gde
|
158 |
+
#: libs/lib-eddialog.php:103 libs/lib-profile.php:201
|
159 |
msgid "Height"
|
160 |
msgstr "Výška"
|
161 |
|
162 |
+
# @ gde
|
163 |
+
#: libs/lib-profile.php:179
|
164 |
msgid "Default Language"
|
165 |
msgstr "Výchozí jazyk"
|
166 |
|
167 |
+
# @ gde
|
168 |
+
#: libs/lib-profile.php:210
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
msgid "File Base URL"
|
170 |
msgstr "URL úložiště souborů"
|
171 |
|
172 |
+
# @ gde
|
173 |
+
#: libs/lib-profile.php:233
|
|
|
|
|
|
|
174 |
msgid "Link Text"
|
175 |
msgstr "Text odkazu"
|
176 |
|
177 |
+
# @ gde
|
178 |
+
#: libs/lib-profile.php:236
|
179 |
msgid "You can further customize text using these dynamic replacements:"
|
180 |
msgstr "Můžete upravit zobrazovaný text za pomocí těchto zástupců:"
|
181 |
|
182 |
+
# @ gde
|
183 |
+
#: libs/lib-profile.php:237
|
184 |
msgid "filename"
|
185 |
msgstr "jméno souboru"
|
186 |
|
187 |
+
# @ gde
|
188 |
+
#: libs/lib-profile.php:238
|
189 |
msgid "file type"
|
190 |
msgstr "typ souboru"
|
191 |
|
192 |
+
# @ gde
|
193 |
+
#: libs/lib-profile.php:239
|
194 |
msgid "file size"
|
195 |
msgstr "velikost souboru"
|
196 |
|
197 |
+
# @ gde
|
198 |
+
#: libs/lib-profile.php:243
|
199 |
msgid "Link Position"
|
200 |
msgstr "Umístění odkazu"
|
201 |
|
202 |
+
# @ gde
|
203 |
+
#: libs/lib-profile.php:247
|
204 |
msgid "Above Viewer"
|
205 |
msgstr "Nad prohlížečem"
|
206 |
|
207 |
+
# @ gde
|
208 |
+
#: libs/lib-profile.php:248
|
209 |
msgid "Below Viewer"
|
210 |
msgstr "Pod prohlížečem"
|
211 |
|
212 |
+
# @ gde
|
213 |
+
#: libs/lib-profile.php:254
|
214 |
msgid "Link Behavior"
|
215 |
msgstr "Chování odkazu"
|
216 |
|
217 |
+
# @ gde
|
218 |
+
#: libs/tab-advanced.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
msgid "Plugin Behavior"
|
220 |
msgstr "Chování pluginu"
|
221 |
|
222 |
+
# @ gde
|
223 |
+
#: libs/tab-advanced.php:27
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
msgid "Disable all editor integration"
|
225 |
msgstr "Zakázat integraci všech prohlížečů"
|
226 |
|
227 |
+
# @ gde
|
228 |
+
#: libs/tab-advanced.php:29
|
|
|
|
|
|
|
229 |
msgid "Allow uploads of all supported media types"
|
230 |
msgstr "Povolit upload všech podporovaných typů souborů"
|
231 |
|
232 |
+
# @ gde
|
233 |
+
#: libs/lib-eddialog.php:55
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
msgid "Required"
|
235 |
msgstr "Vyžadováno"
|
236 |
|
237 |
+
# @ gde
|
238 |
+
#: libs/lib-eddialog.php:59
|
239 |
msgid "URL or Filename"
|
240 |
msgstr "URL nebo jméno souboru"
|
241 |
|
242 |
+
# @ gde
|
243 |
+
#: libs/lib-eddialog.php:68
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
msgid "Unsupported file type"
|
245 |
msgstr "Nepodporovaný typ souboru"
|
246 |
|
247 |
+
# @ gde
|
248 |
+
#: libs/lib-eddialog.php:122
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "Show Download Link"
|
250 |
msgstr "Zobrazit odkaz ke stažení"
|
251 |
|
252 |
+
# @ gde
|
253 |
+
#: libs/lib-eddialog.php:125
|
254 |
msgid "Yes"
|
255 |
msgstr "Ano"
|
256 |
|
257 |
+
# @ gde
|
258 |
+
#: libs/lib-eddialog.php:126
|
259 |
msgid "No"
|
260 |
msgstr "Ne"
|
261 |
|
262 |
+
# @ gde
|
263 |
+
#: libs/lib-eddialog.php:132
|
|
|
|
|
|
|
264 |
msgid "Disable caching (this document is frequently overwritten)"
|
265 |
msgstr "Zakázat ukládání mezipaměti (tento dokument bude často přepisován)"
|
266 |
|
267 |
+
# @ gde
|
268 |
+
#: libs/lib-eddialog.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
msgid "Shortcode Preview"
|
270 |
msgstr "Náhled zkratky"
|
271 |
|
272 |
+
# @ gde
|
273 |
+
#: libs/lib-eddialog.php:151
|
274 |
msgid "Insert"
|
275 |
msgstr "Vložit"
|
276 |
|
277 |
+
# @ gde
|
278 |
+
#: libs/lib-eddialog.php:155
|
279 |
msgid "Cancel"
|
280 |
msgstr "Zrušit"
|
281 |
+
|
282 |
+
# @ gde
|
283 |
+
#: functions-admin.php:266
|
284 |
+
msgid "Import"
|
285 |
+
msgstr "Import"
|
286 |
+
|
287 |
+
# @ gde
|
288 |
+
#: functions-admin.php:277
|
289 |
+
msgid "Performing full import..."
|
290 |
+
msgstr "Provádím úplný import..."
|
291 |
+
|
292 |
+
# @ gde
|
293 |
+
#: functions-admin.php:281 functions-admin.php:306
|
294 |
+
msgid "Importing profiles"
|
295 |
+
msgstr "Importované profily"
|
296 |
+
|
297 |
+
# @ gde
|
298 |
+
#: functions-admin.php:287 functions-admin.php:301 functions-admin.php:312
|
299 |
+
#: functions-admin.php:325
|
300 |
+
msgid "done"
|
301 |
+
msgstr "hotovo"
|
302 |
+
|
303 |
+
# @ gde
|
304 |
+
#: functions-admin.php:290 functions-admin.php:299 functions-admin.php:315
|
305 |
+
#: functions-admin.php:323
|
306 |
+
msgid "failed"
|
307 |
+
msgstr "selhalo"
|
308 |
+
|
309 |
+
# @ gde
|
310 |
+
#: functions-admin.php:296
|
311 |
+
msgid "Importing settings"
|
312 |
+
msgstr "Import nastavení"
|
313 |
+
|
314 |
+
# @ gde
|
315 |
+
#: functions-admin.php:319
|
316 |
+
msgid "Importing settings... "
|
317 |
+
msgstr "Importuji nastavení..."
|
318 |
+
|
319 |
+
# @ gde
|
320 |
+
#: functions-admin.php:328 functions-admin.php:571 options.php:141
|
321 |
+
msgid "Please select a valid export file to import."
|
322 |
+
msgstr "Vyberte prosím platný exportní soubor pro import."
|
323 |
+
|
324 |
+
# @ gde
|
325 |
+
#: functions-admin.php:332
|
326 |
+
msgid "All or part of the import failed. See above for information."
|
327 |
+
msgstr "Všechy nebo část importu selhala, Podívejte se výše na informace."
|
328 |
+
|
329 |
+
# @ gde
|
330 |
+
#: functions-admin.php:334
|
331 |
+
msgid "Import completed successfully."
|
332 |
+
msgstr "Import kompletní."
|
333 |
+
|
334 |
+
# @ gde
|
335 |
+
#: functions-admin.php:337
|
336 |
+
msgid "Return to GDE Settings"
|
337 |
+
msgstr "Zpět do nastavení GDE"
|
338 |
+
|
339 |
+
# @ gde
|
340 |
+
#: functions-admin.php:567
|
341 |
+
msgid "This profile will be permanently deleted."
|
342 |
+
msgstr "Tento profil bude navždy vymazán."
|
343 |
+
|
344 |
+
# @ gde
|
345 |
+
#: functions-admin.php:567 functions-admin.php:568 functions-admin.php:569
|
346 |
+
#: functions-admin.php:572
|
347 |
+
msgid "Are you sure?"
|
348 |
+
msgstr "Jste si jisti?"
|
349 |
+
|
350 |
+
# @ gde
|
351 |
+
#: functions-admin.php:568
|
352 |
+
msgid "Settings for this profile will overwrite the default profile."
|
353 |
+
msgstr "Nastavení tohoto profilu bude přepsáno defaultním profilem."
|
354 |
+
|
355 |
+
# @ gde
|
356 |
+
#: functions-admin.php:569
|
357 |
+
msgid ""
|
358 |
+
"Your profile list will be reset to its original state. All changes will be "
|
359 |
+
"lost."
|
360 |
+
msgstr ""
|
361 |
+
"Váš seznam profilů bude vymazán do výchozího stavu. Všechny změny budou "
|
362 |
+
"ztraceny."
|
363 |
+
|
364 |
+
# @ gde
|
365 |
+
#: functions-admin.php:572
|
366 |
+
msgid ""
|
367 |
+
"Any settings or duplicate profile names in this import will overwrite the "
|
368 |
+
"current values."
|
369 |
+
msgstr ""
|
370 |
+
"Všechna nastavení nebo kopie profilů v tomto importu budou přepsány "
|
371 |
+
"současnými hodnotami."
|
372 |
+
|
373 |
+
# @ gde
|
374 |
+
#: functions-admin.php:574
|
375 |
+
msgid "Please include a shortcode or message to request support."
|
376 |
+
msgstr "Vložte prosím zkratku nebo zprávu jako požadavek na podporu."
|
377 |
+
|
378 |
+
# @ gde
|
379 |
+
#: functions-admin.php:612
|
380 |
+
msgid "Embed file using Google Doc Embedder"
|
381 |
+
msgstr "Vložený soubor použije GDE"
|
382 |
+
|
383 |
+
# @ gde
|
384 |
+
#: functions-admin.php:629 libs/lib-eddialog.php:85
|
385 |
+
msgid "Select the GDE viewer profile to use"
|
386 |
+
msgstr "Vyberte GDE profil který chcete použít"
|
387 |
+
|
388 |
+
# @ gde
|
389 |
+
#: functions-admin.php:780
|
390 |
+
msgid ""
|
391 |
+
"You are running a pre-release version of Google Doc Embedder. Please watch "
|
392 |
+
"this space for important updates."
|
393 |
+
msgstr ""
|
394 |
+
"Používáte beta verzi Google Embedder Doc. Prosím sledujte toto místo pro "
|
395 |
+
"důležité aktualizace."
|
396 |
+
|
397 |
+
# @ gde
|
398 |
+
#: functions.php:104
|
399 |
+
msgid "File not specified, check shortcode syntax"
|
400 |
+
msgstr "Soubor není specifikován, zkotrolujte syntaxi zkratky"
|
401 |
+
|
402 |
+
# @ gde
|
403 |
+
#: functions.php:105
|
404 |
+
msgid "Requested URL is invalid"
|
405 |
+
msgstr "Požadavaná URL není platná"
|
406 |
+
|
407 |
+
# @ gde
|
408 |
+
#: functions.php:106
|
409 |
+
msgid "Unsupported File Type"
|
410 |
+
msgstr "Nepodporovaný typ souboru"
|
411 |
+
|
412 |
+
# @ gde
|
413 |
+
#: functions.php:107
|
414 |
+
msgid "Error retrieving file - if necessary turn off error checking"
|
415 |
+
msgstr "Chyba načítání souboru - v případě potřeby vypnout kontrolu chyb"
|
416 |
+
|
417 |
+
# @ gde
|
418 |
+
#: functions.php:227
|
419 |
+
msgid "Unknown"
|
420 |
+
msgstr "Neznámý"
|
421 |
+
|
422 |
+
# @ gde
|
423 |
+
#: functions.php:229 libs/tab-advanced.php:38
|
424 |
+
msgid "MB"
|
425 |
+
msgstr "MB"
|
426 |
+
|
427 |
+
# @ gde
|
428 |
+
#. translators: plugin header field 'Name'
|
429 |
+
#: gviewer.php:0
|
430 |
+
msgid "Google Doc Embedder"
|
431 |
+
msgstr "Google Doc Embedder"
|
432 |
+
|
433 |
+
# @ gde
|
434 |
+
#. translators: plugin header field 'PluginURI'
|
435 |
+
#: gviewer.php:0
|
436 |
+
msgid "http://www.davistribe.org/gde/"
|
437 |
+
msgstr "http://www.davistribe.org/gde/"
|
438 |
+
|
439 |
+
# @ gde
|
440 |
+
#. translators: plugin header field 'Description'
|
441 |
+
#: gviewer.php:0
|
442 |
+
msgid ""
|
443 |
+
"Lets you embed MS Office, PDF, TIFF, and many other file types in a web page "
|
444 |
+
"using the Google Docs Viewer (no Flash or PDF browser plug-ins required)."
|
445 |
+
msgstr ""
|
446 |
+
"Pomocí Google Doc Viewer můžete do vašich stránek vložit dokumenty MS "
|
447 |
+
"Office, PDF, TIFF a mnoho dalších typů souborů (nepotřebujete pluginy pro "
|
448 |
+
"PDF nebo Flash)."
|
449 |
+
|
450 |
+
# @ gde
|
451 |
+
#. translators: plugin header field 'Author'
|
452 |
+
#: gviewer.php:0
|
453 |
+
msgid "Kevin Davis"
|
454 |
+
msgstr "Kevin Davis"
|
455 |
+
|
456 |
+
# @ gde
|
457 |
+
#. translators: plugin header field 'AuthorURI'
|
458 |
+
#: gviewer.php:0
|
459 |
+
msgid "http://www.davistribe.org/"
|
460 |
+
msgstr "http://www.davistribe.org/"
|
461 |
+
|
462 |
+
# @ gde
|
463 |
+
#. translators: plugin header field 'Version'
|
464 |
+
#: gviewer.php:0
|
465 |
+
msgid "2.5.7"
|
466 |
+
msgstr "2.5.7"
|
467 |
+
|
468 |
+
# @ gde
|
469 |
+
#: gviewer.php:78
|
470 |
+
msgid "Unable to load profile settings"
|
471 |
+
msgstr "Nelze načíst nastavení profilu"
|
472 |
+
|
473 |
+
# @ gde
|
474 |
+
#: gviewer.php:113 gviewer.php:125
|
475 |
+
msgid "Unable to load requested profile."
|
476 |
+
msgstr "Nelze načíst požadovaný profil"
|
477 |
+
|
478 |
+
# @ gde
|
479 |
+
#: gviewer.php:238
|
480 |
+
msgid "Unable to secure document"
|
481 |
+
msgstr "Nelze zabezpečit dokument"
|
482 |
+
|
483 |
+
# @ gde
|
484 |
+
#: gviewer.php:401
|
485 |
+
msgid "Setup wasn't able to create the required database tables."
|
486 |
+
msgstr "Setup nemůže vytvořit požadovanou tabulku v databázi."
|
487 |
+
|
488 |
+
# @ gde
|
489 |
+
#: js/tb-newwin.php:7
|
490 |
+
msgid "View in full screen"
|
491 |
+
msgstr "Zobrazit v celém okně"
|
492 |
+
|
493 |
+
# @ gde
|
494 |
+
#: js/tb-newwin.php:11
|
495 |
+
msgid "Open in new window"
|
496 |
+
msgstr "Otevře v novém okně"
|
497 |
+
|
498 |
+
# @ gde
|
499 |
+
#: libs/lib-eddialog.php:8
|
500 |
+
msgid "Access denied."
|
501 |
+
msgstr "Přístup odepřen."
|
502 |
+
|
503 |
+
# @ gde
|
504 |
+
#: libs/lib-eddialog.php:52
|
505 |
+
msgid "Insert Google Doc Embedder Shortcode"
|
506 |
+
msgstr "Vložte zkratku Google Doc Embedder"
|
507 |
+
|
508 |
+
# @ gde
|
509 |
+
#: libs/lib-eddialog.php:60
|
510 |
+
msgid "Full URL or filename to append to profile Base URL"
|
511 |
+
msgstr "Plná URL adresa nebo jméno souboru připojené k výchozí URL adrese"
|
512 |
+
|
513 |
+
# @ gde
|
514 |
+
#: libs/lib-eddialog.php:65
|
515 |
+
msgid "Profile Base URL will be prefixed"
|
516 |
+
msgstr "Výchozí URL adresa profilu bude prefixem"
|
517 |
+
|
518 |
+
# @ gde
|
519 |
+
#: libs/lib-eddialog.php:74
|
520 |
+
msgid "Profile"
|
521 |
+
msgstr "Profil"
|
522 |
+
|
523 |
+
# @ gde
|
524 |
+
#: libs/lib-eddialog.php:93
|
525 |
+
msgid "Optional (Override Profile Settings)"
|
526 |
+
msgstr "Volitelné (přepíše nastavení profilu)"
|
527 |
+
|
528 |
+
# @ gde
|
529 |
+
#: libs/lib-eddialog.php:98
|
530 |
+
msgid "Use selected profile settings"
|
531 |
+
msgstr "Použijte nastavení vybraného profilu"
|
532 |
+
|
533 |
+
# @ gde
|
534 |
+
#: libs/lib-eddialog.php:109
|
535 |
+
msgid "Format: 40% or 300px"
|
536 |
+
msgstr "Formát: 40% nebo 300px"
|
537 |
+
|
538 |
+
# @ gde
|
539 |
+
#: libs/lib-eddialog.php:114
|
540 |
+
msgid "Start Page #"
|
541 |
+
msgstr "První stránka #"
|
542 |
+
|
543 |
+
# @ default
|
544 |
+
#: libs/lib-formsubmit.php:9 libs/lib-secure.php:9 libs/lib-service.php:12
|
545 |
+
#: libs/lib-service.php:59 libs/lib-service.php:77 libs/lib-service.php:80
|
546 |
+
#: load.php:8
|
547 |
+
msgid "You do not have sufficient permissions to access this page."
|
548 |
+
msgstr "Nemáte odpovídající oprávnění k přístupu na tuto stránku."
|
549 |
+
|
550 |
+
# @ gde
|
551 |
+
#: libs/lib-profile.php:12 libs/tab-advanced.php:134 libs/tab-profiles.php:20
|
552 |
+
msgid ""
|
553 |
+
"Unable to load profile settings. Please re-activate GDE and if the problem "
|
554 |
+
"persists, request help using the \"Support\" tab."
|
555 |
+
msgstr ""
|
556 |
+
"Nelze načíst nastaevní profilu. Zkuste prosím znovu aktivovat GDE plugin a "
|
557 |
+
"pokud problém přetrvá, použijte záložku \"Podpora\". "
|
558 |
+
|
559 |
+
# @ gde
|
560 |
+
#: libs/lib-profile.php:25
|
561 |
+
msgid "Default Settings"
|
562 |
+
msgstr "Výchozí nastavení"
|
563 |
+
|
564 |
+
# @ gde
|
565 |
+
#: libs/lib-profile.php:26
|
566 |
+
msgid ""
|
567 |
+
"These settings define the default viewer profile, which is used when no "
|
568 |
+
"other profile is specified."
|
569 |
+
msgstr ""
|
570 |
+
"Tato nastavení definují výchozí prohlíček, pokud není zvolený žádný jiný "
|
571 |
+
"profil."
|
572 |
+
|
573 |
+
# @ gde
|
574 |
+
#: libs/lib-profile.php:30
|
575 |
+
msgid "Edit Profile"
|
576 |
+
msgstr "Upravit profil"
|
577 |
+
|
578 |
+
# @ gde
|
579 |
+
#: libs/lib-profile.php:62
|
580 |
+
msgid "Viewer Mode"
|
581 |
+
msgstr "Mód prohlížeče"
|
582 |
+
|
583 |
+
# @ gde
|
584 |
+
#: libs/lib-profile.php:66
|
585 |
+
msgid "Standard Viewer"
|
586 |
+
msgstr "Standardní prohlížeč"
|
587 |
+
|
588 |
+
# @ gde
|
589 |
+
#: libs/lib-profile.php:66
|
590 |
+
msgid "Embed the basic viewer only"
|
591 |
+
msgstr "Vloží pouze základní prohlížeč"
|
592 |
+
|
593 |
+
# @ gde
|
594 |
+
#: libs/lib-profile.php:67
|
595 |
+
msgid "Enable extended viewer options"
|
596 |
+
msgstr "Povolí volby rozšířeného prohlížeče"
|
597 |
+
|
598 |
+
# @ gde
|
599 |
+
#: libs/lib-profile.php:77
|
600 |
+
msgid "Enhanced Viewer Settings"
|
601 |
+
msgstr "Nastavení rozšířeného prohlížeče"
|
602 |
+
|
603 |
+
# @ gde
|
604 |
+
#: libs/lib-profile.php:81
|
605 |
+
msgid "Toolbar"
|
606 |
+
msgstr "Nástrojový pruh"
|
607 |
+
|
608 |
+
# @ gde
|
609 |
+
#: libs/lib-profile.php:85
|
610 |
+
msgid "Remove Toolbar"
|
611 |
+
msgstr "Vyjmout nástrojový pruh"
|
612 |
+
|
613 |
+
# @ gde
|
614 |
+
#: libs/lib-profile.php:90
|
615 |
+
msgid "Use Mobile Toolbar"
|
616 |
+
msgstr "Použít Mobilní nástrojovou lištu"
|
617 |
+
|
618 |
+
# @ gde
|
619 |
+
#: libs/lib-profile.php:94
|
620 |
+
msgid "Mobile Devices Only (Default)"
|
621 |
+
msgstr "Pouze pro mobilní zařízení (výchozí)"
|
622 |
+
|
623 |
+
# @ gde
|
624 |
+
#: libs/lib-profile.php:94
|
625 |
+
msgid "Use mobile toolbar when mobile device detected"
|
626 |
+
msgstr ""
|
627 |
+
"Použije mobilní nástrojovou lištu, jakmile je detekováno mobilní zařízení"
|
628 |
+
|
629 |
+
# @ gde
|
630 |
+
#: libs/lib-profile.php:95
|
631 |
+
msgid "Always"
|
632 |
+
msgstr "Vždy"
|
633 |
+
|
634 |
+
# @ gde
|
635 |
+
#: libs/lib-profile.php:95
|
636 |
+
msgid "Use mobile toolbar for all visitors"
|
637 |
+
msgstr "Použít mobilní nástrojovou lištu pro všechny návštěvníky"
|
638 |
+
|
639 |
+
# @ gde
|
640 |
+
#: libs/lib-profile.php:96
|
641 |
+
msgid "Never"
|
642 |
+
msgstr "Nikdy"
|
643 |
+
|
644 |
+
# @ gde
|
645 |
+
#: libs/lib-profile.php:96
|
646 |
+
msgid "Never use mobile toolbar"
|
647 |
+
msgstr "Nikdy nepoužít mobilní nástrojovou lištu"
|
648 |
+
|
649 |
+
# @ gde
|
650 |
+
#: libs/lib-profile.php:103
|
651 |
+
msgid "Toolbar Items"
|
652 |
+
msgstr "Tlačítka lišty"
|
653 |
+
|
654 |
+
# @ gde
|
655 |
+
#: libs/lib-profile.php:106
|
656 |
+
msgid "Page Numbers"
|
657 |
+
msgstr "Čísla stránek"
|
658 |
+
|
659 |
+
# @ gde
|
660 |
+
#: libs/lib-profile.php:107
|
661 |
+
msgid "Previous/Next Page"
|
662 |
+
msgstr "Předchozí/Další stránka"
|
663 |
+
|
664 |
+
# @ gde
|
665 |
+
#: libs/lib-profile.php:108
|
666 |
+
msgid "Zoom In/Out"
|
667 |
+
msgstr "Zoom In/Out"
|
668 |
+
|
669 |
+
# @ gde
|
670 |
+
#: libs/lib-profile.php:109
|
671 |
+
msgid "Full Screen/New Window"
|
672 |
+
msgstr "Celá obrazovka/Nové okno"
|
673 |
+
|
674 |
+
# @ gde
|
675 |
+
#: libs/lib-profile.php:112
|
676 |
+
msgid ""
|
677 |
+
"Uncheck items to remove from toolbar. Buttons will vary based on file type "
|
678 |
+
"and device used."
|
679 |
+
msgstr ""
|
680 |
+
"Odškrtnutí položky odstraní tlačítko z lišty. Tlačítka se mohou lišit v "
|
681 |
+
"závislosti na typu souboru a zařízení."
|
682 |
+
|
683 |
+
# @ gde
|
684 |
+
#: libs/lib-profile.php:116
|
685 |
+
msgid "Full Screen Behavior"
|
686 |
+
msgstr "Chování při celé obrazovce"
|
687 |
+
|
688 |
+
# @ gde
|
689 |
+
#: libs/lib-profile.php:120
|
690 |
+
msgid "Google-Hosted Page (Default)"
|
691 |
+
msgstr "Google-Hosted stránka (výchozí)"
|
692 |
+
|
693 |
+
# @ gde
|
694 |
+
#: libs/lib-profile.php:122
|
695 |
+
msgid "Full Screen Viewer"
|
696 |
+
msgstr "Prohlížeč pro celou obrazovku"
|
697 |
+
|
698 |
+
# @ gde
|
699 |
+
#: libs/lib-profile.php:127
|
700 |
+
msgid "Open in New Window"
|
701 |
+
msgstr "Otevřít v novém okně"
|
702 |
+
|
703 |
+
# @ gde
|
704 |
+
#: libs/lib-profile.php:128
|
705 |
+
msgid "Allow Logged-in Users Only"
|
706 |
+
msgstr "Povolit pouze pro přihlášené"
|
707 |
+
|
708 |
+
# @ gde
|
709 |
+
#: libs/lib-profile.php:129
|
710 |
+
msgid "Allow Printing"
|
711 |
+
msgstr "Povolit tisk"
|
712 |
+
|
713 |
+
# @ gde
|
714 |
+
#: libs/lib-profile.php:134
|
715 |
+
msgid "Page Area Background Color"
|
716 |
+
msgstr "Barva pozadí stránky"
|
717 |
+
|
718 |
+
# @ gde
|
719 |
+
#: libs/lib-profile.php:139
|
720 |
+
msgid "None (Transparent)"
|
721 |
+
msgstr "Žádná (průhledná)"
|
722 |
+
|
723 |
+
# @ gde
|
724 |
+
#: libs/lib-profile.php:144
|
725 |
+
msgid "Page Border Color"
|
726 |
+
msgstr "Barva orámování stránky"
|
727 |
+
|
728 |
+
# @ gde
|
729 |
+
#: libs/lib-profile.php:149
|
730 |
+
msgid "No Border"
|
731 |
+
msgstr "Bez orámování"
|
732 |
+
|
733 |
+
# @ gde
|
734 |
+
#: libs/lib-profile.php:154
|
735 |
+
msgid "Custom CSS File"
|
736 |
+
msgstr "Uživatelský CSS soubor"
|
737 |
+
|
738 |
+
# @ gde
|
739 |
+
#: libs/lib-profile.php:160
|
740 |
+
msgid "URL of custom CSS file (may override some of the above options)"
|
741 |
+
msgstr ""
|
742 |
+
"URL uživatelského souboru se styly (může přepsat některá z výše uvedených "
|
743 |
+
"nastavení)"
|
744 |
+
|
745 |
+
# @ gde
|
746 |
+
#: libs/lib-profile.php:164
|
747 |
+
msgid "Security"
|
748 |
+
msgstr "Bezpečnost"
|
749 |
+
|
750 |
+
# @ gde
|
751 |
+
#: libs/lib-profile.php:167
|
752 |
+
msgid "Hide ability to select/copy/paste text"
|
753 |
+
msgstr "Skrýt možnost vybrat/kopírovat/vložit text"
|
754 |
+
|
755 |
+
# @ gde
|
756 |
+
#: libs/lib-profile.php:168
|
757 |
+
msgid "Block all download requests for file"
|
758 |
+
msgstr "Zamezit všem požadavkům o stažení souboru"
|
759 |
+
|
760 |
+
# @ gde
|
761 |
+
#: libs/lib-profile.php:191
|
762 |
+
msgid "Language of toolbar button tips"
|
763 |
+
msgstr "Jazyk nápovědy k tlačítkům nástrojové lišty"
|
764 |
+
|
765 |
+
# @ gde
|
766 |
+
#: libs/lib-profile.php:206
|
767 |
+
msgid "Enter as pixels or percentage (example: 500px or 100%)"
|
768 |
+
msgstr "Zadejte jako pixely nebo jako procenta (např. 500px nebo 100%)"
|
769 |
+
|
770 |
+
# @ gde
|
771 |
+
#: libs/lib-profile.php:216
|
772 |
+
msgid ""
|
773 |
+
"Any file not starting with <code>http</code> will be prefixed by this value"
|
774 |
+
msgstr "Předpona <code>http</code> bude doplněna"
|
775 |
+
|
776 |
+
# @ gde
|
777 |
+
#: libs/lib-profile.php:220
|
778 |
+
msgid "Download Link"
|
779 |
+
msgstr "Odkaz pro stažení"
|
780 |
+
|
781 |
+
# @ gde
|
782 |
+
#: libs/lib-profile.php:224
|
783 |
+
msgid "All Users"
|
784 |
+
msgstr "Všichni návštěvníci"
|
785 |
+
|
786 |
+
# @ gde
|
787 |
+
#: libs/lib-profile.php:224
|
788 |
+
msgid "Download link visible to everyone by default"
|
789 |
+
msgstr "Odkaz pro stažení bude viditelný pro každého"
|
790 |
+
|
791 |
+
# @ gde
|
792 |
+
#: libs/lib-profile.php:225
|
793 |
+
msgid "Logged-in Users"
|
794 |
+
msgstr "Přihlášený uživatel"
|
795 |
+
|
796 |
+
# @ gde
|
797 |
+
#: libs/lib-profile.php:225
|
798 |
+
msgid "Download link visible to logged-in users"
|
799 |
+
msgstr "Odkaz pro stažení bude zobrazen jen po přihlášení"
|
800 |
+
|
801 |
+
# @ gde
|
802 |
+
#: libs/lib-profile.php:226 libs/tab-advanced.php:93
|
803 |
+
msgid "None"
|
804 |
+
msgstr "Žádný"
|
805 |
+
|
806 |
+
# @ gde
|
807 |
+
#: libs/lib-profile.php:226
|
808 |
+
msgid "Download link is not visible by default"
|
809 |
+
msgstr "Odkaz pro stažení nebude viditelný vůbec"
|
810 |
+
|
811 |
+
# @ gde
|
812 |
+
#: libs/lib-profile.php:257
|
813 |
+
msgid "Force download (bypass browser plugins)"
|
814 |
+
msgstr "Přímé stažení (obejde plugin prohlížeče)"
|
815 |
+
|
816 |
+
# @ gde
|
817 |
+
#: libs/lib-profile.php:258
|
818 |
+
msgid "Shorten URL"
|
819 |
+
msgstr "Zkrácená URL"
|
820 |
+
|
821 |
+
# @ gde
|
822 |
+
#: libs/lib-profile.php:266 libs/tab-advanced.php:122
|
823 |
+
msgid "Save Changes"
|
824 |
+
msgstr "Uložit změny"
|
825 |
+
|
826 |
+
# @ gde
|
827 |
+
#: libs/lib-setup.php:52
|
828 |
+
msgid "This is the default profile, used when no profile is specified."
|
829 |
+
msgstr ""
|
830 |
+
"Toto je výchozí profil, který je použit, když není žádný profil specifikován."
|
831 |
+
|
832 |
+
# @ gde
|
833 |
+
#: libs/lib-setup.php:77
|
834 |
+
msgid "Hide document location and text selection, prevent downloads"
|
835 |
+
msgstr "Skryje umístění dokumentu a textový výběr, ochrana stahování"
|
836 |
+
|
837 |
+
# @ gde
|
838 |
+
#: libs/lib-setup.php:102
|
839 |
+
msgid "Dark-colored theme, example of custom CSS option"
|
840 |
+
msgstr "Tmavé téma, příklad uživatelských CSS voleb"
|
841 |
+
|
842 |
+
# @ gde
|
843 |
+
#: libs/tab-advanced.php:24
|
844 |
+
msgid "Editor Integration"
|
845 |
+
msgstr "Integrace editoru"
|
846 |
+
|
847 |
+
# @ gde
|
848 |
+
#: libs/tab-advanced.php:28
|
849 |
+
msgid "Insert shortcode from Media Library by default"
|
850 |
+
msgstr "Vložit zkratku z Knihovny médií jako výchozí"
|
851 |
+
|
852 |
+
# @ gde
|
853 |
+
#: libs/tab-advanced.php:34
|
854 |
+
msgid "Maximum File Size"
|
855 |
+
msgstr "Maximální velikost souboru"
|
856 |
+
|
857 |
+
# @ gde
|
858 |
+
#: libs/tab-advanced.php:40
|
859 |
+
msgid ""
|
860 |
+
"Very large files (typically 8-12MB) aren't supported by Google Doc Viewer"
|
861 |
+
msgstr ""
|
862 |
+
"Velmi velké soubory (typicky 8-12MB) nejsou podporovány Google Doc Viewerem"
|
863 |
+
|
864 |
+
# @ gde
|
865 |
+
#: libs/tab-advanced.php:44
|
866 |
+
msgid "Error Handling"
|
867 |
+
msgstr "Zachycování chyb"
|
868 |
+
|
869 |
+
# @ gde
|
870 |
+
#: libs/tab-advanced.php:47
|
871 |
+
msgid "Show error messages inline (otherwise, they appear in HTML comments)"
|
872 |
+
msgstr ""
|
873 |
+
"Zobrazovat chybové hlášky přímo (jinak se budou zobrazovat v HTML "
|
874 |
+
"komentářích)"
|
875 |
+
|
876 |
+
# @ gde
|
877 |
+
#: libs/tab-advanced.php:48
|
878 |
+
msgid "Check for errors before loading viewer"
|
879 |
+
msgstr "Otestovat chyby před načtením prohlížeče"
|
880 |
+
|
881 |
+
# @ gde
|
882 |
+
#: libs/tab-advanced.php:50
|
883 |
+
msgid "Enable extended diagnostic logging <em>(manually enabled)</em>"
|
884 |
+
msgstr "Povolit rozšířené diagnostické logování <em>(manuálně povolit)</em>"
|
885 |
+
|
886 |
+
# @ gde
|
887 |
+
#: libs/tab-advanced.php:52
|
888 |
+
msgid "Enable extended diagnostic logging"
|
889 |
+
msgstr "Povolit rozšířené diagnostické logování"
|
890 |
+
|
891 |
+
# @ gde
|
892 |
+
#: libs/tab-advanced.php:54
|
893 |
+
msgid "clear log"
|
894 |
+
msgstr "vyčistit log"
|
895 |
+
|
896 |
+
# @ gde
|
897 |
+
#: libs/tab-advanced.php:59
|
898 |
+
msgid "show log"
|
899 |
+
msgstr "zobrazit log"
|
900 |
+
|
901 |
+
# @ gde
|
902 |
+
#: libs/tab-advanced.php:65
|
903 |
+
msgid "Version Notifications"
|
904 |
+
msgstr "Sledování verzí"
|
905 |
+
|
906 |
+
# @ gde
|
907 |
+
#: libs/tab-advanced.php:69
|
908 |
+
msgid "All Versions"
|
909 |
+
msgstr "Všechny verze"
|
910 |
+
|
911 |
+
# @ gde
|
912 |
+
#: libs/tab-advanced.php:69
|
913 |
+
msgid "You will receive release and beta notifications"
|
914 |
+
msgstr "Budete přijímat oznámení o nových a beta verzích"
|
915 |
+
|
916 |
+
# @ gde
|
917 |
+
#: libs/tab-advanced.php:70
|
918 |
+
msgid "Release Versions Only"
|
919 |
+
msgstr "Pouze oficiální verze"
|
920 |
+
|
921 |
+
# @ gde
|
922 |
+
#: libs/tab-advanced.php:70
|
923 |
+
msgid "You will not receive beta notifications"
|
924 |
+
msgstr "Nebudete přijímat beta verze"
|
925 |
+
|
926 |
+
# @ gde
|
927 |
+
#: libs/tab-advanced.php:79
|
928 |
+
msgid "Google Analytics"
|
929 |
+
msgstr "Google Analytics"
|
930 |
+
|
931 |
+
# @ gde
|
932 |
+
#: libs/tab-advanced.php:81
|
933 |
+
msgid ""
|
934 |
+
"To use Google Analytics integration, the GA tracking code must already be "
|
935 |
+
"installed on your site."
|
936 |
+
msgstr ""
|
937 |
+
"Chcete-li používat službu Google Analytics, musíte mít naistalován sledovací "
|
938 |
+
"GA kód na vašem webu."
|
939 |
+
|
940 |
+
# @ gde
|
941 |
+
#: libs/tab-advanced.php:82
|
942 |
+
msgid "More Info"
|
943 |
+
msgstr "Více informací"
|
944 |
+
|
945 |
+
# @ gde
|
946 |
+
#: libs/tab-advanced.php:87
|
947 |
+
msgid "Event Tracking"
|
948 |
+
msgstr "Sledování událostí"
|
949 |
+
|
950 |
+
# @ gde
|
951 |
+
#: libs/tab-advanced.php:91
|
952 |
+
msgid "Enabled"
|
953 |
+
msgstr "Povoleno"
|
954 |
+
|
955 |
+
# @ gde
|
956 |
+
#: libs/tab-advanced.php:91
|
957 |
+
msgid "Track events in Google Analytics"
|
958 |
+
msgstr "Sledování událostí v Google Analytics"
|
959 |
+
|
960 |
+
# @ gde
|
961 |
+
#: libs/tab-advanced.php:92
|
962 |
+
msgid "Enabled (Compatibility Mode)"
|
963 |
+
msgstr "Povoleno (mód kompatibility)"
|
964 |
+
|
965 |
+
# @ gde
|
966 |
+
#: libs/tab-advanced.php:92
|
967 |
+
msgid "Track events using older GDE format (< 2.5)"
|
968 |
+
msgstr "Sledování událostí použije starý GDE formát (< 2.5)"
|
969 |
+
|
970 |
+
# @ gde
|
971 |
+
#: libs/tab-advanced.php:93
|
972 |
+
msgid "Disable Google Analytics integration"
|
973 |
+
msgstr "Zakázat Google Analytics integraci"
|
974 |
+
|
975 |
+
# @ gde
|
976 |
+
#: libs/tab-advanced.php:100
|
977 |
+
msgid "Category"
|
978 |
+
msgstr "Kategorie"
|
979 |
+
|
980 |
+
# @ gde
|
981 |
+
#: libs/tab-advanced.php:108
|
982 |
+
msgid "Label"
|
983 |
+
msgstr "Označení"
|
984 |
+
|
985 |
+
# @ gde
|
986 |
+
#: libs/tab-advanced.php:112
|
987 |
+
msgid "Document URL"
|
988 |
+
msgstr "URL dokumentu"
|
989 |
+
|
990 |
+
# @ gde
|
991 |
+
#: libs/tab-advanced.php:113
|
992 |
+
msgid "Document Filename"
|
993 |
+
msgstr "Jméno dokumentu"
|
994 |
+
|
995 |
+
# @ gde
|
996 |
+
#: libs/tab-advanced.php:130
|
997 |
+
msgid "Backup and Import"
|
998 |
+
msgstr "Záloha a import"
|
999 |
+
|
1000 |
+
# @ gde
|
1001 |
+
#: libs/tab-advanced.php:138
|
1002 |
+
msgid ""
|
1003 |
+
"Download a file to your computer containing your profiles, settings, or "
|
1004 |
+
"both, for backup or migration purposes."
|
1005 |
+
msgstr ""
|
1006 |
+
"Stáhněte si do počítače soubor s vaším nastavením a profily pro pozdější "
|
1007 |
+
"migraci nebo jako zálohu."
|
1008 |
+
|
1009 |
+
# @ gde
|
1010 |
+
#: libs/tab-advanced.php:141
|
1011 |
+
msgid "All Profiles and Settings"
|
1012 |
+
msgstr "Všechny profily a nastavení"
|
1013 |
+
|
1014 |
+
# @ gde
|
1015 |
+
#: libs/tab-advanced.php:142 options.php:182 options.php:195
|
1016 |
+
msgid "Profiles"
|
1017 |
+
msgstr "Profily"
|
1018 |
+
|
1019 |
+
# @ gde
|
1020 |
+
#: libs/tab-advanced.php:147
|
1021 |
+
msgid "Download Export File"
|
1022 |
+
msgstr "Stáhnout soubor exportu"
|
1023 |
+
|
1024 |
+
# @ gde
|
1025 |
+
#: libs/tab-advanced.php:155
|
1026 |
+
msgid "To import, choose a file from your computer:"
|
1027 |
+
msgstr "Vyberte soubor pro import"
|
1028 |
+
|
1029 |
+
# @ gde
|
1030 |
+
#: libs/tab-advanced.php:161
|
1031 |
+
msgid "Upload File and Import"
|
1032 |
+
msgstr "Nahrát soubor a importovat"
|
1033 |
+
|
1034 |
+
# @ gde
|
1035 |
+
#: libs/tab-profiles.php:34 libs/tab-profiles.php:47
|
1036 |
+
msgid "ID"
|
1037 |
+
msgstr "ID"
|
1038 |
+
|
1039 |
+
# @ gde
|
1040 |
+
#: libs/tab-profiles.php:37 libs/tab-profiles.php:50 libs/tab-profiles.php:104
|
1041 |
+
msgid "Name"
|
1042 |
+
msgstr "Jméno"
|
1043 |
+
|
1044 |
+
# @ gde
|
1045 |
+
#: libs/tab-profiles.php:40 libs/tab-profiles.php:53 libs/tab-profiles.php:120
|
1046 |
+
msgid "Description"
|
1047 |
+
msgstr "Popis"
|
1048 |
+
|
1049 |
+
# @ gde
|
1050 |
+
#: libs/tab-profiles.php:83
|
1051 |
+
msgid "profile_desc"
|
1052 |
+
msgstr "profile_desc"
|
1053 |
+
|
1054 |
+
# @ gde
|
1055 |
+
#: libs/tab-profiles.php:92
|
1056 |
+
msgid "Reset Profiles"
|
1057 |
+
msgstr "Resetovat profil"
|
1058 |
+
|
1059 |
+
# @ gde
|
1060 |
+
#: libs/tab-profiles.php:100 libs/tab-profiles.php:125
|
1061 |
+
msgid "Add New Profile"
|
1062 |
+
msgstr "Přidat nový profil"
|
1063 |
+
|
1064 |
+
# @ gde
|
1065 |
+
#: libs/tab-profiles.php:106
|
1066 |
+
msgid ""
|
1067 |
+
"The name (or ID number) is used to select the profile via the shortcode. It "
|
1068 |
+
"is all lowercase and contains only letters, numbers, and hyphens."
|
1069 |
+
msgstr ""
|
1070 |
+
"Jméno (nebo ID) profilu které bude použito při použití zkratky pro vložení. "
|
1071 |
+
"Lze použít malá písmena abecedy bez diakritiky, čísla nebo pomlčky."
|
1072 |
+
|
1073 |
+
# @ gde
|
1074 |
+
#: libs/tab-profiles.php:109
|
1075 |
+
msgid "Parent"
|
1076 |
+
msgstr "Rodič"
|
1077 |
+
|
1078 |
+
# @ gde
|
1079 |
+
#: libs/tab-profiles.php:117
|
1080 |
+
msgid "Select which profile to use as a starting point."
|
1081 |
+
msgstr "Vyberte profil, který bude použit jako výchozí bod."
|
1082 |
+
|
1083 |
+
# @ gde
|
1084 |
+
#: libs/tab-profiles.php:122
|
1085 |
+
msgid "Describe the profile's purpose, for your own reference (optional)."
|
1086 |
+
msgstr "Popište účel a specifikaci vašeho profilu (nepovinné)."
|
1087 |
+
|
1088 |
+
# @ gde
|
1089 |
+
#: libs/tab-support.php:38
|
1090 |
+
msgid "Support Request"
|
1091 |
+
msgstr "Požadavek na podporu"
|
1092 |
+
|
1093 |
+
# @ gde
|
1094 |
+
#: libs/tab-support.php:49
|
1095 |
+
msgid "A valid email address is required."
|
1096 |
+
msgstr "Je třeba zadat platnou emailovou adresu."
|
1097 |
+
|
1098 |
+
# @ gde
|
1099 |
+
#: libs/tab-support.php:60
|
1100 |
+
msgid "URL"
|
1101 |
+
msgstr "URL"
|
1102 |
+
|
1103 |
+
# @ gde
|
1104 |
+
#: libs/tab-support.php:63
|
1105 |
+
msgid ""
|
1106 |
+
"Paste the full web address of a page where I should be able to see the "
|
1107 |
+
"problem occurring."
|
1108 |
+
msgstr ""
|
1109 |
+
"Vložte plnou adresu webu nebo stránky, kde jste se setkali s problémem."
|
1110 |
+
|
1111 |
+
# @ gde
|
1112 |
+
#: libs/tab-support.php:77
|
1113 |
+
msgid "Hide"
|
1114 |
+
msgstr "Skrýt"
|
1115 |
+
|
1116 |
+
# @ gde
|
1117 |
+
#: libs/tab-support.php:85
|
1118 |
+
msgid ""
|
1119 |
+
"Note: Profile and settings export and diagnostic log (if present) will be "
|
1120 |
+
"attached."
|
1121 |
+
msgstr ""
|
1122 |
+
"Poznámka: Profil a nastavení exportu a diagnostický log (pokud existuje) "
|
1123 |
+
"bude připojen."
|
1124 |
+
|
1125 |
+
# @ gde
|
1126 |
+
#: libs/tab-support.php:162
|
1127 |
+
msgid "Send Request"
|
1128 |
+
msgstr "Odeslat požadavek"
|
1129 |
+
|
1130 |
+
# @ gde
|
1131 |
+
#: libs/tab-support.php:166
|
1132 |
+
msgid "Request Sent"
|
1133 |
+
msgstr "Požadavek odeslán"
|
1134 |
+
|
1135 |
+
# @ gde
|
1136 |
+
#: libs/tab-support.php:167
|
1137 |
+
msgid ""
|
1138 |
+
"Delivery failed. You can manually send this information to wpp@tnw.org for "
|
1139 |
+
"help."
|
1140 |
+
msgstr "Doručení selhalo. Můžete zkusit zprávu poslat manuálně na wpp@tnw.org."
|
1141 |
+
|
1142 |
+
# @ gde
|
1143 |
+
#: load.php:45
|
1144 |
+
msgid "Direct access to this file is not permitted."
|
1145 |
+
msgstr "Přímý přístup k tomuto souboru není povolen."
|
1146 |
+
|
1147 |
+
# @ gde
|
1148 |
+
#: load.php:71
|
1149 |
+
msgid "The requested file was not found."
|
1150 |
+
msgstr "Požadovaný soubor nenalezen."
|
1151 |
+
|
1152 |
+
# @ gde
|
1153 |
+
#: load.php:76
|
1154 |
+
msgid "Unable to open the requested file. "
|
1155 |
+
msgstr "Nelze otevřít požadovaný soubor."
|
1156 |
+
|
1157 |
+
# @ gde
|
1158 |
+
#: load.php:92 load.php:96
|
1159 |
+
msgid "The document file type is not supported."
|
1160 |
+
msgstr "Tento typ souboru není podporován."
|
1161 |
+
|
1162 |
+
# @ gde
|
1163 |
+
#: options.php:13 options.php:68
|
1164 |
+
msgid "Default profile <strong>updated</strong>."
|
1165 |
+
msgstr "Výchozí profil <strong>aktualizován</strong>."
|
1166 |
+
|
1167 |
+
# @ gde
|
1168 |
+
#: options.php:15 options.php:53
|
1169 |
+
msgid "Unable to update profile."
|
1170 |
+
msgstr "Nelze aktualizovat profil."
|
1171 |
+
|
1172 |
+
# @ gde
|
1173 |
+
#: options.php:28
|
1174 |
+
msgid "Profile name must contain at least one letter."
|
1175 |
+
msgstr "Jméno profilu musí obsahovat alespoň jedno písmeno."
|
1176 |
+
|
1177 |
+
# @ gde
|
1178 |
+
#: options.php:31
|
1179 |
+
msgid "Profile name already exists. Please choose another name."
|
1180 |
+
msgstr "Jméno profilu existuje. Zvolte prosím jiné."
|
1181 |
+
|
1182 |
+
# @ gde
|
1183 |
+
#: options.php:38
|
1184 |
+
msgid "New profile <strong>created</strong>."
|
1185 |
+
msgstr "Nový profil <strong>vytvořen</strong>."
|
1186 |
+
|
1187 |
+
# @ gde
|
1188 |
+
#: options.php:40 options.php:43
|
1189 |
+
msgid "Unable to create profile."
|
1190 |
+
msgstr "Nelze vytvořit profil."
|
1191 |
+
|
1192 |
+
# @ gde
|
1193 |
+
#: options.php:51
|
1194 |
+
msgid "Profile <strong>updated</strong>."
|
1195 |
+
msgstr "Profil <strong>aktualizován</strong>."
|
1196 |
+
|
1197 |
+
# @ gde
|
1198 |
+
#: options.php:61
|
1199 |
+
msgid "Profile <strong>deleted</strong>."
|
1200 |
+
msgstr "Profil <strong>smazán</strong>."
|
1201 |
+
|
1202 |
+
# @ gde
|
1203 |
+
#: options.php:63
|
1204 |
+
msgid "Unable to delete profile."
|
1205 |
+
msgstr "Nelze smazat profil."
|
1206 |
+
|
1207 |
+
# @ gde
|
1208 |
+
#: options.php:105
|
1209 |
+
msgid "Unable to enable diagnostic logging."
|
1210 |
+
msgstr "Povolit/zakázat diagnostické logování."
|
1211 |
+
|
1212 |
+
# @ gde
|
1213 |
+
#: options.php:117 options.php:119
|
1214 |
+
msgid "Settings <strong>updated</strong>."
|
1215 |
+
msgstr "Nastavení <strong>aktualizováno</strong>."
|
1216 |
+
|
1217 |
+
# @ gde
|
1218 |
+
#: options.php:177 options.php:190
|
1219 |
+
msgid "General"
|
1220 |
+
msgstr "Hlavní"
|
1221 |
+
|
1222 |
+
# @ gde
|
1223 |
+
#: options.php:203
|
1224 |
+
msgid "Advanced"
|
1225 |
+
msgstr "Rozšířené"
|
1226 |
+
|
1227 |
+
# @ gde
|
1228 |
+
#: options.php:375
|
1229 |
+
msgid "Edit"
|
1230 |
+
msgstr "Upravit"
|
1231 |
+
|
1232 |
+
# @ gde
|
1233 |
+
#: options.php:376
|
1234 |
+
msgid "Delete"
|
1235 |
+
msgstr "Smazat"
|
1236 |
+
|
1237 |
+
# @ gde
|
1238 |
+
#: options.php:377
|
1239 |
+
msgid "Make Default"
|
1240 |
+
msgstr "Nastavit výchozí"
|
1241 |
+
|
1242 |
+
# @ gde
|
1243 |
+
#: view.php:42
|
1244 |
+
msgid "Invalid URL format"
|
1245 |
+
msgstr "Špatný formát URL"
|
1246 |
+
|
1247 |
+
# @ gde
|
1248 |
+
#: view.php:398
|
1249 |
+
msgid ""
|
1250 |
+
"Unable to retrieve document contents. Please try again or switch to Standard "
|
1251 |
+
"Viewer."
|
1252 |
+
msgstr ""
|
1253 |
+
"Nelze získat obsah dokumentu. Zkuste to prosím znovu, nebo použijte "
|
1254 |
+
"Standardní prohlížeč."
|
libs/lib-setup.php
CHANGED
@@ -11,10 +11,16 @@ function gde_defaults( $type ) {
|
|
11 |
|
12 |
// gather/set environment info
|
13 |
if ( ! $env ) {
|
14 |
-
$
|
15 |
-
$
|
16 |
-
$
|
17 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
}
|
19 |
|
20 |
// define "global" options (multisite only)
|
11 |
|
12 |
// gather/set environment info
|
13 |
if ( ! $env ) {
|
14 |
+
$pdata = gde_get_plugin_data();
|
15 |
+
$baseurl = gde_base_url();
|
16 |
+
$default_lang = gde_get_locale();
|
17 |
+
$apikey = gde_get_api_key( $pdata['Version'] );
|
18 |
+
$env = array(
|
19 |
+
'pdata' => $pdata,
|
20 |
+
'baseurl' => $baseurl,
|
21 |
+
'default_lang' => $default_lang,
|
22 |
+
'apikey' => $apikey
|
23 |
+
);
|
24 |
}
|
25 |
|
26 |
// define "global" options (multisite only)
|
libs/tab-support.php
CHANGED
@@ -135,9 +135,11 @@
|
|
135 |
echo "Yes\n";
|
136 |
} else { echo "No\n"; }
|
137 |
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
|
|
141 |
|
142 |
echo "\n\n--- Other Active Plugins ---\n";
|
143 |
$plugins = get_plugins();
|
135 |
echo "Yes\n";
|
136 |
} else { echo "No\n"; }
|
137 |
|
138 |
+
if (version_compare($wp_version, "3.4", ">") ) {
|
139 |
+
echo "\n-- Active Theme --\n";
|
140 |
+
$theme = wp_get_theme();
|
141 |
+
echo $theme->Name . " " . $theme->Version;
|
142 |
+
}
|
143 |
|
144 |
echo "\n\n--- Other Active Plugins ---\n";
|
145 |
$plugins = get_plugins();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: doc, docx, pdf, ppt, pptx, xls, psd, zip, rar, tiff, ttf, office, powerpoi
|
|
4 |
Author URI: http://www.davistribe.org/code/
|
5 |
Donate link: http://www.davistribe.org/gde/donate/
|
6 |
Requires at least: 3.2
|
7 |
-
Tested up to: 3.
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
|
@@ -42,7 +42,7 @@ Note: Use of this plug-in implies your agreement with Google's published [Terms
|
|
42 |
Translations are welcome; see the [web site](http://www.davistribe.org/gde/notes/#translate "web site") for details.
|
43 |
|
44 |
* English (en\_US), built-in
|
45 |
-
* Czech (cs\_CZ) by Jirka, thanks!
|
46 |
* Dutch (nl\_NL) by Robert van den Breemen, thanks!
|
47 |
* French (fr\_FR) by [Erwan](http://profiles.wordpress.org/erwanlescop "Erwan"), thanks!
|
48 |
* Hungarian (hu\_HU) by [szemcse](http://profiles.wordpress.org/szemcse "szemcse"), thanks!
|
@@ -110,7 +110,7 @@ be "publicly available." Please save the file in a publicly accessible location
|
|
110 |
= What about private documents? =
|
111 |
The file must be publically available, but there is no reason why you need to publish the location. With GDE you can hide the URL as well
|
112 |
as block direct downloads of the file. In combination with robots.txt and other mechanisms for blocking search engines or file browsing on
|
113 |
-
your site, the document can be effectively private to everyone but the viewer itself.
|
114 |
|
115 |
= Does it work with files saved in Google Docs/Drive? =
|
116 |
This plug-in utilizes the viewer from Google Docs in a standalone fashion. There is no direct integration with Google Docs and even those
|
@@ -137,10 +137,17 @@ More common questions are answered on the GDE web site [here](http://www.davistr
|
|
137 |
|
138 |
(E) Enhanced Viewer
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
= 2.5.6 =
|
141 |
* Fixed: (E) Hangs on document load due to Google code changes
|
142 |
* Fixed: (E) Profile language not honored on New Window button tip (thanks Ege)
|
143 |
-
* Fixed: New profiles appear blank on initial load
|
144 |
* Fixed: HTTP status code check is too stringent for some servers
|
145 |
* Fixed: Spurious database error on deactivation if log table not present
|
146 |
* Fixed: PHP error when API key retrieval fails
|
@@ -244,5 +251,5 @@ More common questions are answered on the GDE web site [here](http://www.davistr
|
|
244 |
|
245 |
== Upgrade Notice ==
|
246 |
|
247 |
-
= 2.5.
|
248 |
-
|
4 |
Author URI: http://www.davistribe.org/code/
|
5 |
Donate link: http://www.davistribe.org/gde/donate/
|
6 |
Requires at least: 3.2
|
7 |
+
Tested up to: 3.6
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
|
42 |
Translations are welcome; see the [web site](http://www.davistribe.org/gde/notes/#translate "web site") for details.
|
43 |
|
44 |
* English (en\_US), built-in
|
45 |
+
* Czech (cs\_CZ) by Jirka, thanks!
|
46 |
* Dutch (nl\_NL) by Robert van den Breemen, thanks!
|
47 |
* French (fr\_FR) by [Erwan](http://profiles.wordpress.org/erwanlescop "Erwan"), thanks!
|
48 |
* Hungarian (hu\_HU) by [szemcse](http://profiles.wordpress.org/szemcse "szemcse"), thanks!
|
110 |
= What about private documents? =
|
111 |
The file must be publically available, but there is no reason why you need to publish the location. With GDE you can hide the URL as well
|
112 |
as block direct downloads of the file. In combination with robots.txt and other mechanisms for blocking search engines or file browsing on
|
113 |
+
your site, the document can be effectively private to everyone but the viewer itself. You can also try the [Secure Documents](http://www.davistribe.org/gde/secure-docs/ "Secure Documents") feature for more robust document security.
|
114 |
|
115 |
= Does it work with files saved in Google Docs/Drive? =
|
116 |
This plug-in utilizes the viewer from Google Docs in a standalone fashion. There is no direct integration with Google Docs and even those
|
137 |
|
138 |
(E) Enhanced Viewer
|
139 |
|
140 |
+
= 2.5.7 =
|
141 |
+
* Fixed: No submit button on support tab in using < WP 3.4 (thanks fatherb)
|
142 |
+
* Fixed: save=0 option not respected in some cases
|
143 |
+
* Fixed: (E) cache=0 option breaks secure document display (thanks Manish)
|
144 |
+
* Fixed: (E) Javascript sometimes broken with WP_DEBUG enabled
|
145 |
+
* Changed: (E) Increased timeout period on fetching document contents
|
146 |
+
|
147 |
= 2.5.6 =
|
148 |
* Fixed: (E) Hangs on document load due to Google code changes
|
149 |
* Fixed: (E) Profile language not honored on New Window button tip (thanks Ege)
|
150 |
+
* Fixed: New profiles may appear blank on initial load
|
151 |
* Fixed: HTTP status code check is too stringent for some servers
|
152 |
* Fixed: Spurious database error on deactivation if log table not present
|
153 |
* Fixed: PHP error when API key retrieval fails
|
251 |
|
252 |
== Upgrade Notice ==
|
253 |
|
254 |
+
= 2.5.7 =
|
255 |
+
Maintenance release
|
view.php
CHANGED
@@ -271,7 +271,7 @@ if ( isset( $_GET['a'] ) && $_GET['a'] == 'gt') {
|
|
271 |
*/
|
272 |
function gde_get_contents( $url ) {
|
273 |
|
274 |
-
$response = wp_remote_get( $url, array( 'sslverify' => false ) );
|
275 |
|
276 |
if ( is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) != 200 ) {
|
277 |
gde_dx_log("Error retrieving document");
|
@@ -306,7 +306,7 @@ function gde_curl_get_contents( $url ) {
|
|
306 |
curl_setopt_array( $ch, array(
|
307 |
CURLOPT_URL => $url,
|
308 |
CURLOPT_RETURNTRANSFER => true,
|
309 |
-
CURLOPT_CONNECTTIMEOUT =>
|
310 |
CURLOPT_SSL_VERIFYPEER => false
|
311 |
) );
|
312 |
$file_contents = curl_exec( $ch );
|
271 |
*/
|
272 |
function gde_get_contents( $url ) {
|
273 |
|
274 |
+
$response = wp_remote_get( $url, array( 'timeout' => 15, 'sslverify' => false ) );
|
275 |
|
276 |
if ( is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) != 200 ) {
|
277 |
gde_dx_log("Error retrieving document");
|
306 |
curl_setopt_array( $ch, array(
|
307 |
CURLOPT_URL => $url,
|
308 |
CURLOPT_RETURNTRANSFER => true,
|
309 |
+
CURLOPT_CONNECTTIMEOUT => 15, // HTTP API is 5, overridden in gde_get_contents to match this
|
310 |
CURLOPT_SSL_VERIFYPEER => false
|
311 |
) );
|
312 |
$file_contents = curl_exec( $ch );
|