Version Description
- Removed: Enhanced Viewer and moble option, pending rewrite after Google breakage
- Added: Italian translation (thanks Marco)
- Fixed: Potential block download and hidden toolbar conflict (thanks Tom)
- Fixed: Garbled Cyrillic text in editor dialog (thanks bones852)
Download this release
Release Info
Developer | k3davis |
Plugin | Google Doc Embedder |
Version | 2.5.15 |
Comparing to | |
See all releases |
Code changes from version 2.5.14 to 2.5.15
- gviewer.php +12 -12
- js/gde-jquery.js +9 -1
- languages/gde-it_IT.mo +0 -0
- languages/gde-it_IT.po +1013 -0
- libs/lib-eddialog.php +3 -0
- libs/lib-profile.php +3 -3
- readme.txt +12 -24
- view.php → ~view.php +2 -1
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 |
|
@@ -32,13 +32,13 @@ License: GPLv2
|
|
32 |
*
|
33 |
* @package google-document-embedder
|
34 |
* @author Kevin Davis <wpp@tnw.org>
|
35 |
-
* @copyright Copyright
|
36 |
* @license http://www.gnu.org/licenses/gpl.txt GPL 2.0
|
37 |
* @link http://www.davistribe.org/gde/
|
38 |
*/
|
39 |
|
40 |
// boring init junk
|
41 |
-
$gde_ver = "2.
|
42 |
$gde_db_ver = "1.2"; // update also in gde_activate()
|
43 |
|
44 |
require_once( plugin_dir_path( __FILE__ ) . 'functions.php' );
|
@@ -238,20 +238,20 @@ function gde_do_shortcode( $atts ) {
|
|
238 |
} else {
|
239 |
|
240 |
// which viewer?
|
241 |
-
if ( $profile['viewer'] == "enhanced" ) {
|
242 |
-
|
243 |
// make protocol-agnostic
|
244 |
-
|
245 |
-
} else {
|
246 |
$lnk = "//docs.google.com/viewer?url=" . urlencode( $links[0] ) . "&hl=" . $lang;
|
247 |
-
}
|
248 |
|
249 |
// what mode?
|
250 |
-
if ( $profile['tb_mobile'] == "always" ) {
|
251 |
-
|
252 |
-
} else {
|
253 |
$lnk .= "&embedded=true";
|
254 |
-
}
|
255 |
|
256 |
// build viewer
|
257 |
if ( $viewer == false ) {
|
8 |
Author URI: http://www.davistribe.org/
|
9 |
Text Domain: gde
|
10 |
Domain Path: /languages/
|
11 |
+
Version: 2.5.15
|
12 |
License: GPLv2
|
13 |
*/
|
14 |
|
32 |
*
|
33 |
* @package google-document-embedder
|
34 |
* @author Kevin Davis <wpp@tnw.org>
|
35 |
+
* @copyright Copyright 2014 Kevin Davis
|
36 |
* @license http://www.gnu.org/licenses/gpl.txt GPL 2.0
|
37 |
* @link http://www.davistribe.org/gde/
|
38 |
*/
|
39 |
|
40 |
// boring init junk
|
41 |
+
$gde_ver = "2.6.0.01";
|
42 |
$gde_db_ver = "1.2"; // update also in gde_activate()
|
43 |
|
44 |
require_once( plugin_dir_path( __FILE__ ) . 'functions.php' );
|
238 |
} else {
|
239 |
|
240 |
// which viewer?
|
241 |
+
//if ( $profile['viewer'] == "enhanced" ) {
|
242 |
+
// $lnk = GDE_PLUGIN_URL . "view.php?url=" . urlencode( $links[0] ) . "&hl=" . $lang . "&gpid=" . $pid;
|
243 |
// make protocol-agnostic
|
244 |
+
// $lnk = preg_replace( '/^https?:/i', '', $lnk );
|
245 |
+
//} else {
|
246 |
$lnk = "//docs.google.com/viewer?url=" . urlencode( $links[0] ) . "&hl=" . $lang;
|
247 |
+
//}
|
248 |
|
249 |
// what mode?
|
250 |
+
//if ( $profile['tb_mobile'] == "always" ) {
|
251 |
+
// $lnk .= "&mobile=true";
|
252 |
+
//} else {
|
253 |
$lnk .= "&embedded=true";
|
254 |
+
//}
|
255 |
|
256 |
// build viewer
|
257 |
if ( $viewer == false ) {
|
js/gde-jquery.js
CHANGED
@@ -100,6 +100,11 @@ jQuery(function ($) {
|
|
100 |
toggleLink(lset);
|
101 |
allowSecure();
|
102 |
});
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
$('#vw_bgcolor').attr('data-default-color', '#EBEBEB');
|
105 |
$('#vw_pbcolor').attr('data-default-color', '#DADADA');
|
@@ -152,7 +157,9 @@ jQuery(function ($) {
|
|
152 |
function allowSecure() {
|
153 |
var isSecurable = false;
|
154 |
if ($('#link_show').val() == "none") {
|
155 |
-
if ($('#
|
|
|
|
|
156 |
isSecurable = true;
|
157 |
} else if (! $('#gdet_n').is(':checked')) {
|
158 |
isSecurable = true;
|
@@ -162,6 +169,7 @@ jQuery(function ($) {
|
|
162 |
$('#linkblock').show();
|
163 |
} else {
|
164 |
$('#linkblock').hide();
|
|
|
165 |
}
|
166 |
}
|
167 |
|
100 |
toggleLink(lset);
|
101 |
allowSecure();
|
102 |
});
|
103 |
+
$('#block').click(function() {
|
104 |
+
if (($('#block').is(':checked')) && ($('#gdet_h').is(':checked'))) {
|
105 |
+
$('#gdet_n').attr('checked', false);
|
106 |
+
}
|
107 |
+
});
|
108 |
|
109 |
$('#vw_bgcolor').attr('data-default-color', '#EBEBEB');
|
110 |
$('#vw_pbcolor').attr('data-default-color', '#DADADA');
|
157 |
function allowSecure() {
|
158 |
var isSecurable = false;
|
159 |
if ($('#link_show').val() == "none") {
|
160 |
+
if ($('#gdet_h').is(':checked')) {
|
161 |
+
isSecurable = true;
|
162 |
+
} else if (! $('#gdet_h').is(':checked') && $('#tb_fullscr').val() !== "default") {
|
163 |
isSecurable = true;
|
164 |
} else if (! $('#gdet_n').is(':checked')) {
|
165 |
isSecurable = true;
|
169 |
$('#linkblock').show();
|
170 |
} else {
|
171 |
$('#linkblock').hide();
|
172 |
+
$('#block').attr('checked', false);
|
173 |
}
|
174 |
}
|
175 |
|
languages/gde-it_IT.mo
ADDED
Binary file
|
languages/gde-it_IT.po
ADDED
@@ -0,0 +1,1013 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Google Doc Embedder\n"
|
4 |
+
"POT-Creation-Date: 2013-01-29 13:40-0600\n"
|
5 |
+
"PO-Revision-Date: 2014-10-28 10:46+0100\n"
|
6 |
+
"Last-Translator: Marco Mardegan <marco19931821@gmail.com>\n"
|
7 |
+
"Language-Team: Marco Mardegan <marco19931821@gmail.com>\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
+
"Language: Italian\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
+
|
17 |
+
#: functions-admin.php:266
|
18 |
+
msgid "Import"
|
19 |
+
msgstr "Importa"
|
20 |
+
|
21 |
+
#: functions-admin.php:277
|
22 |
+
msgid "Performing full import..."
|
23 |
+
msgstr "Importazione completa"
|
24 |
+
|
25 |
+
#: functions-admin.php:281 functions-admin.php:306
|
26 |
+
msgid "Importing profiles"
|
27 |
+
msgstr "Importazione profili"
|
28 |
+
|
29 |
+
#: functions-admin.php:287 functions-admin.php:301 functions-admin.php:312
|
30 |
+
#: functions-admin.php:325
|
31 |
+
msgid "done"
|
32 |
+
msgstr "Fatto"
|
33 |
+
|
34 |
+
#: functions-admin.php:290 functions-admin.php:299 functions-admin.php:315
|
35 |
+
#: functions-admin.php:323
|
36 |
+
msgid "failed"
|
37 |
+
msgstr "Fallito"
|
38 |
+
|
39 |
+
#: functions-admin.php:296
|
40 |
+
msgid "Importing settings"
|
41 |
+
msgstr "Importazione impostazioni"
|
42 |
+
|
43 |
+
#: functions-admin.php:319
|
44 |
+
msgid "Importing settings... "
|
45 |
+
msgstr "Importazione impostazioni..."
|
46 |
+
|
47 |
+
#: functions-admin.php:328 functions-admin.php:571 options.php:141
|
48 |
+
msgid "Please select a valid export file to import."
|
49 |
+
msgstr "Per favore, seleziona un file esportato valido da importare."
|
50 |
+
|
51 |
+
#: functions-admin.php:332
|
52 |
+
msgid "All or part of the import failed. See above for information."
|
53 |
+
msgstr ""
|
54 |
+
"Tutte o alcune parti dell'importazione sono fallite, guarda sopra per i "
|
55 |
+
"dettagli."
|
56 |
+
|
57 |
+
#: functions-admin.php:334
|
58 |
+
msgid "Import completed successfully."
|
59 |
+
msgstr "Importazione completata correttamente."
|
60 |
+
|
61 |
+
#: functions-admin.php:337
|
62 |
+
msgid "Return to GDE Settings"
|
63 |
+
msgstr "Ritorna alle impostazioni GDE"
|
64 |
+
|
65 |
+
#: functions-admin.php:414 functions-admin.php:540 options.php:168
|
66 |
+
#: libs/tab-advanced.php:143
|
67 |
+
msgid "Settings"
|
68 |
+
msgstr "Impostazioni"
|
69 |
+
|
70 |
+
#: functions-admin.php:423
|
71 |
+
msgid "You do not have sufficient permissions to access this page"
|
72 |
+
msgstr "Non hai sufficienti privilegi per accedere a questa pagina"
|
73 |
+
|
74 |
+
#: functions-admin.php:528
|
75 |
+
msgid "plugin"
|
76 |
+
msgstr "plugin"
|
77 |
+
|
78 |
+
#: functions-admin.php:529
|
79 |
+
msgid "Version"
|
80 |
+
msgstr "Versione"
|
81 |
+
|
82 |
+
#: functions-admin.php:567
|
83 |
+
msgid "This profile will be permanently deleted."
|
84 |
+
msgstr "Questo profilo verrà rimosso permanentemente."
|
85 |
+
|
86 |
+
#: functions-admin.php:567 functions-admin.php:568 functions-admin.php:569
|
87 |
+
#: functions-admin.php:572
|
88 |
+
msgid "Are you sure?"
|
89 |
+
msgstr "Confermare?"
|
90 |
+
|
91 |
+
#: functions-admin.php:568
|
92 |
+
msgid "Settings for this profile will overwrite the default profile."
|
93 |
+
msgstr ""
|
94 |
+
"Le impostazioni di questo profilo sovrascriveranno quelle del profilo di "
|
95 |
+
"default"
|
96 |
+
|
97 |
+
#: functions-admin.php:569
|
98 |
+
msgid ""
|
99 |
+
"Your profile list will be reset to its original state. All changes will be "
|
100 |
+
"lost."
|
101 |
+
msgstr ""
|
102 |
+
"La tua lista profili verrà ripristinata al suo stato originale. Tutti i "
|
103 |
+
"cambiamenti verranno persi."
|
104 |
+
|
105 |
+
#: functions-admin.php:572
|
106 |
+
msgid ""
|
107 |
+
"Any settings or duplicate profile names in this import will overwrite the "
|
108 |
+
"current values."
|
109 |
+
msgstr ""
|
110 |
+
"Tutte le impostazioni o duplicati dei nomi profilo in questa importazione "
|
111 |
+
"sovrascriveranno i valori correnti."
|
112 |
+
|
113 |
+
#: functions-admin.php:574
|
114 |
+
msgid "Please include a shortcode or message to request support."
|
115 |
+
msgstr ""
|
116 |
+
"Per favore includi uno shortcode o un messaggio per richiedere supporto."
|
117 |
+
|
118 |
+
#: functions-admin.php:612
|
119 |
+
msgid "Embed file using Google Doc Embedder"
|
120 |
+
msgstr "Integra file usando Google Doc Embedder"
|
121 |
+
|
122 |
+
#: functions-admin.php:629 libs/lib-eddialog.php:85
|
123 |
+
msgid "Select the GDE viewer profile to use"
|
124 |
+
msgstr "Seleziona il profilo GDE da usare"
|
125 |
+
|
126 |
+
#: functions-admin.php:780
|
127 |
+
msgid ""
|
128 |
+
"You are running a pre-release version of Google Doc Embedder. Please watch "
|
129 |
+
"this space for important updates."
|
130 |
+
msgstr ""
|
131 |
+
"Stai usando una versione pre-release di Google Doc Embedder. Per favore "
|
132 |
+
"guarda questo spazio per aggiornamenti importanti."
|
133 |
+
|
134 |
+
#: functions.php:104
|
135 |
+
msgid "File not specified, check shortcode syntax"
|
136 |
+
msgstr "File non specificati, controlla la sintassi del shortcode"
|
137 |
+
|
138 |
+
#: functions.php:105
|
139 |
+
msgid "Requested URL is invalid"
|
140 |
+
msgstr "L'URL richiesto non è valido"
|
141 |
+
|
142 |
+
#: functions.php:106
|
143 |
+
msgid "Unsupported File Type"
|
144 |
+
msgstr "Tipo di file non supportati"
|
145 |
+
|
146 |
+
#: functions.php:107
|
147 |
+
msgid "Unable to determine file type from URL"
|
148 |
+
msgstr "Impossibile determinare il tipo di file dall' URL"
|
149 |
+
|
150 |
+
#: functions.php:108
|
151 |
+
msgid "Error retrieving file - if necessary turn off error checking"
|
152 |
+
msgstr ""
|
153 |
+
"Errore nel recupero del file - se necessario disattiva la verifica degli "
|
154 |
+
"errori"
|
155 |
+
|
156 |
+
#: functions.php:232
|
157 |
+
msgid "Unknown"
|
158 |
+
msgstr "Sconosciuto"
|
159 |
+
|
160 |
+
# Megabytes (for file size reporting)
|
161 |
+
#: functions.php:234 libs/tab-advanced.php:38
|
162 |
+
msgid "MB"
|
163 |
+
msgstr "MB"
|
164 |
+
|
165 |
+
#: functions.php:366 gviewer.php:304 libs/lib-setup.php:71
|
166 |
+
#: libs/lib-setup.php:121
|
167 |
+
msgid "Download"
|
168 |
+
msgstr "Download"
|
169 |
+
|
170 |
+
#: functions.php:505 view.php:417
|
171 |
+
msgid "Error"
|
172 |
+
msgstr "Errore"
|
173 |
+
|
174 |
+
#: gviewer.php:78
|
175 |
+
msgid "Unable to load profile settings"
|
176 |
+
msgstr "Impossibile caricare le impostazioni profilo"
|
177 |
+
|
178 |
+
#: gviewer.php:113 gviewer.php:125
|
179 |
+
msgid "Unable to load requested profile."
|
180 |
+
msgstr "Impossibile caricare il profilo richiesto."
|
181 |
+
|
182 |
+
#: gviewer.php:238
|
183 |
+
msgid "Unable to secure document"
|
184 |
+
msgstr "Impossibile garantire documento"
|
185 |
+
|
186 |
+
#: gviewer.php:401
|
187 |
+
msgid "Setup wasn't able to create the required database tables."
|
188 |
+
msgstr ""
|
189 |
+
"L'installazione non è stata capace di creare le tabelle dei database "
|
190 |
+
"richiesti."
|
191 |
+
|
192 |
+
#: load.php:8 libs/lib-formsubmit.php:9 libs/lib-secure.php:9
|
193 |
+
#: libs/lib-service.php:12 libs/lib-service.php:59 libs/lib-service.php:80
|
194 |
+
msgid "You do not have sufficient permissions to access this page."
|
195 |
+
msgstr "Non hai sufficienti privilegi per accedere a questa pagina."
|
196 |
+
|
197 |
+
#: load.php:45
|
198 |
+
msgid "Direct access to this file is not permitted."
|
199 |
+
msgstr "L'accesso diretti a questo file non è consentito."
|
200 |
+
|
201 |
+
#: load.php:71
|
202 |
+
msgid "The requested file was not found."
|
203 |
+
msgstr "Il file richiesti non è stato trovato."
|
204 |
+
|
205 |
+
#: load.php:76
|
206 |
+
msgid "Unable to open the requested file. "
|
207 |
+
msgstr "Impossibile aprire il file richiesto."
|
208 |
+
|
209 |
+
#: load.php:92 load.php:96
|
210 |
+
msgid "The document file type is not supported."
|
211 |
+
msgstr "Il formato del documento non è supportato."
|
212 |
+
|
213 |
+
#: options.php:13 options.php:68
|
214 |
+
msgid "Default profile <strong>updated</strong>."
|
215 |
+
msgstr "Profilo di default <strong>aggiornato</strong>."
|
216 |
+
|
217 |
+
#: options.php:15 options.php:53
|
218 |
+
msgid "Unable to update profile."
|
219 |
+
msgstr "Impossibile aggiornare il profilo."
|
220 |
+
|
221 |
+
#: options.php:28
|
222 |
+
msgid "Profile name must contain at least one letter."
|
223 |
+
msgstr "Il nome profilo deve contenere almenti una lettera."
|
224 |
+
|
225 |
+
#: options.php:31
|
226 |
+
msgid "Profile name already exists. Please choose another name."
|
227 |
+
msgstr "Nome profilo già esistente. Per favore sceglierne un' altro."
|
228 |
+
|
229 |
+
#: options.php:38
|
230 |
+
msgid "New profile <strong>created</strong>."
|
231 |
+
msgstr "Nuovo profilo <strong>creato</strong>."
|
232 |
+
|
233 |
+
#: options.php:40 options.php:43
|
234 |
+
msgid "Unable to create profile."
|
235 |
+
msgstr "Impossibile creare il profilo."
|
236 |
+
|
237 |
+
#: options.php:51
|
238 |
+
msgid "Profile <strong>updated</strong>."
|
239 |
+
msgstr "Profilo <strong>aggiornato</strong>."
|
240 |
+
|
241 |
+
#: options.php:61
|
242 |
+
msgid "Profile <strong>deleted</strong>."
|
243 |
+
msgstr "Profilo <strong>eliminato</strong>."
|
244 |
+
|
245 |
+
#: options.php:63
|
246 |
+
msgid "Unable to delete profile."
|
247 |
+
msgstr "Impossibile eliminare il profilo."
|
248 |
+
|
249 |
+
#: options.php:105
|
250 |
+
msgid "Unable to enable diagnostic logging."
|
251 |
+
msgstr "Impossibile abilitare il logging di diagnostica."
|
252 |
+
|
253 |
+
#: options.php:117 options.php:119
|
254 |
+
msgid "Settings <strong>updated</strong>."
|
255 |
+
msgstr "Impostazioni <strong>aggiornate</strong>."
|
256 |
+
|
257 |
+
#: options.php:177 options.php:190
|
258 |
+
msgid "General"
|
259 |
+
msgstr "Generali"
|
260 |
+
|
261 |
+
#: options.php:182 options.php:195 libs/tab-advanced.php:142
|
262 |
+
msgid "Profiles"
|
263 |
+
msgstr "Profili"
|
264 |
+
|
265 |
+
#: options.php:203
|
266 |
+
msgid "Advanced"
|
267 |
+
msgstr "Avanzate"
|
268 |
+
|
269 |
+
#: options.php:208
|
270 |
+
msgid "Support"
|
271 |
+
msgstr "Supporto"
|
272 |
+
|
273 |
+
#: options.php:349 libs/tab-support.php:29
|
274 |
+
msgid "Help"
|
275 |
+
msgstr "Aiuto"
|
276 |
+
|
277 |
+
#: options.php:375
|
278 |
+
msgid "Edit"
|
279 |
+
msgstr "Modifica"
|
280 |
+
|
281 |
+
#: options.php:376
|
282 |
+
msgid "Delete"
|
283 |
+
msgstr "Elimina"
|
284 |
+
|
285 |
+
#: options.php:377
|
286 |
+
msgid "Make Default"
|
287 |
+
msgstr "Imposta come predefinito"
|
288 |
+
|
289 |
+
#: view.php:42
|
290 |
+
msgid "Invalid URL format"
|
291 |
+
msgstr "Formato URL non valido"
|
292 |
+
|
293 |
+
#: view.php:418
|
294 |
+
msgid ""
|
295 |
+
"Unable to retrieve document contents. Please try again or switch to Standard "
|
296 |
+
"Viewer."
|
297 |
+
msgstr ""
|
298 |
+
"Impossibile richiamare il contenuto del documento. Per favore riprova o "
|
299 |
+
"passa alla visualizzazione Standard."
|
300 |
+
|
301 |
+
#: js/tb-newwin.php:7
|
302 |
+
msgid "View in full screen"
|
303 |
+
msgstr "Visualizza a schermo intero"
|
304 |
+
|
305 |
+
#: js/tb-newwin.php:11
|
306 |
+
msgid "Open in new window"
|
307 |
+
msgstr "Apri in una nuova scheda"
|
308 |
+
|
309 |
+
#: libs/lib-eddialog.php:8
|
310 |
+
msgid "Access denied."
|
311 |
+
msgstr "Accesso negato."
|
312 |
+
|
313 |
+
#: libs/lib-eddialog.php:52
|
314 |
+
msgid "Insert Google Doc Embedder Shortcode"
|
315 |
+
msgstr "Inserisci lo shortcode di Google Doc Embedder"
|
316 |
+
|
317 |
+
#: libs/lib-eddialog.php:55
|
318 |
+
msgid "Required"
|
319 |
+
msgstr "Richiesto"
|
320 |
+
|
321 |
+
#: libs/lib-eddialog.php:59
|
322 |
+
msgid "URL or Filename"
|
323 |
+
msgstr "URL o nome del file"
|
324 |
+
|
325 |
+
#: libs/lib-eddialog.php:60
|
326 |
+
msgid "Full URL or filename to append to profile Base URL"
|
327 |
+
msgstr ""
|
328 |
+
"URL completo o nome del file da aggiungere all' URL del profilo di base"
|
329 |
+
|
330 |
+
#: libs/lib-eddialog.php:65
|
331 |
+
msgid "Profile Base URL will be prefixed"
|
332 |
+
msgstr "L'URL del profilo di base verrà prefisso"
|
333 |
+
|
334 |
+
#: libs/lib-eddialog.php:68
|
335 |
+
msgid "Unsupported file type"
|
336 |
+
msgstr "Tipo di file non supportato"
|
337 |
+
|
338 |
+
#: libs/lib-eddialog.php:74
|
339 |
+
msgid "Profile"
|
340 |
+
msgstr "Profilo"
|
341 |
+
|
342 |
+
#: libs/lib-eddialog.php:93
|
343 |
+
msgid "Optional (Override Profile Settings)"
|
344 |
+
msgstr "Facoltativo (sovrascrivi le impostazioni del profilo)"
|
345 |
+
|
346 |
+
#: libs/lib-eddialog.php:98
|
347 |
+
msgid "Use selected profile settings"
|
348 |
+
msgstr "Usa le impostazioni del profilo selezionato"
|
349 |
+
|
350 |
+
#: libs/lib-eddialog.php:103 libs/lib-profile.php:201
|
351 |
+
msgid "Height"
|
352 |
+
msgstr "Altezza"
|
353 |
+
|
354 |
+
#: libs/lib-eddialog.php:108 libs/lib-profile.php:197
|
355 |
+
msgid "Width"
|
356 |
+
msgstr "Larghezza"
|
357 |
+
|
358 |
+
#: libs/lib-eddialog.php:109
|
359 |
+
#, php-format
|
360 |
+
msgid "Format: 40% or 300px"
|
361 |
+
msgstr "Formato: percentuale o pixel 40% o 300px"
|
362 |
+
|
363 |
+
#: libs/lib-eddialog.php:114
|
364 |
+
msgid "Start Page #"
|
365 |
+
msgstr "Pagina iniziale"
|
366 |
+
|
367 |
+
#: libs/lib-eddialog.php:122
|
368 |
+
msgid "Show Download Link"
|
369 |
+
msgstr "Mostra il link di Download"
|
370 |
+
|
371 |
+
#: libs/lib-eddialog.php:125
|
372 |
+
msgid "Yes"
|
373 |
+
msgstr "Si"
|
374 |
+
|
375 |
+
#: libs/lib-eddialog.php:126
|
376 |
+
msgid "No"
|
377 |
+
msgstr "No"
|
378 |
+
|
379 |
+
#: libs/lib-eddialog.php:132
|
380 |
+
msgid "Disable caching (this document is frequently overwritten)"
|
381 |
+
msgstr "Disabilita caching (se questo documento è frequentemente sovrascritto)"
|
382 |
+
|
383 |
+
#: libs/lib-eddialog.php:143
|
384 |
+
msgid "Shortcode Preview"
|
385 |
+
msgstr "Anteprima shortcode"
|
386 |
+
|
387 |
+
#: libs/lib-eddialog.php:151
|
388 |
+
msgid "Insert"
|
389 |
+
msgstr "Inserisci"
|
390 |
+
|
391 |
+
#: libs/lib-eddialog.php:155
|
392 |
+
msgid "Cancel"
|
393 |
+
msgstr "Cancella"
|
394 |
+
|
395 |
+
#: libs/lib-profile.php:12 libs/tab-advanced.php:134 libs/tab-profiles.php:20
|
396 |
+
msgid ""
|
397 |
+
"Unable to load profile settings. Please re-activate GDE and if the problem "
|
398 |
+
"persists, request help using the \"Support\" tab."
|
399 |
+
msgstr ""
|
400 |
+
"Impossibile caricare le impostazioni del profilo. Per favore ri-attiva GDE e "
|
401 |
+
"se il problema persiste, richiedi aiuto usando la scheda \"Support\"."
|
402 |
+
|
403 |
+
#: libs/lib-profile.php:25
|
404 |
+
msgid "Default Settings"
|
405 |
+
msgstr "Impostazioni di default"
|
406 |
+
|
407 |
+
#: libs/lib-profile.php:26
|
408 |
+
msgid ""
|
409 |
+
"These settings define the default viewer profile, which is used when no "
|
410 |
+
"other profile is specified."
|
411 |
+
msgstr ""
|
412 |
+
"Queste impostazioni definiscono il profilo di visualizzazione predefinito, "
|
413 |
+
"che è usato quando non sono specificati altri profili."
|
414 |
+
|
415 |
+
#: libs/lib-profile.php:30
|
416 |
+
msgid "Edit Profile"
|
417 |
+
msgstr "Modifica profilo"
|
418 |
+
|
419 |
+
#: libs/lib-profile.php:62
|
420 |
+
msgid "Viewer Mode"
|
421 |
+
msgstr "Modalità visualizzazione"
|
422 |
+
|
423 |
+
#: libs/lib-profile.php:66
|
424 |
+
msgid "Standard Viewer"
|
425 |
+
msgstr "Visualizzazione standard"
|
426 |
+
|
427 |
+
#: libs/lib-profile.php:66
|
428 |
+
msgid "Embed the basic viewer only"
|
429 |
+
msgstr "Integra solo la visualizzazione standard"
|
430 |
+
|
431 |
+
#: libs/lib-profile.php:67
|
432 |
+
msgid "Enhanced Viewer"
|
433 |
+
msgstr "Visualizzazione migliore"
|
434 |
+
|
435 |
+
#: libs/lib-profile.php:67
|
436 |
+
msgid "Enable extended viewer options"
|
437 |
+
msgstr "Abilita le opzioni di visualizzazione estesa"
|
438 |
+
|
439 |
+
#: libs/lib-profile.php:77
|
440 |
+
msgid "Enhanced Viewer Settings"
|
441 |
+
msgstr "Impostazioni visualizzazione migliore"
|
442 |
+
|
443 |
+
#: libs/lib-profile.php:81
|
444 |
+
msgid "Toolbar"
|
445 |
+
msgstr "Barra degli strumenti"
|
446 |
+
|
447 |
+
#: libs/lib-profile.php:85
|
448 |
+
msgid "Remove Toolbar"
|
449 |
+
msgstr "Rimuovi barra degli strumenti"
|
450 |
+
|
451 |
+
#: libs/lib-profile.php:90
|
452 |
+
msgid "Use Mobile Toolbar"
|
453 |
+
msgstr "Usa barra degli strumenti mobile"
|
454 |
+
|
455 |
+
#: libs/lib-profile.php:94
|
456 |
+
msgid "Mobile Devices Only (Default)"
|
457 |
+
msgstr "Solo dispositivi mobili (Predefinito)"
|
458 |
+
|
459 |
+
#: libs/lib-profile.php:94
|
460 |
+
msgid "Use mobile toolbar when mobile device detected"
|
461 |
+
msgstr ""
|
462 |
+
"Usa la barra degli strumenti mobile quando viene rilevato un dispositivo "
|
463 |
+
|
464 |
+
#: libs/lib-profile.php:95
|
465 |
+
msgid "Always"
|
466 |
+
msgstr "Sempre"
|
467 |
+
|
468 |
+
#: libs/lib-profile.php:95
|
469 |
+
msgid "Use mobile toolbar for all visitors"
|
470 |
+
msgstr "Usa la barra degli strumenti mobile per tutti i visitatori"
|
471 |
+
|
472 |
+
#: libs/lib-profile.php:96
|
473 |
+
msgid "Never"
|
474 |
+
msgstr "Mai"
|
475 |
+
|
476 |
+
#: libs/lib-profile.php:96
|
477 |
+
msgid "Never use mobile toolbar"
|
478 |
+
msgstr "Non usare mai la barra degli strumenti"
|
479 |
+
|
480 |
+
#: libs/lib-profile.php:103
|
481 |
+
msgid "Toolbar Items"
|
482 |
+
msgstr "Oggetti barra degli strumenti"
|
483 |
+
|
484 |
+
#: libs/lib-profile.php:106
|
485 |
+
msgid "Page Numbers"
|
486 |
+
msgstr "Numero pagina"
|
487 |
+
|
488 |
+
#: libs/lib-profile.php:107
|
489 |
+
msgid "Previous/Next Page"
|
490 |
+
msgstr "Pagina Precedente/Successiva"
|
491 |
+
|
492 |
+
#: libs/lib-profile.php:108
|
493 |
+
msgid "Zoom In/Out"
|
494 |
+
msgstr "Zoon In/Out"
|
495 |
+
|
496 |
+
#: libs/lib-profile.php:109
|
497 |
+
msgid "Full Screen/New Window"
|
498 |
+
msgstr "Schermo intero/Nuova finestra"
|
499 |
+
|
500 |
+
#: libs/lib-profile.php:112
|
501 |
+
msgid ""
|
502 |
+
"Uncheck items to remove from toolbar. Buttons will vary based on file type "
|
503 |
+
"and device used."
|
504 |
+
msgstr ""
|
505 |
+
"Deseleziona gli oggetti da rimuovere dalla barra degli strumenti. I bottoni "
|
506 |
+
"possono variare dal tipo di file e dal dispositivo utilizzato."
|
507 |
+
|
508 |
+
#: libs/lib-profile.php:116
|
509 |
+
msgid "Full Screen Behavior"
|
510 |
+
msgstr "Comportamento schermo intero"
|
511 |
+
|
512 |
+
#: libs/lib-profile.php:120
|
513 |
+
msgid "Google-Hosted Page (Default)"
|
514 |
+
msgstr "Pagina Google-hosted (Predefinito)"
|
515 |
+
|
516 |
+
#: libs/lib-profile.php:122
|
517 |
+
msgid "Full Screen Viewer"
|
518 |
+
msgstr "Visualizzazione schermo intero"
|
519 |
+
|
520 |
+
#: libs/lib-profile.php:127
|
521 |
+
msgid "Open in New Window"
|
522 |
+
msgstr "Apri in una nuova finestra"
|
523 |
+
|
524 |
+
#: libs/lib-profile.php:128
|
525 |
+
msgid "Allow Logged-in Users Only"
|
526 |
+
msgstr "Permetti solo utenti registrati"
|
527 |
+
|
528 |
+
#: libs/lib-profile.php:129
|
529 |
+
msgid "Allow Printing"
|
530 |
+
msgstr "Permetti stampe"
|
531 |
+
|
532 |
+
#: libs/lib-profile.php:134
|
533 |
+
msgid "Page Area Background Color"
|
534 |
+
msgstr "Colore di sfondo per l'area della pagina"
|
535 |
+
|
536 |
+
#: libs/lib-profile.php:139
|
537 |
+
msgid "None (Transparent)"
|
538 |
+
msgstr "Nessuno (Trasparente)"
|
539 |
+
|
540 |
+
#: libs/lib-profile.php:144
|
541 |
+
msgid "Page Border Color"
|
542 |
+
msgstr "Colore bordi della pagina"
|
543 |
+
|
544 |
+
#: libs/lib-profile.php:149
|
545 |
+
msgid "No Border"
|
546 |
+
msgstr "Nessun bordo"
|
547 |
+
|
548 |
+
#: libs/lib-profile.php:154
|
549 |
+
msgid "Custom CSS File"
|
550 |
+
msgstr "File CSS personalizzato"
|
551 |
+
|
552 |
+
#: libs/lib-profile.php:160
|
553 |
+
msgid "URL of custom CSS file (may override some of the above options)"
|
554 |
+
msgstr ""
|
555 |
+
"URL del file CSS personalizzato (potrebbe sovrascrivere alcune delle opzioni "
|
556 |
+
"sopra)"
|
557 |
+
|
558 |
+
#: libs/lib-profile.php:164
|
559 |
+
msgid "Security"
|
560 |
+
msgstr "Sicurezza"
|
561 |
+
|
562 |
+
#: libs/lib-profile.php:167
|
563 |
+
msgid "Hide ability to select/copy/paste text"
|
564 |
+
msgstr "Nascondi possibilità da selezionare/copiare/incollare testo"
|
565 |
+
|
566 |
+
#: libs/lib-profile.php:168
|
567 |
+
msgid "Block all download requests for file"
|
568 |
+
msgstr "Blocca le richieste di download per i file"
|
569 |
+
|
570 |
+
#: libs/lib-profile.php:179
|
571 |
+
msgid "Default Language"
|
572 |
+
msgstr "Lingua predefinita"
|
573 |
+
|
574 |
+
#: libs/lib-profile.php:191
|
575 |
+
msgid "Language of toolbar button tips"
|
576 |
+
msgstr "Lingua suggerimenti per la barra degli strumenti"
|
577 |
+
|
578 |
+
#: libs/lib-profile.php:195
|
579 |
+
msgid "Default Size"
|
580 |
+
msgstr "Dimensione predefinita"
|
581 |
+
|
582 |
+
#: libs/lib-profile.php:206
|
583 |
+
msgid "Enter as pixels or percentage (example: 500px or 100%)"
|
584 |
+
msgstr "Immettere valore in pixels o percentuale (esempio: 500px o 100%)"
|
585 |
+
|
586 |
+
#: libs/lib-profile.php:210
|
587 |
+
msgid "File Base URL"
|
588 |
+
msgstr "URL di base del file"
|
589 |
+
|
590 |
+
#: libs/lib-profile.php:216
|
591 |
+
msgid ""
|
592 |
+
"Any file not starting with <code>http</code> will be prefixed by this value"
|
593 |
+
msgstr ""
|
594 |
+
"Tutti i file che non iniziano con <code>http</code> verranno prefissi da "
|
595 |
+
"questo URL"
|
596 |
+
|
597 |
+
#: libs/lib-profile.php:220
|
598 |
+
msgid "Download Link"
|
599 |
+
msgstr "Link download"
|
600 |
+
|
601 |
+
#: libs/lib-profile.php:224
|
602 |
+
msgid "All Users"
|
603 |
+
msgstr "Tutti gli utenti"
|
604 |
+
|
605 |
+
#: libs/lib-profile.php:224
|
606 |
+
msgid "Download link visible to everyone by default"
|
607 |
+
msgstr "Link di download visibile a tutti"
|
608 |
+
|
609 |
+
#: libs/lib-profile.php:225
|
610 |
+
msgid "Logged-in Users"
|
611 |
+
msgstr "Utenti registrati"
|
612 |
+
|
613 |
+
#: libs/lib-profile.php:225
|
614 |
+
msgid "Download link visible to logged-in users"
|
615 |
+
msgstr "Link di download visibile agli utenti registrati"
|
616 |
+
|
617 |
+
#: libs/lib-profile.php:226 libs/tab-advanced.php:93
|
618 |
+
msgid "None"
|
619 |
+
msgstr "Nessuno"
|
620 |
+
|
621 |
+
#: libs/lib-profile.php:226
|
622 |
+
msgid "Download link is not visible by default"
|
623 |
+
msgstr "Link di download non visibile"
|
624 |
+
|
625 |
+
#: libs/lib-profile.php:233
|
626 |
+
msgid "Link Text"
|
627 |
+
msgstr "Test link"
|
628 |
+
|
629 |
+
#: libs/lib-profile.php:236
|
630 |
+
msgid "You can further customize text using these dynamic replacements:"
|
631 |
+
msgstr "Puoi modificare il testo usando questi sostitutivi dinamici:"
|
632 |
+
|
633 |
+
#: libs/lib-profile.php:237
|
634 |
+
msgid "filename"
|
635 |
+
msgstr "Nome del file"
|
636 |
+
|
637 |
+
#: libs/lib-profile.php:238
|
638 |
+
msgid "file type"
|
639 |
+
msgstr "Tipo di file"
|
640 |
+
|
641 |
+
#: libs/lib-profile.php:239
|
642 |
+
msgid "file size"
|
643 |
+
msgstr "Dimensione del file"
|
644 |
+
|
645 |
+
#: libs/lib-profile.php:243
|
646 |
+
msgid "Link Position"
|
647 |
+
msgstr "Posizione del link"
|
648 |
+
|
649 |
+
#: libs/lib-profile.php:247
|
650 |
+
msgid "Above Viewer"
|
651 |
+
msgstr "Vista superiore"
|
652 |
+
|
653 |
+
#: libs/lib-profile.php:248
|
654 |
+
msgid "Below Viewer"
|
655 |
+
msgstr "Vista inferiore"
|
656 |
+
|
657 |
+
#: libs/lib-profile.php:254
|
658 |
+
msgid "Link Behavior"
|
659 |
+
msgstr "Comportamento link"
|
660 |
+
|
661 |
+
#: libs/lib-profile.php:257
|
662 |
+
msgid "Force download (bypass browser plugins)"
|
663 |
+
msgstr "Forza il download (bypassa i plugin del browser)"
|
664 |
+
|
665 |
+
#: libs/lib-profile.php:258
|
666 |
+
msgid "Shorten URL"
|
667 |
+
msgstr "URL accorciato"
|
668 |
+
|
669 |
+
#: libs/lib-profile.php:266 libs/tab-advanced.php:122
|
670 |
+
msgid "Save Changes"
|
671 |
+
msgstr "Salva cambiamenti"
|
672 |
+
|
673 |
+
#: libs/lib-setup.php:52
|
674 |
+
msgid "This is the default profile, used when no profile is specified."
|
675 |
+
msgstr ""
|
676 |
+
"Questo è il profilo predefinito, usato quando nessun profilo è stato "
|
677 |
+
"specificato"
|
678 |
+
|
679 |
+
#: libs/lib-setup.php:77
|
680 |
+
msgid "Hide document location and text selection, prevent downloads"
|
681 |
+
msgstr ""
|
682 |
+
"Nascondi la locazione dei documenti e la selezione del testo, previene i "
|
683 |
+
"download"
|
684 |
+
|
685 |
+
#: libs/lib-setup.php:102
|
686 |
+
msgid "Dark-colored theme, example of custom CSS option"
|
687 |
+
msgstr "Tema dark, esempio di CSS personalizzato"
|
688 |
+
|
689 |
+
#: libs/tab-advanced.php:19
|
690 |
+
msgid "Plugin Behavior"
|
691 |
+
msgstr "Comportamento plugin"
|
692 |
+
|
693 |
+
#: libs/tab-advanced.php:24
|
694 |
+
msgid "Editor Integration"
|
695 |
+
msgstr "Integrazione editor"
|
696 |
+
|
697 |
+
#: libs/tab-advanced.php:27
|
698 |
+
msgid "Disable all editor integration"
|
699 |
+
msgstr "Disabilita tutte le integrazioni editor"
|
700 |
+
|
701 |
+
#: libs/tab-advanced.php:28
|
702 |
+
msgid "Insert shortcode from Media Library by default"
|
703 |
+
msgstr "Inserisci schortcode dalla libreria Media come predefinito"
|
704 |
+
|
705 |
+
#: libs/tab-advanced.php:29
|
706 |
+
msgid "Allow uploads of all supported media types"
|
707 |
+
msgstr "Abilita l'upload di tutti i tipi di file supportati"
|
708 |
+
|
709 |
+
#: libs/tab-advanced.php:34
|
710 |
+
msgid "Maximum File Size"
|
711 |
+
msgstr "Dimensione massima file"
|
712 |
+
|
713 |
+
#: libs/tab-advanced.php:40
|
714 |
+
msgid ""
|
715 |
+
"Very large files (typically 8-12MB) aren't supported by Google Doc Viewer"
|
716 |
+
msgstr ""
|
717 |
+
"File molto grandi (tipicamente 8-12MB) non sono supportati in Google Doc "
|
718 |
+
"Viewer"
|
719 |
+
|
720 |
+
#: libs/tab-advanced.php:44
|
721 |
+
msgid "Error Handling"
|
722 |
+
msgstr "Gestione degli errori"
|
723 |
+
|
724 |
+
#: libs/tab-advanced.php:47
|
725 |
+
msgid "Show error messages inline (otherwise, they appear in HTML comments)"
|
726 |
+
msgstr ""
|
727 |
+
"Visualizza un messaggio di errore in linea (altrimenti apparirano nei "
|
728 |
+
"commenti HTML)"
|
729 |
+
|
730 |
+
#: libs/tab-advanced.php:48
|
731 |
+
msgid "Check for errors before loading viewer"
|
732 |
+
msgstr "Cerca errori prima di caricare il visualizzatore"
|
733 |
+
|
734 |
+
#: libs/tab-advanced.php:50
|
735 |
+
msgid "Enable extended diagnostic logging <em>(manually enabled)</em>"
|
736 |
+
msgstr ""
|
737 |
+
"Abilita il logging di diagnostica estesa <em>(abilitato manualmente)</em>"
|
738 |
+
|
739 |
+
#: libs/tab-advanced.php:52
|
740 |
+
msgid "Enable extended diagnostic logging"
|
741 |
+
msgstr "Abilita il logging di diagnostica estesa"
|
742 |
+
|
743 |
+
#: libs/tab-advanced.php:54
|
744 |
+
msgid "clear log"
|
745 |
+
msgstr "Pulisci log"
|
746 |
+
|
747 |
+
#: libs/tab-advanced.php:59
|
748 |
+
msgid "show log"
|
749 |
+
msgstr "Mostra log"
|
750 |
+
|
751 |
+
#: libs/tab-advanced.php:65
|
752 |
+
msgid "Version Notifications"
|
753 |
+
msgstr "Notifiche versione"
|
754 |
+
|
755 |
+
#: libs/tab-advanced.php:69
|
756 |
+
msgid "All Versions"
|
757 |
+
msgstr "Tutte le versioni"
|
758 |
+
|
759 |
+
#: libs/tab-advanced.php:69
|
760 |
+
msgid "You will receive release and beta notifications"
|
761 |
+
msgstr "Riceverai la notifica di release e beta"
|
762 |
+
|
763 |
+
#: libs/tab-advanced.php:70
|
764 |
+
msgid "Release Versions Only"
|
765 |
+
msgstr "Solo versioni release"
|
766 |
+
|
767 |
+
#: libs/tab-advanced.php:70
|
768 |
+
msgid "You will not receive beta notifications"
|
769 |
+
msgstr "Non riceverai notifiche beta"
|
770 |
+
|
771 |
+
#: libs/tab-advanced.php:79
|
772 |
+
msgid "Google Analytics"
|
773 |
+
msgstr "Google Analytics"
|
774 |
+
|
775 |
+
#: libs/tab-advanced.php:81
|
776 |
+
msgid ""
|
777 |
+
"To use Google Analytics integration, the GA tracking code must already be "
|
778 |
+
"installed on your site."
|
779 |
+
msgstr ""
|
780 |
+
"Per usare l'integrazione con Google Analytics, il codice di tracciamento GA "
|
781 |
+
"deve essere già installato nel tuo sito."
|
782 |
+
|
783 |
+
#: libs/tab-advanced.php:82
|
784 |
+
msgid "More Info"
|
785 |
+
msgstr "Altre Info"
|
786 |
+
|
787 |
+
#: libs/tab-advanced.php:87
|
788 |
+
msgid "Event Tracking"
|
789 |
+
msgstr "Tracciamento Eventi"
|
790 |
+
|
791 |
+
#: libs/tab-advanced.php:91
|
792 |
+
msgid "Enabled"
|
793 |
+
msgstr "Abilitato"
|
794 |
+
|
795 |
+
#: libs/tab-advanced.php:91
|
796 |
+
msgid "Track events in Google Analytics"
|
797 |
+
msgstr "Traccia eventi in Google Analytics"
|
798 |
+
|
799 |
+
#: libs/tab-advanced.php:92
|
800 |
+
msgid "Enabled (Compatibility Mode)"
|
801 |
+
msgstr "Abilita (modalità compatibilità)"
|
802 |
+
|
803 |
+
#: libs/tab-advanced.php:92
|
804 |
+
msgid "Track events using older GDE format (< 2.5)"
|
805 |
+
msgstr "Traccia eventi usando il vecchio formato GDE (<2.5)"
|
806 |
+
|
807 |
+
#: libs/tab-advanced.php:93
|
808 |
+
msgid "Disable Google Analytics integration"
|
809 |
+
msgstr "Disabilita integrazione Google Analytics"
|
810 |
+
|
811 |
+
#: libs/tab-advanced.php:100
|
812 |
+
msgid "Category"
|
813 |
+
msgstr "Categoria"
|
814 |
+
|
815 |
+
#: libs/tab-advanced.php:108
|
816 |
+
msgid "Label"
|
817 |
+
msgstr "Etichetta"
|
818 |
+
|
819 |
+
#: libs/tab-advanced.php:112
|
820 |
+
msgid "Document URL"
|
821 |
+
msgstr "URL documento"
|
822 |
+
|
823 |
+
#: libs/tab-advanced.php:113
|
824 |
+
msgid "Document Filename"
|
825 |
+
msgstr "Nome documento"
|
826 |
+
|
827 |
+
#: libs/tab-advanced.php:130
|
828 |
+
msgid "Backup and Import"
|
829 |
+
msgstr "Backup e Importa"
|
830 |
+
|
831 |
+
#: libs/tab-advanced.php:138
|
832 |
+
msgid ""
|
833 |
+
"Download a file to your computer containing your profiles, settings, or "
|
834 |
+
"both, for backup or migration purposes."
|
835 |
+
msgstr ""
|
836 |
+
"Scarica un file nel tuo computer contenente il tuo profilo, le impostazioni, "
|
837 |
+
"o entrambe, per backup o migrazione."
|
838 |
+
|
839 |
+
#: libs/tab-advanced.php:141
|
840 |
+
msgid "All Profiles and Settings"
|
841 |
+
msgstr "Tutti i profili e le impostazioni"
|
842 |
+
|
843 |
+
#: libs/tab-advanced.php:147
|
844 |
+
msgid "Download Export File"
|
845 |
+
msgstr "Scarica file esportato"
|
846 |
+
|
847 |
+
#: libs/tab-advanced.php:155
|
848 |
+
msgid "To import, choose a file from your computer:"
|
849 |
+
msgstr "Per importare, seleziona un file dal tuo computer:"
|
850 |
+
|
851 |
+
#: libs/tab-advanced.php:161
|
852 |
+
msgid "Upload File and Import"
|
853 |
+
msgstr "Carica file e importa"
|
854 |
+
|
855 |
+
#: libs/tab-profiles.php:34 libs/tab-profiles.php:47
|
856 |
+
msgid "ID"
|
857 |
+
msgstr "ID"
|
858 |
+
|
859 |
+
#: libs/tab-profiles.php:37 libs/tab-profiles.php:50 libs/tab-profiles.php:104
|
860 |
+
msgid "Name"
|
861 |
+
msgstr "Nome"
|
862 |
+
|
863 |
+
#: libs/tab-profiles.php:40 libs/tab-profiles.php:53 libs/tab-profiles.php:120
|
864 |
+
msgid "Description"
|
865 |
+
msgstr "Descrizione"
|
866 |
+
|
867 |
+
#: libs/tab-profiles.php:92
|
868 |
+
msgid "Reset Profiles"
|
869 |
+
msgstr "Ripristina Profili"
|
870 |
+
|
871 |
+
#: libs/tab-profiles.php:100 libs/tab-profiles.php:125
|
872 |
+
msgid "Add New Profile"
|
873 |
+
msgstr "Aggiungi nuovo profilo"
|
874 |
+
|
875 |
+
#: libs/tab-profiles.php:106
|
876 |
+
msgid ""
|
877 |
+
"The name (or ID number) is used to select the profile via the shortcode. It "
|
878 |
+
"is all lowercase and contains only letters, numbers, and hyphens."
|
879 |
+
msgstr ""
|
880 |
+
"Il nome (o numero ID) è usato per selezionare il profilo tramite lo "
|
881 |
+
"shortcode. Deve essere tutto in minuscolo e contenere solo lettere, numeri e "
|
882 |
+
"trattini."
|
883 |
+
|
884 |
+
#: libs/tab-profiles.php:109
|
885 |
+
msgid "Parent"
|
886 |
+
msgstr "Genitore"
|
887 |
+
|
888 |
+
#: libs/tab-profiles.php:117
|
889 |
+
msgid "Select which profile to use as a starting point."
|
890 |
+
msgstr "Seleziona quale profilo usare come punto di partenza."
|
891 |
+
|
892 |
+
#: libs/tab-profiles.php:122
|
893 |
+
msgid "Describe the profile's purpose, for your own reference (optional)."
|
894 |
+
msgstr "Descrivi lo scopo del profilo, per tua referenza (opzionale)."
|
895 |
+
|
896 |
+
#: libs/tab-support.php:27
|
897 |
+
msgid ""
|
898 |
+
"Most support questions have already been answered. Please review these pages "
|
899 |
+
"before asking for support:"
|
900 |
+
msgstr ""
|
901 |
+
"Molti dubbi e problemi sono già stati risolti. Per favore controlla queste "
|
902 |
+
"pagine prima di chiedere supporto:"
|
903 |
+
|
904 |
+
#: libs/tab-support.php:30
|
905 |
+
msgid "Plugin FAQ"
|
906 |
+
msgstr "FAQ plugin"
|
907 |
+
|
908 |
+
#: libs/tab-support.php:37
|
909 |
+
msgid "Support Request"
|
910 |
+
msgstr "Richiesta supporto"
|
911 |
+
|
912 |
+
#: libs/tab-support.php:38
|
913 |
+
msgid ""
|
914 |
+
"Requests sent from this form are handled by an actual human, so please don't "
|
915 |
+
"send test messages or other spam."
|
916 |
+
msgstr ""
|
917 |
+
"Richieste inviate tramite questo form sono gestite da una persona umana, "
|
918 |
+
"quindi per favore non inviare messaggi di prova o altri tipi di spam."
|
919 |
+
|
920 |
+
#: libs/tab-support.php:42
|
921 |
+
msgid "Your Name"
|
922 |
+
msgstr "Il tuo nome"
|
923 |
+
|
924 |
+
#: libs/tab-support.php:46
|
925 |
+
msgid "Your E-mail"
|
926 |
+
msgstr "La tua e-mail"
|
927 |
+
|
928 |
+
#: libs/tab-support.php:49
|
929 |
+
msgid "A valid email address is required."
|
930 |
+
msgstr "Un indirizzo e-mail valido è richiesto"
|
931 |
+
|
932 |
+
#: libs/tab-support.php:53
|
933 |
+
msgid "Shortcode"
|
934 |
+
msgstr "Shortcode"
|
935 |
+
|
936 |
+
#: libs/tab-support.php:56
|
937 |
+
msgid ""
|
938 |
+
"If you're having a problem getting a specific document to work, paste the "
|
939 |
+
"shortcode you're trying to use here."
|
940 |
+
msgstr ""
|
941 |
+
"Se hai dei problemi con uno specifico tipo di documento, incolla lo "
|
942 |
+
"shortcode che stai cercando di utilizzare."
|
943 |
+
|
944 |
+
#: libs/tab-support.php:60
|
945 |
+
msgid "URL"
|
946 |
+
msgstr "URL"
|
947 |
+
|
948 |
+
#: libs/tab-support.php:63
|
949 |
+
msgid ""
|
950 |
+
"Paste the full web address of a page where I should be able to see the "
|
951 |
+
"problem occurring."
|
952 |
+
msgstr ""
|
953 |
+
"Incolla l'indirizzo web completo della pagina dove posso controllare che "
|
954 |
+
"tipo di problema stai avendo."
|
955 |
+
|
956 |
+
#: libs/tab-support.php:67
|
957 |
+
msgid "Message"
|
958 |
+
msgstr "Messaggio"
|
959 |
+
|
960 |
+
#: libs/tab-support.php:73
|
961 |
+
msgid "Message Options"
|
962 |
+
msgstr "Opzioni messaggio"
|
963 |
+
|
964 |
+
#: libs/tab-support.php:75
|
965 |
+
msgid "Send debug information"
|
966 |
+
msgstr "Invia informazioni di debug"
|
967 |
+
|
968 |
+
#: libs/tab-support.php:76
|
969 |
+
msgid "View"
|
970 |
+
msgstr "Visualizza"
|
971 |
+
|
972 |
+
#: libs/tab-support.php:77
|
973 |
+
msgid "Hide"
|
974 |
+
msgstr "Nascondi"
|
975 |
+
|
976 |
+
#: libs/tab-support.php:78
|
977 |
+
msgid "Send me a copy"
|
978 |
+
msgstr "Inviami una copia"
|
979 |
+
|
980 |
+
#: libs/tab-support.php:84
|
981 |
+
msgid "Debug Information"
|
982 |
+
msgstr "Informazioni di debug"
|
983 |
+
|
984 |
+
#: libs/tab-support.php:85
|
985 |
+
msgid ""
|
986 |
+
"Note: Profile and settings export and diagnostic log (if present) will be "
|
987 |
+
"attached."
|
988 |
+
msgstr ""
|
989 |
+
"Nota: Le impostazioni e il profilo esportato, incluso il log di diagnostica "
|
990 |
+
"(se presente) sarà allegato."
|
991 |
+
|
992 |
+
#: libs/tab-support.php:160
|
993 |
+
msgid ""
|
994 |
+
"I'm less likely to be able to help you if you do not include debug "
|
995 |
+
"information."
|
996 |
+
msgstr ""
|
997 |
+
"Sarà molto più difficile aiutarti se non includi le informazioni di debug."
|
998 |
+
|
999 |
+
#: libs/tab-support.php:162
|
1000 |
+
msgid "Send Request"
|
1001 |
+
msgstr "Invia richiesta"
|
1002 |
+
|
1003 |
+
#: libs/tab-support.php:166
|
1004 |
+
msgid "Request Sent"
|
1005 |
+
msgstr "Richiesta inviata"
|
1006 |
+
|
1007 |
+
#: libs/tab-support.php:167
|
1008 |
+
msgid ""
|
1009 |
+
"Delivery failed. You can manually send this information to wpp@tnw.org for "
|
1010 |
+
"help."
|
1011 |
+
msgstr ""
|
1012 |
+
"Invio fallito. Puoi inviare manualmente queste informazioni a wpp@tnw.org "
|
1013 |
+
"per aiuto."
|
libs/lib-eddialog.php
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
3 |
// access wp functions externally
|
4 |
require_once( dirname( __FILE__ ) . '/lib-bootstrap.php');
|
5 |
|
1 |
<?php
|
2 |
|
3 |
+
// make it work with localization (ie cyrillic languages)
|
4 |
+
header('Content-type: text/html; charset=UTF-8');
|
5 |
+
|
6 |
// access wp functions externally
|
7 |
require_once( dirname( __FILE__ ) . '/lib-bootstrap.php');
|
8 |
|
libs/lib-profile.php
CHANGED
@@ -52,7 +52,7 @@ function gde_profile_form( $id = 1 ) {
|
|
52 |
<select name="viewer" id="viewer">
|
53 |
<?php
|
54 |
gde_profile_option( $p['viewer'], 'standard', __('Standard Viewer', 'gde'), __('Embed the basic viewer only', 'gde') );
|
55 |
-
gde_profile_option( $p['viewer'], 'enhanced', __('Enhanced Viewer', 'gde'), __('Enable extended viewer options', 'gde') );
|
56 |
?>
|
57 |
</select><br/>
|
58 |
<span class="gde-fnote" id="viewer-h"></span>
|
@@ -60,7 +60,7 @@ function gde_profile_form( $id = 1 ) {
|
|
60 |
</tr>
|
61 |
</tbody>
|
62 |
</table>
|
63 |
-
|
64 |
<fieldset class="gde-inner<?php echo $hideenh; ?>" id="gde-enh-fs">
|
65 |
<legend><?php _e('Enhanced Viewer Settings', 'gde'); ?></legend>
|
66 |
<table class="form-table">
|
@@ -158,7 +158,7 @@ function gde_profile_form( $id = 1 ) {
|
|
158 |
</tbody>
|
159 |
</table>
|
160 |
</fieldset>
|
161 |
-
|
162 |
<table class="form-table">
|
163 |
<tbody>
|
164 |
<tr valign="top">
|
52 |
<select name="viewer" id="viewer">
|
53 |
<?php
|
54 |
gde_profile_option( $p['viewer'], 'standard', __('Standard Viewer', 'gde'), __('Embed the basic viewer only', 'gde') );
|
55 |
+
//gde_profile_option( $p['viewer'], 'enhanced', __('Enhanced Viewer', 'gde'), __('Enable extended viewer options', 'gde') );
|
56 |
?>
|
57 |
</select><br/>
|
58 |
<span class="gde-fnote" id="viewer-h"></span>
|
60 |
</tr>
|
61 |
</tbody>
|
62 |
</table>
|
63 |
+
<!--
|
64 |
<fieldset class="gde-inner<?php echo $hideenh; ?>" id="gde-enh-fs">
|
65 |
<legend><?php _e('Enhanced Viewer Settings', 'gde'); ?></legend>
|
66 |
<table class="form-table">
|
158 |
</tbody>
|
159 |
</table>
|
160 |
</fieldset>
|
161 |
+
-->
|
162 |
<table class="form-table">
|
163 |
<tbody>
|
164 |
<tr valign="top">
|
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.5
|
7 |
-
Tested up to:
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
|
@@ -12,6 +12,10 @@ Lets you embed PDF, MS Office, and many other file types in a web page using the
|
|
12 |
|
13 |
== Description ==
|
14 |
|
|
|
|
|
|
|
|
|
15 |
Google Doc Embedder lets you embed several types of files into your WordPress pages using the Google Docs Viewer - allowing inline viewing (and optional downloading) of the following file types, with no Flash or PDF browser plug-ins required:
|
16 |
|
17 |
* Adobe Acrobat (PDF)
|
@@ -46,6 +50,7 @@ Translations are welcome; see the [web site](http://www.davistribe.org/gde/notes
|
|
46 |
* Dutch (nl\_NL) by Niko Strijbol, 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!
|
|
|
49 |
* Russian (ru\_RU) by Józek, thanks!
|
50 |
* Spanish (es\_ES) by [elarequi](http://elarequi.com/propuestastic/ "elarequi"), thanks!
|
51 |
* Turkish (tr\_TR) by [LettoBlog](http://profiles.wordpress.org/lettoblog "LettoBlog"), thanks!
|
@@ -136,6 +141,12 @@ More common questions are answered on the GDE web site [here](http://www.davistr
|
|
136 |
|
137 |
(E) Enhanced Viewer
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
= 2.5.14 =
|
140 |
* Fixed: Download link had no text in some circumstances
|
141 |
* Updated: Hungarian translation (thanks szemcse)
|
@@ -217,29 +228,6 @@ More common questions are answered on the GDE web site [here](http://www.davistr
|
|
217 |
* Fixed: Viewer size from shortcode doesn't default to pixel
|
218 |
* Fixed: Erroneous error message when file validation is blocked
|
219 |
|
220 |
-
= 2.5 =
|
221 |
-
* Added: "Profiles" allow each viewer instance to have its own settings
|
222 |
-
* Added: (E) Private document support (block downloads of source file)
|
223 |
-
* Added: (E) Customize viewer color scheme
|
224 |
-
* Added: (E) Full toolbar customization, including removal
|
225 |
-
* Added: Backup/Import of settings and viewer profiles
|
226 |
-
* Added: page= shortcode attribute to start viewer on designated page
|
227 |
-
* Added: Beta delivery API for automatic updates of pre-release versions
|
228 |
-
* Added: Media Library and editor integration improvements
|
229 |
-
* Added: Support for dynamic protocol document links (thanks Clifford)
|
230 |
-
* Added: French translation (thanks Erwan)
|
231 |
-
* Added: Ukrainian translation (thanks Józek)
|
232 |
-
* Fixed: Uses WordPress HTTP API instead of cURL etc. throughout
|
233 |
-
* Fixed: (E) Hidden toolbar buttons still narrowly clickable (thanks rohan)
|
234 |
-
* Fixed: Editor dialog and default base URL with non-standard include
|
235 |
-
* Fixed: File validation fails if content-length missing (thanks paulod)
|
236 |
-
* Fixed: Invalid HTML in support form
|
237 |
-
* Changed: Completely rewritten core and administrative interface
|
238 |
-
* Changed: (E) Improved default viewer toolbar style
|
239 |
-
* Changed: Now requires WordPress 3.2+ (due to necessary PHP5 functions)
|
240 |
-
* Changed: Errors now show inline instead of as HTML comments by default
|
241 |
-
* Removed: force= shortcode attribute (redundant and confusing)
|
242 |
-
|
243 |
[Full history...](http://www.davistribe.org/gde/changelog/ "Full history")
|
244 |
|
245 |
== Upgrade Notice ==
|
4 |
Author URI: http://www.davistribe.org/code/
|
5 |
Donate link: http://www.davistribe.org/gde/donate/
|
6 |
Requires at least: 3.5
|
7 |
+
Tested up to: 4.0
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
**NOTE: A recent unannounced Google Viewer update removed much of the functionality of this plugin. Pending a rewrite of the Enhanced Viewer functionality or
|
16 |
+
finding another maintainer, this plugin only works in "Standard Viewer" mode for the time being and does not support the full feature set documented. I regret
|
17 |
+
this inconvenience.**
|
18 |
+
|
19 |
Google Doc Embedder lets you embed several types of files into your WordPress pages using the Google Docs Viewer - allowing inline viewing (and optional downloading) of the following file types, with no Flash or PDF browser plug-ins required:
|
20 |
|
21 |
* Adobe Acrobat (PDF)
|
50 |
* Dutch (nl\_NL) by Niko Strijbol, thanks!
|
51 |
* French (fr\_FR) by [Erwan](http://profiles.wordpress.org/erwanlescop "Erwan"), thanks!
|
52 |
* Hungarian (hu\_HU) by [szemcse](http://profiles.wordpress.org/szemcse "szemcse"), thanks!
|
53 |
+
* Italian (it\_IT) by [Marco](https://plus.google.com/+MarcoMardegan "Marco"), thanks!
|
54 |
* Russian (ru\_RU) by Józek, thanks!
|
55 |
* Spanish (es\_ES) by [elarequi](http://elarequi.com/propuestastic/ "elarequi"), thanks!
|
56 |
* Turkish (tr\_TR) by [LettoBlog](http://profiles.wordpress.org/lettoblog "LettoBlog"), thanks!
|
141 |
|
142 |
(E) Enhanced Viewer
|
143 |
|
144 |
+
= 2.5.15 =
|
145 |
+
* Removed: Enhanced Viewer and moble option, pending rewrite after Google breakage
|
146 |
+
* Added: Italian translation (thanks Marco)
|
147 |
+
* Fixed: Potential block download and hidden toolbar conflict (thanks Tom)
|
148 |
+
* Fixed: Garbled Cyrillic text in editor dialog (thanks bones852)
|
149 |
+
|
150 |
= 2.5.14 =
|
151 |
* Fixed: Download link had no text in some circumstances
|
152 |
* Updated: Hungarian translation (thanks szemcse)
|
228 |
* Fixed: Viewer size from shortcode doesn't default to pixel
|
229 |
* Fixed: Erroneous error message when file validation is blocked
|
230 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
[Full history...](http://www.davistribe.org/gde/changelog/ "Full history")
|
232 |
|
233 |
== Upgrade Notice ==
|
view.php → ~view.php
RENAMED
@@ -49,7 +49,8 @@ if ( isset( $_GET['a'] ) && $_GET['a'] == 'gt') {
|
|
49 |
|
50 |
// get profile
|
51 |
if ( isset( $_GET['gpid'] ) ) {
|
52 |
-
|
|
|
53 |
$tb = $profile['tb_flags'];
|
54 |
$vw = $profile['vw_flags'];
|
55 |
$bg = $profile['vw_bgcolor'];
|
49 |
|
50 |
// get profile
|
51 |
if ( isset( $_GET['gpid'] ) ) {
|
52 |
+
$gpid = mysql_real_escape_string( $_GET['gpid'] );
|
53 |
+
if ( $profile = gde_get_profile( $gpid ) ) {
|
54 |
$tb = $profile['tb_flags'];
|
55 |
$vw = $profile['vw_flags'];
|
56 |
$bg = $profile['vw_bgcolor'];
|