Version Description
- Added: Russian translation (thanks Józek)
- Fixed: Default profile not created on clean install (thanks Clifford)
- Fixed: Viewer size from shortcode doesn't default to pixel
- Fixed: Erroneous error message when file validation is blocked
Download this release
Release Info
Developer | k3davis |
Plugin | Google Doc Embedder |
Version | 2.5.1 |
Comparing to | |
See all releases |
Code changes from version 2.5 to 2.5.1
- functions-admin.php +0 -29
- functions.php +50 -4
- gviewer.php +9 -5
- languages/gde-nl_NL.mo +0 -0
- languages/gde-nl_NL.po +968 -0
- languages/gde-ru_RU.mo +0 -0
- languages/gde-ru_RU.po +962 -0
- languages/gde-uk.mo +0 -0
- languages/gde-uk.po +33 -30
- libs/lib-setup.php +1 -1
- options.php +1 -1
- readme.txt +9 -1
functions-admin.php
CHANGED
@@ -501,35 +501,6 @@ function gde_sec_cleanup() {
|
|
501 |
}
|
502 |
*/
|
503 |
|
504 |
-
/**
|
505 |
-
* Sanitize dimensions (width, height)
|
506 |
-
*
|
507 |
-
* @since 2.5.0.1
|
508 |
-
* @return string Sanitized dimensions, or false if value is invalid
|
509 |
-
* @note Replaces old gde_sanitizeOpts function
|
510 |
-
*/
|
511 |
-
function gde_sanitize_dims( $dim ) {
|
512 |
-
// remove any spacing junk
|
513 |
-
$dim = trim( str_replace( " ", "", $dim ) );
|
514 |
-
|
515 |
-
if ( stristr( $dim, 'p' ) ) {
|
516 |
-
$type = "px";
|
517 |
-
$dim = preg_replace( "/[^0-9]*/", '', $dim );
|
518 |
-
} else {
|
519 |
-
$type = "%";
|
520 |
-
$dim = preg_replace( "/[^0-9]*/", '', $dim );
|
521 |
-
if ( (int) $dim > 100 ) {
|
522 |
-
$dim = "100";
|
523 |
-
}
|
524 |
-
}
|
525 |
-
|
526 |
-
if ( $dim ) {
|
527 |
-
return $dim.$type;
|
528 |
-
} else {
|
529 |
-
return false;
|
530 |
-
}
|
531 |
-
}
|
532 |
-
|
533 |
/**
|
534 |
* Include custom css for settings pages
|
535 |
*
|
501 |
}
|
502 |
*/
|
503 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
/**
|
505 |
* Include custom css for settings pages
|
506 |
*
|
functions.php
CHANGED
@@ -112,8 +112,19 @@ function gde_validate_file( $file = NULL, $force ) {
|
|
112 |
}
|
113 |
|
114 |
$result = gde_valid_url( $file );
|
115 |
-
if ( $
|
116 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
} else {
|
118 |
if ( isset( $result['code'] ) && $result['code'] !== 200 ) {
|
119 |
if ( ! gde_valid_link( $file ) ) {
|
@@ -153,7 +164,7 @@ function gde_valid_link($link) {
|
|
153 |
function gde_valid_type($link) {
|
154 |
$supported_exts = implode( "|", array_keys( gde_supported_types() ) );
|
155 |
|
156 |
-
if (preg_match("/\.($supported_exts)$/i"
|
157 |
return true;
|
158 |
} else {
|
159 |
return false;
|
@@ -170,8 +181,14 @@ function gde_valid_url( $url ) {
|
|
170 |
$result['response']['fsize'] = '';
|
171 |
}
|
172 |
return $result['response'];
|
|
|
|
|
|
|
|
|
|
|
173 |
} else {
|
174 |
-
|
|
|
175 |
}
|
176 |
}
|
177 |
|
@@ -207,6 +224,35 @@ function gde_format_bytes( $bytes, $precision = 2 ) {
|
|
207 |
}
|
208 |
}
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
/**
|
211 |
*
|
212 |
*
|
112 |
}
|
113 |
|
114 |
$result = gde_valid_url( $file );
|
115 |
+
if ( $result === true ) {
|
116 |
+
// validation skipped due to service failure
|
117 |
+
return -1;
|
118 |
+
} elseif ( $force == "1" || $force == "yes" ) {
|
119 |
+
if ( is_array( $result ) ) {
|
120 |
+
return $result;
|
121 |
+
} else {
|
122 |
+
// couldn't get file size due to service failure
|
123 |
+
return -1;
|
124 |
+
}
|
125 |
+
} elseif ( ! $result ) {
|
126 |
+
// can't validate
|
127 |
+
return -1;
|
128 |
} else {
|
129 |
if ( isset( $result['code'] ) && $result['code'] !== 200 ) {
|
130 |
if ( ! gde_valid_link( $file ) ) {
|
164 |
function gde_valid_type($link) {
|
165 |
$supported_exts = implode( "|", array_keys( gde_supported_types() ) );
|
166 |
|
167 |
+
if ( preg_match( "/\.($supported_exts)$/i", $link ) ) {
|
168 |
return true;
|
169 |
} else {
|
170 |
return false;
|
181 |
$result['response']['fsize'] = '';
|
182 |
}
|
183 |
return $result['response'];
|
184 |
+
} elseif ( is_wp_error( $result ) ) {
|
185 |
+
// unable to get head
|
186 |
+
$error = $result->get_error_message();
|
187 |
+
gde_dx_log("bypassing URL check; cant validate URL $url: $error");
|
188 |
+
return true;
|
189 |
} else {
|
190 |
+
gde_dx_log("cant determine URL validity; skipping");
|
191 |
+
return true;
|
192 |
}
|
193 |
}
|
194 |
|
224 |
}
|
225 |
}
|
226 |
|
227 |
+
/**
|
228 |
+
* Sanitize dimensions (width, height)
|
229 |
+
*
|
230 |
+
* @since 2.5.0.1
|
231 |
+
* @return string Sanitized dimensions, or false if value is invalid
|
232 |
+
* @note Replaces old gde_sanitizeOpts function
|
233 |
+
*/
|
234 |
+
function gde_sanitize_dims( $dim ) {
|
235 |
+
// remove any spacing junk
|
236 |
+
$dim = trim( str_replace( " ", "", $dim ) );
|
237 |
+
|
238 |
+
if ( ! strstr( $dim, '%' ) ) {
|
239 |
+
$type = "px";
|
240 |
+
$dim = preg_replace( "/[^0-9]*/", '', $dim );
|
241 |
+
} else {
|
242 |
+
$type = "%";
|
243 |
+
$dim = preg_replace( "/[^0-9]*/", '', $dim );
|
244 |
+
if ( (int) $dim > 100 ) {
|
245 |
+
$dim = "100";
|
246 |
+
}
|
247 |
+
}
|
248 |
+
|
249 |
+
if ( $dim ) {
|
250 |
+
return $dim.$type;
|
251 |
+
} else {
|
252 |
+
return false;
|
253 |
+
}
|
254 |
+
}
|
255 |
+
|
256 |
/**
|
257 |
*
|
258 |
*
|
gviewer.php
CHANGED
@@ -8,11 +8,11 @@ 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 |
|
15 |
-
$gde_ver = "2.5.
|
16 |
|
17 |
/**
|
18 |
* LICENSE
|
@@ -48,7 +48,7 @@ global $wp_version;
|
|
48 |
|
49 |
// get global settings
|
50 |
if ( is_multisite() ) {
|
51 |
-
|
52 |
}
|
53 |
|
54 |
// activate plugin, allow full uninstall
|
@@ -147,6 +147,10 @@ function gde_do_shortcode( $atts ) {
|
|
147 |
}
|
148 |
}
|
149 |
|
|
|
|
|
|
|
|
|
150 |
// add base url if needed
|
151 |
if ( ! preg_match( "/^http/i", $file ) ) {
|
152 |
if ( substr( $file, 0, 2 ) == "//" ) {
|
@@ -178,11 +182,11 @@ function gde_do_shortcode( $atts ) {
|
|
178 |
}
|
179 |
$status = gde_validate_file( str_replace( " ", "%20", $file ), $force );
|
180 |
|
181 |
-
if ( ! isset( $code ) && ! is_array( $status ) ) {
|
182 |
// validation failed
|
183 |
$code = gde_show_error( $status );
|
184 |
} elseif ( ! isset( $code ) ) {
|
185 |
-
// validation passed
|
186 |
|
187 |
// check for max filesize
|
188 |
$viewer = true;
|
8 |
Author URI: http://www.davistribe.org/
|
9 |
Text Domain: gde
|
10 |
Domain Path: /languages/
|
11 |
+
Version: 2.5.1
|
12 |
License: GPLv2
|
13 |
*/
|
14 |
|
15 |
+
$gde_ver = "2.5.1.96";
|
16 |
|
17 |
/**
|
18 |
* LICENSE
|
48 |
|
49 |
// get global settings
|
50 |
if ( is_multisite() ) {
|
51 |
+
//$gdeglobals = get_site_option('gde_globals'); // not implemented yet
|
52 |
}
|
53 |
|
54 |
// activate plugin, allow full uninstall
|
147 |
}
|
148 |
}
|
149 |
|
150 |
+
// tweak the dimensions if necessary
|
151 |
+
$width = gde_sanitize_dims( $width );
|
152 |
+
$height = gde_sanitize_dims( $height );
|
153 |
+
|
154 |
// add base url if needed
|
155 |
if ( ! preg_match( "/^http/i", $file ) ) {
|
156 |
if ( substr( $file, 0, 2 ) == "//" ) {
|
182 |
}
|
183 |
$status = gde_validate_file( str_replace( " ", "%20", $file ), $force );
|
184 |
|
185 |
+
if ( ! isset( $code ) && ! is_array( $status ) && $status !== -1 ) {
|
186 |
// validation failed
|
187 |
$code = gde_show_error( $status );
|
188 |
} elseif ( ! isset( $code ) ) {
|
189 |
+
// validation passed or was skipped
|
190 |
|
191 |
// check for max filesize
|
192 |
$viewer = true;
|
languages/gde-nl_NL.mo
ADDED
Binary file
|
languages/gde-nl_NL.po
ADDED
@@ -0,0 +1,968 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Google Doc Embedder\n"
|
4 |
+
"POT-Creation-Date: 2012-12-11 08:12-0600\n"
|
5 |
+
"PO-Revision-Date: 2012-12-13 22:44+0100\n"
|
6 |
+
"Last-Translator: Robert van den Breemen <robert@vandenbreemen.net>\n"
|
7 |
+
"Language-Team: Kevin Davis <wpp@tnw.org>\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 |
+
"X-Poedit-SearchPath-0: .\n"
|
14 |
+
|
15 |
+
#: functions-admin.php:258
|
16 |
+
#, fuzzy
|
17 |
+
msgid "Import"
|
18 |
+
msgstr "Importeer"
|
19 |
+
|
20 |
+
#: functions-admin.php:269
|
21 |
+
msgid "Performing full import..."
|
22 |
+
msgstr "Voer een volledige import uit..."
|
23 |
+
|
24 |
+
#: functions-admin.php:273 functions-admin.php:298
|
25 |
+
msgid "Importing profiles"
|
26 |
+
msgstr "Importeer profielen"
|
27 |
+
|
28 |
+
#: functions-admin.php:279 functions-admin.php:293 functions-admin.php:304
|
29 |
+
#: functions-admin.php:317
|
30 |
+
msgid "done"
|
31 |
+
msgstr "klaar"
|
32 |
+
|
33 |
+
#: functions-admin.php:282 functions-admin.php:291 functions-admin.php:307
|
34 |
+
#: functions-admin.php:315
|
35 |
+
msgid "failed"
|
36 |
+
msgstr "mislukt"
|
37 |
+
|
38 |
+
#: functions-admin.php:288
|
39 |
+
msgid "Importing settings"
|
40 |
+
msgstr "Importeer instellingen"
|
41 |
+
|
42 |
+
#: functions-admin.php:311
|
43 |
+
msgid "Importing settings... "
|
44 |
+
msgstr "Importeer instellingen..."
|
45 |
+
|
46 |
+
#: functions-admin.php:320 functions-admin.php:592 options.php:138
|
47 |
+
msgid "Please select a valid export file to import."
|
48 |
+
msgstr "Selecteer een geldige export file voor importeren."
|
49 |
+
|
50 |
+
#: functions-admin.php:324
|
51 |
+
msgid "All or part of the import failed. See above for information."
|
52 |
+
msgstr ""
|
53 |
+
"Alles of delen van het importeren is mislukt. Zie hierboven voor meer "
|
54 |
+
"informatie."
|
55 |
+
|
56 |
+
#: functions-admin.php:326
|
57 |
+
msgid "Import completed successfully."
|
58 |
+
msgstr "Importeren is volledig succesvol."
|
59 |
+
|
60 |
+
#: functions-admin.php:329
|
61 |
+
msgid "Return to GDE Settings"
|
62 |
+
msgstr "Ga terug naar de GDE instellingen"
|
63 |
+
|
64 |
+
#: functions-admin.php:406 functions-admin.php:561 options.php:165
|
65 |
+
#: libs/tab-advanced.php:140
|
66 |
+
msgid "Settings"
|
67 |
+
msgstr "Instellingen"
|
68 |
+
|
69 |
+
#: functions-admin.php:415
|
70 |
+
msgid "You do not have sufficient permissions to access this page"
|
71 |
+
msgstr "Je hebt onvoldoende rechten voor toegang tot deze pagina"
|
72 |
+
|
73 |
+
#: functions-admin.php:549
|
74 |
+
msgid "plugin"
|
75 |
+
msgstr "plugin"
|
76 |
+
|
77 |
+
#: functions-admin.php:550
|
78 |
+
msgid "Version"
|
79 |
+
msgstr "Versie"
|
80 |
+
|
81 |
+
#: functions-admin.php:588
|
82 |
+
msgid "This profile will be permanently deleted."
|
83 |
+
msgstr "Dit profiel zal volledig verwijderd worden."
|
84 |
+
|
85 |
+
#: functions-admin.php:588 functions-admin.php:589 functions-admin.php:590
|
86 |
+
#: functions-admin.php:593
|
87 |
+
msgid "Are you sure?"
|
88 |
+
msgstr "Weet je het zeker?"
|
89 |
+
|
90 |
+
#: functions-admin.php:589
|
91 |
+
msgid "Settings for this profile will overwrite the default profile."
|
92 |
+
msgstr ""
|
93 |
+
"Instellingen voor dit profiel zullen de standaard instelling overschrijven."
|
94 |
+
|
95 |
+
#: functions-admin.php:590
|
96 |
+
msgid ""
|
97 |
+
"Your profile list will be reset to its original state. All changes will be "
|
98 |
+
"lost."
|
99 |
+
msgstr ""
|
100 |
+
"Je profiel lijst zal teruggezet worden naar de originele instellnigen. Alle "
|
101 |
+
"aanpassingen gaan verloren."
|
102 |
+
|
103 |
+
#: functions-admin.php:593
|
104 |
+
msgid ""
|
105 |
+
"Any settings or duplicate profile names in this import will overwrite the "
|
106 |
+
"current values."
|
107 |
+
msgstr ""
|
108 |
+
"Elke instelling of dubbelen profiel naam die geimporteerd wordt zal "
|
109 |
+
"bestaande waarden overschrijven."
|
110 |
+
|
111 |
+
#: functions-admin.php:595
|
112 |
+
msgid "Please include a shortcode or message to request support."
|
113 |
+
msgstr "Graag inclusief de shortcode of bericht om hulp te verkrijgen."
|
114 |
+
|
115 |
+
#: functions-admin.php:633
|
116 |
+
msgid "Embed file using Google Doc Embedder"
|
117 |
+
msgstr "Embed bestand met Google Doc Embedder"
|
118 |
+
|
119 |
+
#: functions-admin.php:650 libs/lib-eddialog.php:85
|
120 |
+
msgid "Select the GDE viewer profile to use"
|
121 |
+
msgstr "Selecteer het GDE viewer profiel voor gebruik"
|
122 |
+
|
123 |
+
#: functions-admin.php:783
|
124 |
+
msgid ""
|
125 |
+
"You are running a pre-release version of Google Doc Embedder. Please watch "
|
126 |
+
"this space for important updates."
|
127 |
+
msgstr ""
|
128 |
+
"Je gebruikt een pre-release versie van Google Doc Embedder. Kijk hier om "
|
129 |
+
"informatie te zien over belangrijke updates"
|
130 |
+
|
131 |
+
#: functions.php:105
|
132 |
+
msgid "File not specified, check shortcode syntax"
|
133 |
+
msgstr "Bestand niet gespecificieerd, controleer de shortcode syntax"
|
134 |
+
|
135 |
+
#: functions.php:106
|
136 |
+
msgid "Requested URL is invalid"
|
137 |
+
msgstr "Aangevraagde URL is foutief"
|
138 |
+
|
139 |
+
#: functions.php:107
|
140 |
+
msgid "Unsupported File Type"
|
141 |
+
msgstr "Niet ondersteund bestandstype"
|
142 |
+
|
143 |
+
#: functions.php:108
|
144 |
+
msgid "Error retrieving file - if necessary turn off error checking"
|
145 |
+
msgstr "Fout met ophalen van bestand - indien nodig schakel error checking uit"
|
146 |
+
|
147 |
+
#: functions.php:191
|
148 |
+
msgid "Unknown"
|
149 |
+
msgstr "Onbekend"
|
150 |
+
|
151 |
+
#: functions.php:291 gviewer.php:292 libs/lib-setup.php:67
|
152 |
+
#: libs/lib-setup.php:115
|
153 |
+
msgid "Download"
|
154 |
+
msgstr "Download"
|
155 |
+
|
156 |
+
#: functions.php:396 view.php:399
|
157 |
+
msgid "Error"
|
158 |
+
msgstr "Fout"
|
159 |
+
|
160 |
+
#: gviewer.php:73
|
161 |
+
msgid "Unable to load profile settings"
|
162 |
+
msgstr "Niet in staat om de profiel instellingen te laden"
|
163 |
+
|
164 |
+
#: gviewer.php:108 gviewer.php:120
|
165 |
+
msgid "Unable to load requested profile."
|
166 |
+
msgstr "Niet in staat zijn om de gevraagde profiel te laden."
|
167 |
+
|
168 |
+
#: gviewer.php:226
|
169 |
+
msgid "Unable to secure document"
|
170 |
+
msgstr "Niet in staat om het document te beveiligen"
|
171 |
+
|
172 |
+
#: load.php:8 libs/lib-formsubmit.php:9 libs/lib-secure.php:9
|
173 |
+
#: libs/lib-service.php:53 libs/lib-service.php:69 libs/lib-service.php:72
|
174 |
+
msgid "You do not have sufficient permissions to access this page."
|
175 |
+
msgstr "Je hebt onvoldoende toegangsrechten voor deze pagina."
|
176 |
+
|
177 |
+
#: load.php:45
|
178 |
+
msgid "Direct access to this file is not permitted."
|
179 |
+
msgstr "Directe toegang tot deze file is niet toegestaan."
|
180 |
+
|
181 |
+
#: load.php:71
|
182 |
+
msgid "The requested file was not found."
|
183 |
+
msgstr "Gevraagde bestand is niet gevonden."
|
184 |
+
|
185 |
+
#: load.php:76
|
186 |
+
msgid "Unable to open the requested file. "
|
187 |
+
msgstr "Het is niet mogelijk om het gevraagde bestand te openen."
|
188 |
+
|
189 |
+
#: load.php:93 load.php:97
|
190 |
+
msgid "The document file type is not supported."
|
191 |
+
msgstr "Het document bestandstype wordt niet ondersteund."
|
192 |
+
|
193 |
+
#: options.php:13 options.php:65
|
194 |
+
msgid "Default profile <strong>updated</strong>."
|
195 |
+
msgstr "Standaard profile <strong>bijgewerkt</strong>"
|
196 |
+
|
197 |
+
#: options.php:15 options.php:50
|
198 |
+
msgid "Unable to update profile."
|
199 |
+
msgstr "Niet mogelijk het profiel bij te werken."
|
200 |
+
|
201 |
+
#: options.php:28
|
202 |
+
msgid "Profile name already exists. Please choose another name."
|
203 |
+
msgstr "Profiel naam bestaat al. Kies een andere naam."
|
204 |
+
|
205 |
+
#: options.php:35
|
206 |
+
msgid "New profile <strong>created</strong>."
|
207 |
+
msgstr "Nieuw profiel <strong>aangemaakt</strong>."
|
208 |
+
|
209 |
+
#: options.php:37 options.php:40
|
210 |
+
msgid "Unable to create profile."
|
211 |
+
msgstr "Niet mogelijk een een profiel aan te maken"
|
212 |
+
|
213 |
+
#: options.php:48
|
214 |
+
msgid "Profile <strong>updated</strong>."
|
215 |
+
msgstr "Profiel <strong>bijgewerkt</strong>"
|
216 |
+
|
217 |
+
#: options.php:58
|
218 |
+
msgid "Profile <strong>deleted</strong>."
|
219 |
+
msgstr "Profiel <strong>verwijderd</strong>."
|
220 |
+
|
221 |
+
#: options.php:60
|
222 |
+
msgid "Unable to delete profile."
|
223 |
+
msgstr "Het is niet mogelijk om het profiel te verwijderen."
|
224 |
+
|
225 |
+
#: options.php:102
|
226 |
+
msgid "Unable to enable diagnostic logging."
|
227 |
+
msgstr "Het is niet mogelijk om de diagnostische logging in te schakelen."
|
228 |
+
|
229 |
+
#: options.php:114 options.php:116
|
230 |
+
msgid "Settings <strong>updated</strong>."
|
231 |
+
msgstr "Instellingen <strong>bijgewerkt</strong>"
|
232 |
+
|
233 |
+
#: options.php:174 options.php:187
|
234 |
+
msgid "General"
|
235 |
+
msgstr "Algemeen"
|
236 |
+
|
237 |
+
#: options.php:179 options.php:192 libs/tab-advanced.php:139
|
238 |
+
msgid "Profiles"
|
239 |
+
msgstr "Profiel"
|
240 |
+
|
241 |
+
#: options.php:200
|
242 |
+
msgid "Advanced"
|
243 |
+
msgstr "Geavanceerd"
|
244 |
+
|
245 |
+
#: options.php:205
|
246 |
+
msgid "Support"
|
247 |
+
msgstr "Ondersteuning"
|
248 |
+
|
249 |
+
#: options.php:343
|
250 |
+
msgid "Help"
|
251 |
+
msgstr "Help"
|
252 |
+
|
253 |
+
#: options.php:369
|
254 |
+
msgid "Edit"
|
255 |
+
msgstr "Bewerken"
|
256 |
+
|
257 |
+
#: options.php:370
|
258 |
+
msgid "Delete"
|
259 |
+
msgstr "Verwijderen"
|
260 |
+
|
261 |
+
#: options.php:371
|
262 |
+
msgid "Make Default"
|
263 |
+
msgstr "Maak Standaard"
|
264 |
+
|
265 |
+
#: view.php:44
|
266 |
+
msgid "Invalid URL format"
|
267 |
+
msgstr "Foutief URL formaat"
|
268 |
+
|
269 |
+
#: view.php:400
|
270 |
+
msgid ""
|
271 |
+
"Unable to retrieve document contents. Please try again or switch to Standard "
|
272 |
+
"Viewer."
|
273 |
+
msgstr ""
|
274 |
+
"Het is niet mogelijk om de inhoud van het document op te halen. Probeer "
|
275 |
+
"opnieuw of schakel naar de standaard viewer."
|
276 |
+
|
277 |
+
#: js/tb-newwin.php:7
|
278 |
+
msgid "View in full screen"
|
279 |
+
msgstr "Bekijk in volledig scherm"
|
280 |
+
|
281 |
+
#: js/tb-newwin.php:11
|
282 |
+
msgid "Open in new window"
|
283 |
+
msgstr "Open in een nieuw scherm"
|
284 |
+
|
285 |
+
#: libs/lib-eddialog.php:8
|
286 |
+
msgid "Access denied."
|
287 |
+
msgstr "Toegang geweigerd."
|
288 |
+
|
289 |
+
#: libs/lib-eddialog.php:52
|
290 |
+
msgid "Insert Google Doc Embedder Shortcode"
|
291 |
+
msgstr "Invoeg Google Doc Embedder Shortcode"
|
292 |
+
|
293 |
+
#: libs/lib-eddialog.php:55
|
294 |
+
msgid "Required"
|
295 |
+
msgstr "Verplicht"
|
296 |
+
|
297 |
+
#: libs/lib-eddialog.php:59
|
298 |
+
msgid "URL or Filename"
|
299 |
+
msgstr "URL fo bestandsnaam"
|
300 |
+
|
301 |
+
#: libs/lib-eddialog.php:60
|
302 |
+
msgid "Full URL or filename to append to profile Base URL"
|
303 |
+
msgstr ""
|
304 |
+
"Volledige URL fo bestandnaam dat toegevoegd wordt aan Basis URL profiel"
|
305 |
+
|
306 |
+
#: libs/lib-eddialog.php:65
|
307 |
+
msgid "Profile Base URL will be prefixed"
|
308 |
+
msgstr "Basis URL profiel wordt vooraf gegaan door"
|
309 |
+
|
310 |
+
#: libs/lib-eddialog.php:68
|
311 |
+
msgid "Unsupported file type"
|
312 |
+
msgstr "Niet ondersteund bestandstype"
|
313 |
+
|
314 |
+
#: libs/lib-eddialog.php:74
|
315 |
+
msgid "Profile"
|
316 |
+
msgstr "Profiel"
|
317 |
+
|
318 |
+
#: libs/lib-eddialog.php:93
|
319 |
+
msgid "Optional (Override Profile Settings)"
|
320 |
+
msgstr "Optioneel (overschrijven Profielinstellingen)"
|
321 |
+
|
322 |
+
#: libs/lib-eddialog.php:97 libs/lib-profile.php:187
|
323 |
+
msgid "Height"
|
324 |
+
msgstr "Hoogte"
|
325 |
+
|
326 |
+
#: libs/lib-eddialog.php:102 libs/lib-profile.php:183
|
327 |
+
msgid "Width"
|
328 |
+
msgstr "Breedte"
|
329 |
+
|
330 |
+
#: libs/lib-eddialog.php:103
|
331 |
+
#, php-format
|
332 |
+
msgid "Format: 40% or 300px"
|
333 |
+
msgstr "Formaat: 40% of 300px"
|
334 |
+
|
335 |
+
#: libs/lib-eddialog.php:108
|
336 |
+
msgid "Start Page #"
|
337 |
+
msgstr "Start Pagina #"
|
338 |
+
|
339 |
+
#: libs/lib-eddialog.php:116
|
340 |
+
msgid "Show Download Link"
|
341 |
+
msgstr "Toon Download link"
|
342 |
+
|
343 |
+
#: libs/lib-eddialog.php:119
|
344 |
+
msgid "Yes"
|
345 |
+
msgstr "Ja"
|
346 |
+
|
347 |
+
#: libs/lib-eddialog.php:120
|
348 |
+
msgid "No"
|
349 |
+
msgstr "Nee"
|
350 |
+
|
351 |
+
#: libs/lib-eddialog.php:126
|
352 |
+
msgid "Disable caching (this document is frequently overwritten)"
|
353 |
+
msgstr "Uitschakelen caching (als dit document vaak wordt overschreven)"
|
354 |
+
|
355 |
+
#: libs/lib-eddialog.php:136
|
356 |
+
msgid "Shortcode Preview"
|
357 |
+
msgstr "Shortcode voorbeeld"
|
358 |
+
|
359 |
+
#: libs/lib-eddialog.php:144
|
360 |
+
msgid "Insert"
|
361 |
+
msgstr "Invoegen"
|
362 |
+
|
363 |
+
#: libs/lib-eddialog.php:148
|
364 |
+
msgid "Cancel"
|
365 |
+
msgstr "Annuleren"
|
366 |
+
|
367 |
+
#: libs/lib-profile.php:12 libs/tab-advanced.php:131 libs/tab-profiles.php:20
|
368 |
+
msgid ""
|
369 |
+
"Unable to load profile settings. Please re-activate GDE and if the problem "
|
370 |
+
"persists, request help using the \"Support\" tab."
|
371 |
+
msgstr ""
|
372 |
+
"Niet mogelijk om de profiel instellingen te laden. Her-activeer GDE en als "
|
373 |
+
"de problemen blijven bestaan, vraag dan hulp aan via de \"Support\" tabblad."
|
374 |
+
|
375 |
+
#: libs/lib-profile.php:25
|
376 |
+
msgid "Default Settings"
|
377 |
+
msgstr "Standaard instellingen"
|
378 |
+
|
379 |
+
#: libs/lib-profile.php:26
|
380 |
+
msgid ""
|
381 |
+
"These settings define the default viewer profile, which is used when no "
|
382 |
+
"other profile is specified."
|
383 |
+
msgstr ""
|
384 |
+
"Deze instellingen definieren de standaard profiel instellingen, welke worden "
|
385 |
+
"gebruikt als er geen specifiek profiel wordt gebruikt."
|
386 |
+
|
387 |
+
#: libs/lib-profile.php:30
|
388 |
+
msgid "Edit Profile"
|
389 |
+
msgstr "Bewerk profiel"
|
390 |
+
|
391 |
+
#: libs/lib-profile.php:50
|
392 |
+
msgid "Viewer Mode"
|
393 |
+
msgstr "Viewer Modus"
|
394 |
+
|
395 |
+
#: libs/lib-profile.php:54
|
396 |
+
msgid "Standard Viewer"
|
397 |
+
msgstr "Standaard Viewer"
|
398 |
+
|
399 |
+
#: libs/lib-profile.php:54
|
400 |
+
msgid "Embed the basic viewer only"
|
401 |
+
msgstr "Embed alleen de basis viewer"
|
402 |
+
|
403 |
+
#: libs/lib-profile.php:55
|
404 |
+
msgid "Enhanced Viewer"
|
405 |
+
msgstr "Geavanceerde Viewer"
|
406 |
+
|
407 |
+
#: libs/lib-profile.php:55
|
408 |
+
msgid "Enable extended viewer options"
|
409 |
+
msgstr "Inschakelen van uitgebreide viewer mogelijkheden"
|
410 |
+
|
411 |
+
#: libs/lib-profile.php:65
|
412 |
+
msgid "Enhanced Viewer Settings"
|
413 |
+
msgstr "Inschakelen Viewer instellingen"
|
414 |
+
|
415 |
+
#: libs/lib-profile.php:69
|
416 |
+
msgid "Toolbar"
|
417 |
+
msgstr "Knoppenbalk"
|
418 |
+
|
419 |
+
#: libs/lib-profile.php:73
|
420 |
+
msgid "Remove Toolbar"
|
421 |
+
msgstr "Verwijder knoppenbalk"
|
422 |
+
|
423 |
+
#: libs/lib-profile.php:78
|
424 |
+
msgid "Use Mobile Toolbar"
|
425 |
+
msgstr "Gebruik mobiele knoppenbalk"
|
426 |
+
|
427 |
+
#: libs/lib-profile.php:82
|
428 |
+
msgid "Mobile Devices Only (Default)"
|
429 |
+
msgstr "Alleen bij Mobiele Devices (Standaard)"
|
430 |
+
|
431 |
+
#: libs/lib-profile.php:82
|
432 |
+
msgid "Use mobile toolbar when mobile device detected"
|
433 |
+
msgstr "Gebruik mobiele toolbar als er een mobiel device wordt gedetecteerd"
|
434 |
+
|
435 |
+
#: libs/lib-profile.php:83
|
436 |
+
msgid "Always"
|
437 |
+
msgstr "Altijd"
|
438 |
+
|
439 |
+
#: libs/lib-profile.php:83
|
440 |
+
msgid "Use mobile toolbar for all visitors"
|
441 |
+
msgstr "Gebruik mobiele knoppenbalk voor alle gebruikers"
|
442 |
+
|
443 |
+
#: libs/lib-profile.php:84
|
444 |
+
msgid "Never"
|
445 |
+
msgstr "Nooit"
|
446 |
+
|
447 |
+
#: libs/lib-profile.php:84
|
448 |
+
msgid "Never use mobile toolbar"
|
449 |
+
msgstr "Gebruik de mobiele knoppenbalk nooit"
|
450 |
+
|
451 |
+
#: libs/lib-profile.php:91
|
452 |
+
msgid "Toolbar Items"
|
453 |
+
msgstr "Knoppenbalk Items"
|
454 |
+
|
455 |
+
#: libs/lib-profile.php:94
|
456 |
+
msgid "Page Numbers"
|
457 |
+
msgstr "Pagina Nummers"
|
458 |
+
|
459 |
+
#: libs/lib-profile.php:95
|
460 |
+
msgid "Previous/Next Page"
|
461 |
+
msgstr "Vorige/Volgende Pagina"
|
462 |
+
|
463 |
+
#: libs/lib-profile.php:96
|
464 |
+
msgid "Zoom In/Out"
|
465 |
+
msgstr "In/Uitzoomen"
|
466 |
+
|
467 |
+
#: libs/lib-profile.php:97
|
468 |
+
msgid "Full Screen/New Window"
|
469 |
+
msgstr "Volledige scherm/Nieuw scherm"
|
470 |
+
|
471 |
+
#: libs/lib-profile.php:100
|
472 |
+
msgid ""
|
473 |
+
"Uncheck items to remove from toolbar. Buttons will vary based on file type "
|
474 |
+
"and device used."
|
475 |
+
msgstr ""
|
476 |
+
"Vink items uit als ze verwijderd moeten worden van de knoppenbalk. De "
|
477 |
+
"knoppen zullen varieren afhankelijk van het bestandtype en het gebruikte "
|
478 |
+
"device"
|
479 |
+
|
480 |
+
#: libs/lib-profile.php:104
|
481 |
+
msgid "Full Screen Behavior"
|
482 |
+
msgstr "Gedrag bij volledige scherm"
|
483 |
+
|
484 |
+
#: libs/lib-profile.php:108
|
485 |
+
msgid "Google-Hosted Page (Default)"
|
486 |
+
msgstr "Google-Hosted pagina (Standaard)"
|
487 |
+
|
488 |
+
#: libs/lib-profile.php:110
|
489 |
+
msgid "Full Screen Viewer"
|
490 |
+
msgstr "Volledige scherm Viewer"
|
491 |
+
|
492 |
+
#: libs/lib-profile.php:114
|
493 |
+
msgid "Open in New Window"
|
494 |
+
msgstr "Open in een nieuwe pagina"
|
495 |
+
|
496 |
+
#: libs/lib-profile.php:115
|
497 |
+
msgid "Allow Printing"
|
498 |
+
msgstr "Sta printen toe"
|
499 |
+
|
500 |
+
#: libs/lib-profile.php:120
|
501 |
+
msgid "Page Area Background Color"
|
502 |
+
msgstr "Pagina achtergrond kleur"
|
503 |
+
|
504 |
+
#: libs/lib-profile.php:125
|
505 |
+
msgid "None (Transparent)"
|
506 |
+
msgstr "Geen (transparant)"
|
507 |
+
|
508 |
+
#: libs/lib-profile.php:130
|
509 |
+
msgid "Page Border Color"
|
510 |
+
msgstr "Pagina rand kleur"
|
511 |
+
|
512 |
+
#: libs/lib-profile.php:135
|
513 |
+
msgid "No Border"
|
514 |
+
msgstr "Geen kleur"
|
515 |
+
|
516 |
+
#: libs/lib-profile.php:140
|
517 |
+
msgid "Custom CSS File"
|
518 |
+
msgstr "Aangepast CSS bestand"
|
519 |
+
|
520 |
+
#: libs/lib-profile.php:146
|
521 |
+
msgid "URL of custom CSS file (may override some of the above options)"
|
522 |
+
msgstr ""
|
523 |
+
"URL van het aangepaste CSS bestand (enkele van de bovenstaande opties kunnen "
|
524 |
+
"worden overschreven) "
|
525 |
+
|
526 |
+
#: libs/lib-profile.php:150
|
527 |
+
msgid "Security"
|
528 |
+
msgstr "Beveiliging"
|
529 |
+
|
530 |
+
#: libs/lib-profile.php:153
|
531 |
+
msgid "Hide ability to select/copy/paste text"
|
532 |
+
msgstr ""
|
533 |
+
"De mogelijkheid om selecteren/kopieren/plakken van teksten te verbergen"
|
534 |
+
|
535 |
+
#: libs/lib-profile.php:154
|
536 |
+
msgid "Block all download requests for file"
|
537 |
+
msgstr "Blokker alle download aanvragen voor het bestand"
|
538 |
+
|
539 |
+
#: libs/lib-profile.php:165
|
540 |
+
msgid "Default Language"
|
541 |
+
msgstr "Standaard taal"
|
542 |
+
|
543 |
+
#: libs/lib-profile.php:177
|
544 |
+
msgid "Language of toolbar button tips"
|
545 |
+
msgstr "Taal van de knoppenbalk tips"
|
546 |
+
|
547 |
+
#: libs/lib-profile.php:181
|
548 |
+
msgid "Default Size"
|
549 |
+
msgstr "Standaard grootte"
|
550 |
+
|
551 |
+
#: libs/lib-profile.php:192
|
552 |
+
msgid "Enter as pixels or percentage (example: 500px or 100%)"
|
553 |
+
msgstr "Voer in als pixels of percentage (voorbeeld: 500px of 100%)"
|
554 |
+
|
555 |
+
#: libs/lib-profile.php:196
|
556 |
+
msgid "File Base URL"
|
557 |
+
msgstr "Bestands basis URL"
|
558 |
+
|
559 |
+
#: libs/lib-profile.php:202
|
560 |
+
msgid ""
|
561 |
+
"Any file not starting with <code>http</code> will be prefixed by this value"
|
562 |
+
msgstr ""
|
563 |
+
"Elk bestand dat niet begint met <code>http</code> zal deze waarde aan worden "
|
564 |
+
"toegevoegd"
|
565 |
+
|
566 |
+
#: libs/lib-profile.php:206
|
567 |
+
msgid "Download Link"
|
568 |
+
msgstr "Download link"
|
569 |
+
|
570 |
+
#: libs/lib-profile.php:210
|
571 |
+
msgid "All Users"
|
572 |
+
msgstr "Alle gebruikers"
|
573 |
+
|
574 |
+
#: libs/lib-profile.php:210
|
575 |
+
msgid "Download link visible to everyone by default"
|
576 |
+
msgstr "Download link standaard voor iedereen zichtbaar"
|
577 |
+
|
578 |
+
#: libs/lib-profile.php:211
|
579 |
+
msgid "Logged-in Users"
|
580 |
+
msgstr "Ingelogde gebruikers"
|
581 |
+
|
582 |
+
#: libs/lib-profile.php:211
|
583 |
+
msgid "Download link visible to logged-in users"
|
584 |
+
msgstr "Download link zichtbaar voor ingelogde gebruikers"
|
585 |
+
|
586 |
+
#: libs/lib-profile.php:212 libs/tab-advanced.php:90
|
587 |
+
msgid "None"
|
588 |
+
msgstr "Geen"
|
589 |
+
|
590 |
+
#: libs/lib-profile.php:212
|
591 |
+
msgid "Download link is not visible by default"
|
592 |
+
msgstr "Download link niet standaard zichtbaar"
|
593 |
+
|
594 |
+
#: libs/lib-profile.php:219
|
595 |
+
msgid "Link Text"
|
596 |
+
msgstr "Gekoppelde tekst"
|
597 |
+
|
598 |
+
#: libs/lib-profile.php:222
|
599 |
+
msgid "You can further customize text using these dynamic replacements:"
|
600 |
+
msgstr ""
|
601 |
+
"Je kan vder de text aanpassen voor het gebruik van deze dynamische "
|
602 |
+
"vervangingen:"
|
603 |
+
|
604 |
+
#: libs/lib-profile.php:223
|
605 |
+
msgid "filename"
|
606 |
+
msgstr "filename"
|
607 |
+
|
608 |
+
#: libs/lib-profile.php:224
|
609 |
+
msgid "file type"
|
610 |
+
msgstr "file type"
|
611 |
+
|
612 |
+
#: libs/lib-profile.php:225
|
613 |
+
msgid "file size"
|
614 |
+
msgstr "file size"
|
615 |
+
|
616 |
+
#: libs/lib-profile.php:229
|
617 |
+
msgid "Link Position"
|
618 |
+
msgstr "Locatie link"
|
619 |
+
|
620 |
+
#: libs/lib-profile.php:233
|
621 |
+
msgid "Above Viewer"
|
622 |
+
msgstr "Boven Viewer"
|
623 |
+
|
624 |
+
#: libs/lib-profile.php:234
|
625 |
+
msgid "Below Viewer"
|
626 |
+
msgstr "Onder Viewer"
|
627 |
+
|
628 |
+
#: libs/lib-profile.php:240
|
629 |
+
msgid "Link Behavior"
|
630 |
+
msgstr "Gedrag Link"
|
631 |
+
|
632 |
+
#: libs/lib-profile.php:243
|
633 |
+
msgid "Force download (bypass browser plugins)"
|
634 |
+
msgstr "Forceerd download (negeer browser plugins)"
|
635 |
+
|
636 |
+
#: libs/lib-profile.php:244
|
637 |
+
msgid "Shorten URL"
|
638 |
+
msgstr "Maak URL korter"
|
639 |
+
|
640 |
+
#: libs/lib-profile.php:252 libs/tab-advanced.php:119
|
641 |
+
msgid "Save Changes"
|
642 |
+
msgstr "Sla aanpassingen op"
|
643 |
+
|
644 |
+
#: libs/lib-setup.php:49 libs/lib-setup.php:293
|
645 |
+
msgid "This is the default profile, used when no profile is specified."
|
646 |
+
msgstr "Dit is het standaard profiel, als er geen profiel is gespecificeerd."
|
647 |
+
|
648 |
+
#: libs/lib-setup.php:73
|
649 |
+
msgid "Hide document location and text selection, prevent downloads"
|
650 |
+
msgstr "Verberg het document en de text selecties, voorkom downloads"
|
651 |
+
|
652 |
+
#: libs/lib-setup.php:97
|
653 |
+
msgid "Dark-colored theme, example of custom CSS option"
|
654 |
+
msgstr "Donker-gekleurd thema, voorbeeld van de aangepast CSS optie"
|
655 |
+
|
656 |
+
#: libs/tab-advanced.php:19
|
657 |
+
msgid "Plugin Behavior"
|
658 |
+
msgstr "Gedrag plugin"
|
659 |
+
|
660 |
+
#: libs/tab-advanced.php:24
|
661 |
+
msgid "Editor Integration"
|
662 |
+
msgstr "Integratie van de editor"
|
663 |
+
|
664 |
+
#: libs/tab-advanced.php:27
|
665 |
+
msgid "Disable all editor integration"
|
666 |
+
msgstr "Schakel alle editor integratie"
|
667 |
+
|
668 |
+
#: libs/tab-advanced.php:29
|
669 |
+
msgid "Insert shortcode from Media Library by default"
|
670 |
+
msgstr "Standaard shortcode invoegen vanuit de Media Library "
|
671 |
+
|
672 |
+
#: libs/tab-advanced.php:31
|
673 |
+
msgid "Allow uploads of all supported media types"
|
674 |
+
msgstr "Toestaan van de upload van alle ondersteunde media typen"
|
675 |
+
|
676 |
+
#: libs/tab-advanced.php:36
|
677 |
+
msgid "Maximum File Size"
|
678 |
+
msgstr "Maximale bestand grootte"
|
679 |
+
|
680 |
+
#: libs/tab-advanced.php:42
|
681 |
+
msgid ""
|
682 |
+
"Very large files (typically 8-12MB) aren't supported by Google Doc Viewer"
|
683 |
+
msgstr ""
|
684 |
+
"Erg grote bestanden (maximaal 8-12 MB) worden niet ondersteund door de "
|
685 |
+
"Google Doc Viewer"
|
686 |
+
|
687 |
+
#: libs/tab-advanced.php:46
|
688 |
+
msgid "Error Handling"
|
689 |
+
msgstr "Fout afhandeling"
|
690 |
+
|
691 |
+
#: libs/tab-advanced.php:49
|
692 |
+
msgid "Show error messages inline (otherwise, they appear in HTML comments)"
|
693 |
+
msgstr ""
|
694 |
+
"Toon fout meldingen inline (anders, worden ze getoond als HTML commentaren)"
|
695 |
+
|
696 |
+
#: libs/tab-advanced.php:50
|
697 |
+
msgid "Check for errors before loading viewer"
|
698 |
+
msgstr "Controleer op fouten voordat de viewer geladen wordt"
|
699 |
+
|
700 |
+
#: libs/tab-advanced.php:52
|
701 |
+
msgid "Enable extended diagnostic logging <em>(manually enabled)</em>"
|
702 |
+
msgstr ""
|
703 |
+
"Schakel de uitgebreide diagnotische logging <em>(handmatige inschakelen)</em>"
|
704 |
+
|
705 |
+
#: libs/tab-advanced.php:54
|
706 |
+
msgid "Enable extended diagnostic logging"
|
707 |
+
msgstr "Inschakelen van de uitgebreide logging"
|
708 |
+
|
709 |
+
#: libs/tab-advanced.php:55
|
710 |
+
msgid "show log"
|
711 |
+
msgstr "toon log informatie"
|
712 |
+
|
713 |
+
#: libs/tab-advanced.php:56
|
714 |
+
msgid "clear log"
|
715 |
+
msgstr "verwijder log informatie"
|
716 |
+
|
717 |
+
#: libs/tab-advanced.php:62
|
718 |
+
msgid "Version Notifications"
|
719 |
+
msgstr "Versie berichten"
|
720 |
+
|
721 |
+
#: libs/tab-advanced.php:66
|
722 |
+
msgid "All Versions"
|
723 |
+
msgstr "Alle versies"
|
724 |
+
|
725 |
+
#: libs/tab-advanced.php:66
|
726 |
+
msgid "You will receive release and beta notifications"
|
727 |
+
msgstr "Je krijg een bericht voor elke release en beta versie"
|
728 |
+
|
729 |
+
#: libs/tab-advanced.php:67
|
730 |
+
msgid "Release Versions Only"
|
731 |
+
msgstr "Alleen release versie"
|
732 |
+
|
733 |
+
#: libs/tab-advanced.php:67
|
734 |
+
msgid "You will not receive beta notifications"
|
735 |
+
msgstr "Je krijgt geen beta berichten"
|
736 |
+
|
737 |
+
#: libs/tab-advanced.php:76
|
738 |
+
msgid "Google Analytics"
|
739 |
+
msgstr "Google Analytics"
|
740 |
+
|
741 |
+
#: libs/tab-advanced.php:78
|
742 |
+
msgid ""
|
743 |
+
"To use Google Analytics integration, the GA tracking code must already be "
|
744 |
+
"installed on your site."
|
745 |
+
msgstr ""
|
746 |
+
"Om Google Analytics integratie te gebruiken, moet de GA tracking code "
|
747 |
+
"geïnstalleerd zijn op je site."
|
748 |
+
|
749 |
+
#: libs/tab-advanced.php:79
|
750 |
+
msgid "More Info"
|
751 |
+
msgstr "Meer informatie"
|
752 |
+
|
753 |
+
#: libs/tab-advanced.php:84
|
754 |
+
msgid "Event Tracking"
|
755 |
+
msgstr "Event Tracking"
|
756 |
+
|
757 |
+
#: libs/tab-advanced.php:88
|
758 |
+
msgid "Enabled"
|
759 |
+
msgstr "Ingeschakeld"
|
760 |
+
|
761 |
+
#: libs/tab-advanced.php:88
|
762 |
+
msgid "Track events in Google Analytics"
|
763 |
+
msgstr "Track events in Google Analytics"
|
764 |
+
|
765 |
+
#: libs/tab-advanced.php:89
|
766 |
+
msgid "Enabled (Compatibility Mode)"
|
767 |
+
msgstr "Inschakelen (Compatibliteits Modus)"
|
768 |
+
|
769 |
+
#: libs/tab-advanced.php:89
|
770 |
+
msgid "Track events using older GDE format (< 2.5)"
|
771 |
+
msgstr "Track events met oudere GDE formaat (<2.5)"
|
772 |
+
|
773 |
+
#: libs/tab-advanced.php:90
|
774 |
+
msgid "Disable Google Analytics integration"
|
775 |
+
msgstr "Uitschakelen van Google Analytics integratie"
|
776 |
+
|
777 |
+
#: libs/tab-advanced.php:97
|
778 |
+
msgid "Category"
|
779 |
+
msgstr "Category"
|
780 |
+
|
781 |
+
#: libs/tab-advanced.php:105
|
782 |
+
msgid "Label"
|
783 |
+
msgstr "Label"
|
784 |
+
|
785 |
+
#: libs/tab-advanced.php:109
|
786 |
+
msgid "Document URL"
|
787 |
+
msgstr "Document URL"
|
788 |
+
|
789 |
+
#: libs/tab-advanced.php:110
|
790 |
+
msgid "Document Filename"
|
791 |
+
msgstr "Document Naam"
|
792 |
+
|
793 |
+
#: libs/tab-advanced.php:127
|
794 |
+
msgid "Backup and Import"
|
795 |
+
msgstr "Backup en importeren"
|
796 |
+
|
797 |
+
#: libs/tab-advanced.php:135
|
798 |
+
msgid ""
|
799 |
+
"Download a file to your computer containing your profiles, settings, or "
|
800 |
+
"both, for backup or migration purposes."
|
801 |
+
msgstr ""
|
802 |
+
"Download een bestand naar je computer met jou profielen, instellingen, of "
|
803 |
+
"beiden, voor backup of migratie doeleinden."
|
804 |
+
|
805 |
+
#: libs/tab-advanced.php:138
|
806 |
+
msgid "All Profiles and Settings"
|
807 |
+
msgstr "Alle profielen en instellingen."
|
808 |
+
|
809 |
+
#: libs/tab-advanced.php:144
|
810 |
+
msgid "Download Export File"
|
811 |
+
msgstr "Download exporteer bestand"
|
812 |
+
|
813 |
+
#: libs/tab-advanced.php:152
|
814 |
+
msgid "To import, choose a file from your computer:"
|
815 |
+
msgstr "Om te importeren, kies een bestand van je computer:"
|
816 |
+
|
817 |
+
#: libs/tab-advanced.php:158
|
818 |
+
msgid "Upload File and Import"
|
819 |
+
msgstr "Upload bestand en importeer"
|
820 |
+
|
821 |
+
#: libs/tab-profiles.php:34 libs/tab-profiles.php:47
|
822 |
+
msgid "ID"
|
823 |
+
msgstr "ID"
|
824 |
+
|
825 |
+
#: libs/tab-profiles.php:37 libs/tab-profiles.php:50 libs/tab-profiles.php:104
|
826 |
+
msgid "Name"
|
827 |
+
msgstr "Naam"
|
828 |
+
|
829 |
+
#: libs/tab-profiles.php:40 libs/tab-profiles.php:53 libs/tab-profiles.php:120
|
830 |
+
msgid "Description"
|
831 |
+
msgstr "Beschrijving"
|
832 |
+
|
833 |
+
#: libs/tab-profiles.php:92
|
834 |
+
msgid "Reset Profiles"
|
835 |
+
msgstr "Reset profielen"
|
836 |
+
|
837 |
+
#: libs/tab-profiles.php:100 libs/tab-profiles.php:125
|
838 |
+
msgid "Add New Profile"
|
839 |
+
msgstr "Toevoegen nieuw profiel"
|
840 |
+
|
841 |
+
#: libs/tab-profiles.php:106
|
842 |
+
msgid ""
|
843 |
+
"The name (or ID number) is used to select the profile via the shortcode. It "
|
844 |
+
"is all lowercase and contains only letters, numbers, and hyphens."
|
845 |
+
msgstr ""
|
846 |
+
"De naam (of ID nummer) dat gebruikt wordt voor het selecteren via de "
|
847 |
+
"shortcode. Dit zijn alleen kleine letter en mag alleen letters, cijfers en "
|
848 |
+
"streepjes bevatten."
|
849 |
+
|
850 |
+
#: libs/tab-profiles.php:109
|
851 |
+
msgid "Parent"
|
852 |
+
msgstr "Ouder"
|
853 |
+
|
854 |
+
#: libs/tab-profiles.php:117
|
855 |
+
msgid "Select which profile to use as a starting point."
|
856 |
+
msgstr "Selecteer welk profiel gebruikt wordt als startpunt."
|
857 |
+
|
858 |
+
#: libs/tab-profiles.php:122
|
859 |
+
msgid "Describe the profile's purpose, for your own reference (optional)."
|
860 |
+
msgstr ""
|
861 |
+
"Beschrijf het doel van het profiel, voor je eigen referentie (optioneel)."
|
862 |
+
|
863 |
+
#: libs/tab-support.php:26
|
864 |
+
msgid ""
|
865 |
+
"Please review the documentation before submitting a request for support:"
|
866 |
+
msgstr ""
|
867 |
+
"Lees de documentatie voordat er een verzoek tot ondersteuning gedaan wordt."
|
868 |
+
|
869 |
+
#: libs/tab-support.php:29
|
870 |
+
msgid "Plugin FAQ"
|
871 |
+
msgstr "Plugin FAQ"
|
872 |
+
|
873 |
+
#: libs/tab-support.php:30
|
874 |
+
msgid "Support Forum"
|
875 |
+
msgstr "Support Forum"
|
876 |
+
|
877 |
+
#: libs/tab-support.php:33
|
878 |
+
msgid "If you're still experiencing a problem, please complete the form below."
|
879 |
+
msgstr ""
|
880 |
+
"Als je nog altijd een probleem hebt, vul dan het onderstaande formulier in."
|
881 |
+
|
882 |
+
#: libs/tab-support.php:37
|
883 |
+
msgid "Support Request"
|
884 |
+
msgstr "Aanvraag voor ondersteuning"
|
885 |
+
|
886 |
+
#: libs/tab-support.php:41
|
887 |
+
msgid "Your Name"
|
888 |
+
msgstr "Je naam"
|
889 |
+
|
890 |
+
#: libs/tab-support.php:45
|
891 |
+
msgid "Your E-mail"
|
892 |
+
msgstr "Je e-mailadres"
|
893 |
+
|
894 |
+
#: libs/tab-support.php:48
|
895 |
+
msgid "A valid email address is required."
|
896 |
+
msgstr "Een geldig e-mail adres is verplicht."
|
897 |
+
|
898 |
+
#: libs/tab-support.php:52
|
899 |
+
msgid "Shortcode"
|
900 |
+
msgstr "Shortcode"
|
901 |
+
|
902 |
+
#: libs/tab-support.php:55
|
903 |
+
msgid ""
|
904 |
+
"If you're having a problem getting a specific document to work, paste the "
|
905 |
+
"shortcode you're trying to use here."
|
906 |
+
msgstr ""
|
907 |
+
"Als je een probleem hebt met een specifiek document, plak dan de shortcode "
|
908 |
+
"hier in die je probeert te gebruiken."
|
909 |
+
|
910 |
+
#: libs/tab-support.php:59
|
911 |
+
msgid "Message"
|
912 |
+
msgstr "Bericht"
|
913 |
+
|
914 |
+
#: libs/tab-support.php:65
|
915 |
+
msgid "Message Options"
|
916 |
+
msgstr "Bericht opties"
|
917 |
+
|
918 |
+
#: libs/tab-support.php:67
|
919 |
+
msgid "Send debug information"
|
920 |
+
msgstr "Stuur debug informatie"
|
921 |
+
|
922 |
+
#: libs/tab-support.php:68
|
923 |
+
msgid "View"
|
924 |
+
msgstr "Toon"
|
925 |
+
|
926 |
+
#: libs/tab-support.php:69
|
927 |
+
msgid "Hide"
|
928 |
+
msgstr "Verberg"
|
929 |
+
|
930 |
+
#: libs/tab-support.php:70
|
931 |
+
msgid "Send me a copy"
|
932 |
+
msgstr "Stuur me een kopie"
|
933 |
+
|
934 |
+
#: libs/tab-support.php:76
|
935 |
+
msgid "Debug Information"
|
936 |
+
msgstr "Debug informatie"
|
937 |
+
|
938 |
+
#: libs/tab-support.php:77
|
939 |
+
msgid ""
|
940 |
+
"Note: Profile and settings export and diagnostic log (if present) will be "
|
941 |
+
"attached."
|
942 |
+
msgstr ""
|
943 |
+
"Notitie: Profiel en instellingen exporteren en diagnose log (indien "
|
944 |
+
"aanwezig) worden bijgevoegd."
|
945 |
+
|
946 |
+
#: libs/tab-support.php:135
|
947 |
+
msgid ""
|
948 |
+
"I'm less likely to be able to help you if you do not include debug "
|
949 |
+
"information."
|
950 |
+
msgstr ""
|
951 |
+
"Als je geen debug informatie meestuurd is het minder waarschijnlijk dat ik "
|
952 |
+
"je kan helpen."
|
953 |
+
|
954 |
+
#: libs/tab-support.php:137
|
955 |
+
msgid "Send Request"
|
956 |
+
msgstr "Stuur een verzoek"
|
957 |
+
|
958 |
+
#: libs/tab-support.php:141
|
959 |
+
msgid "Request Sent"
|
960 |
+
msgstr "Verzoek verstuurd"
|
961 |
+
|
962 |
+
#: libs/tab-support.php:142
|
963 |
+
msgid ""
|
964 |
+
"Delivery failed. You can manually send this information to wpp@tnw.org for "
|
965 |
+
"help."
|
966 |
+
msgstr ""
|
967 |
+
"Afleveren mislukt. Je kan de informatie ook handmatig opsturen aan wpp@tnw."
|
968 |
+
"org for hulp."
|
languages/gde-ru_RU.mo
ADDED
Binary file
|
languages/gde-ru_RU.po
ADDED
@@ -0,0 +1,962 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Google Doc Embedder\n"
|
4 |
+
"POT-Creation-Date: 2012-11-20 08:11-0600\n"
|
5 |
+
"PO-Revision-Date: 2012-12-12 20:24+0200\n"
|
6 |
+
"Last-Translator: Kevin Davis <kev@tnw.org>\n"
|
7 |
+
"Language-Team: Kevin Davis <wpp@tnw.org>\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 |
+
"X-Poedit-SearchPath-0: .\n"
|
14 |
+
|
15 |
+
#: functions-admin.php:259
|
16 |
+
msgid "Import"
|
17 |
+
msgstr "Импорт"
|
18 |
+
|
19 |
+
#: functions-admin.php:270
|
20 |
+
msgid "Performing full import..."
|
21 |
+
msgstr "Делаю полный импорт ..."
|
22 |
+
|
23 |
+
#: functions-admin.php:274 functions-admin.php:299
|
24 |
+
msgid "Importing profiles"
|
25 |
+
msgstr "Импортирую профили"
|
26 |
+
|
27 |
+
#: functions-admin.php:280 functions-admin.php:294 functions-admin.php:305
|
28 |
+
#: functions-admin.php:318
|
29 |
+
msgid "done"
|
30 |
+
msgstr "готово"
|
31 |
+
|
32 |
+
#: functions-admin.php:283 functions-admin.php:292 functions-admin.php:308
|
33 |
+
#: functions-admin.php:316
|
34 |
+
msgid "failed"
|
35 |
+
msgstr "ошибка"
|
36 |
+
|
37 |
+
#: functions-admin.php:289
|
38 |
+
msgid "Importing settings"
|
39 |
+
msgstr "Импортирую настройки"
|
40 |
+
|
41 |
+
#: functions-admin.php:312
|
42 |
+
msgid "Importing settings... "
|
43 |
+
msgstr "Импортирую настройки..."
|
44 |
+
|
45 |
+
#: functions-admin.php:321 functions-admin.php:593 options.php:138
|
46 |
+
msgid "Please select a valid export file to import."
|
47 |
+
msgstr "Пожалуйста, выберите правильный файл экспорта для импорта."
|
48 |
+
|
49 |
+
#: functions-admin.php:325
|
50 |
+
msgid "All or part of the import failed. See above for information."
|
51 |
+
msgstr "Все или часть импорта не удалось. См. информацию выше."
|
52 |
+
|
53 |
+
#: functions-admin.php:327
|
54 |
+
msgid "Import completed successfully."
|
55 |
+
msgstr "Импорт успешно завершен."
|
56 |
+
|
57 |
+
#: functions-admin.php:330
|
58 |
+
msgid "Return to GDE Settings"
|
59 |
+
msgstr "Вернуться к настройкам GDE"
|
60 |
+
|
61 |
+
#: functions-admin.php:407 functions-admin.php:562 options.php:167
|
62 |
+
#: libs/tab-advanced.php:141
|
63 |
+
msgid "Settings"
|
64 |
+
msgstr "Настройки"
|
65 |
+
|
66 |
+
#: functions-admin.php:416
|
67 |
+
msgid "You do not have sufficient permissions to access this page"
|
68 |
+
msgstr "Вы не имеете достаточно прав для доступа к этой странице"
|
69 |
+
|
70 |
+
#: functions-admin.php:550
|
71 |
+
msgid "plugin"
|
72 |
+
msgstr "плагин"
|
73 |
+
|
74 |
+
#: functions-admin.php:551
|
75 |
+
msgid "Version"
|
76 |
+
msgstr "Версия"
|
77 |
+
|
78 |
+
#: functions-admin.php:589
|
79 |
+
msgid "This profile will be permanently deleted."
|
80 |
+
msgstr "Этот профиль будет удален."
|
81 |
+
|
82 |
+
#: functions-admin.php:589 functions-admin.php:590 functions-admin.php:591
|
83 |
+
#: functions-admin.php:594
|
84 |
+
msgid "Are you sure?"
|
85 |
+
msgstr "Вы уверены?"
|
86 |
+
|
87 |
+
#: functions-admin.php:590
|
88 |
+
msgid "Settings for this profile will overwrite the default profile."
|
89 |
+
msgstr "Настройки этого профиля будут переписаны по умолчанию."
|
90 |
+
|
91 |
+
#: functions-admin.php:591
|
92 |
+
msgid ""
|
93 |
+
"Your profile list will be reset to its original state. All changes will be "
|
94 |
+
"lost."
|
95 |
+
msgstr ""
|
96 |
+
"Ваш список профиля будет сброшено в исходное состояние. Все изменения будут "
|
97 |
+
"потеряны."
|
98 |
+
|
99 |
+
#: functions-admin.php:594
|
100 |
+
msgid ""
|
101 |
+
"Any settings or duplicate profile names in this import will overwrite the "
|
102 |
+
"current values."
|
103 |
+
msgstr ""
|
104 |
+
"Любые настройки, или копии названия профиля после импорта приведет к потере "
|
105 |
+
"текущего значения."
|
106 |
+
|
107 |
+
#: functions-admin.php:596
|
108 |
+
msgid "Please include a shortcode or message to request support."
|
109 |
+
msgstr ""
|
110 |
+
"Пожалуйста, укажите короткий код или сообщение, чтобы сделать запрос в "
|
111 |
+
"поддержку."
|
112 |
+
|
113 |
+
#: functions-admin.php:634
|
114 |
+
msgid "Embed file using Google Doc Embedder"
|
115 |
+
msgstr "Вставить файл с помощью Google Doc Embedder"
|
116 |
+
|
117 |
+
#: functions-admin.php:651 libs/lib-eddialog.php:85
|
118 |
+
msgid "Select the GDE viewer profile to use"
|
119 |
+
msgstr "Выберите профиль GDE viewer для использования"
|
120 |
+
|
121 |
+
#: functions-admin.php:784
|
122 |
+
msgid ""
|
123 |
+
"You are running a pre-release version of Google Doc Embedder. Please watch "
|
124 |
+
"this space for important updates."
|
125 |
+
msgstr ""
|
126 |
+
"Вы работаете в пре-релиз версии Google Doc Embedder. Пожалуйста, посмотрите "
|
127 |
+
"важные обновления."
|
128 |
+
|
129 |
+
#: functions.php:105
|
130 |
+
msgid "File not specified, check shortcode syntax"
|
131 |
+
msgstr "Файл не указан, проверьте синтаксис короткого кода"
|
132 |
+
|
133 |
+
#: functions.php:106
|
134 |
+
msgid "Requested URL is invalid"
|
135 |
+
msgstr "Запрашиваемая ссылка недействительна"
|
136 |
+
|
137 |
+
#: functions.php:107
|
138 |
+
msgid "Unsupported File Type"
|
139 |
+
msgstr "Тип файла не поддерживается"
|
140 |
+
|
141 |
+
#: functions.php:108
|
142 |
+
msgid "Error retrieving file - if necessary turn off error checking"
|
143 |
+
msgstr ""
|
144 |
+
"Ошибка при загрузке файла - При необходимости выключите проверку ошибок"
|
145 |
+
|
146 |
+
#: functions.php:191
|
147 |
+
msgid "Unknown"
|
148 |
+
msgstr "Неизвестный"
|
149 |
+
|
150 |
+
#: functions.php:291 gviewer.php:282 libs/lib-setup.php:64
|
151 |
+
#: libs/lib-setup.php:112
|
152 |
+
msgid "Download"
|
153 |
+
msgstr "Скачать"
|
154 |
+
|
155 |
+
#: functions.php:396 view.php:397
|
156 |
+
msgid "Error"
|
157 |
+
msgstr "Ошибка"
|
158 |
+
|
159 |
+
#: gviewer.php:73
|
160 |
+
msgid "Unable to load profile settings"
|
161 |
+
msgstr "Не удается загрузить настройки профиля"
|
162 |
+
|
163 |
+
#: gviewer.php:108 gviewer.php:120
|
164 |
+
msgid "Unable to load requested profile."
|
165 |
+
msgstr "Не удается загрузить требуемый профиль."
|
166 |
+
|
167 |
+
#: gviewer.php:216
|
168 |
+
msgid "Unable to secure document"
|
169 |
+
msgstr "Невозможно отобразить документ"
|
170 |
+
|
171 |
+
#: load.php:8 libs/lib-formsubmit.php:9 libs/lib-secure.php:9
|
172 |
+
#: libs/lib-service.php:53 libs/lib-service.php:69 libs/lib-service.php:72
|
173 |
+
msgid "You do not have sufficient permissions to access this page."
|
174 |
+
msgstr "Вы не имеете достаточно прав для доступа к этой странице."
|
175 |
+
|
176 |
+
#: load.php:41
|
177 |
+
msgid "Direct access to this file is not permitted."
|
178 |
+
msgstr "Прямой доступ к этому файлу не допускается."
|
179 |
+
|
180 |
+
#: load.php:61
|
181 |
+
msgid "The requested file was not found."
|
182 |
+
msgstr "Запрошенный файл не найден."
|
183 |
+
|
184 |
+
#: load.php:66
|
185 |
+
msgid "Unable to open the requested file. "
|
186 |
+
msgstr "Не удается открыть необходимый файл."
|
187 |
+
|
188 |
+
#: load.php:83 load.php:87
|
189 |
+
msgid "The document file type is not supported."
|
190 |
+
msgstr "Тип документа не поддерживается."
|
191 |
+
|
192 |
+
#: options.php:13 options.php:65
|
193 |
+
msgid "Default profile <strong>updated</strong>."
|
194 |
+
msgstr "Профиль по умолчанию <strong>обновлен</strong>."
|
195 |
+
|
196 |
+
#: options.php:15 options.php:50
|
197 |
+
msgid "Unable to update profile."
|
198 |
+
msgstr "Не удалось обновить профиль."
|
199 |
+
|
200 |
+
#: options.php:28
|
201 |
+
msgid "Profile name already exists. Please choose another name."
|
202 |
+
msgstr ""
|
203 |
+
"Профиль с таким именем уже существует. Пожалуйста, выберите другое имя."
|
204 |
+
|
205 |
+
#: options.php:35
|
206 |
+
msgid "New profile <strong>created</strong>."
|
207 |
+
msgstr "Новый профиль <strong>создан </strong>."
|
208 |
+
|
209 |
+
#: options.php:37 options.php:40
|
210 |
+
msgid "Unable to create profile."
|
211 |
+
msgstr "Невозможно создать профиль."
|
212 |
+
|
213 |
+
#: options.php:48
|
214 |
+
msgid "Profile <strong>updated</strong>."
|
215 |
+
msgstr "Профиль <strong>обновлен</strong>."
|
216 |
+
|
217 |
+
#: options.php:58
|
218 |
+
msgid "Profile <strong>deleted</strong>."
|
219 |
+
msgstr "Профиль <strong>удален</strong>."
|
220 |
+
|
221 |
+
#: options.php:60
|
222 |
+
msgid "Unable to delete profile."
|
223 |
+
msgstr "Не удается удалить профиль."
|
224 |
+
|
225 |
+
#: options.php:102
|
226 |
+
msgid "Unable to enable diagnostic logging."
|
227 |
+
msgstr "Не удается включить журнал диагностики."
|
228 |
+
|
229 |
+
#: options.php:114 options.php:116
|
230 |
+
msgid "Settings <strong>updated</strong>."
|
231 |
+
msgstr "Настройки <strong>обновлены</strong>."
|
232 |
+
|
233 |
+
#: options.php:176 options.php:189
|
234 |
+
msgid "General"
|
235 |
+
msgstr "Главное"
|
236 |
+
|
237 |
+
#: options.php:181 options.php:194 libs/tab-advanced.php:140
|
238 |
+
msgid "Profiles"
|
239 |
+
msgstr "Профили"
|
240 |
+
|
241 |
+
#: options.php:202
|
242 |
+
msgid "Advanced"
|
243 |
+
msgstr "Дополнительно"
|
244 |
+
|
245 |
+
#: options.php:207
|
246 |
+
msgid "Support"
|
247 |
+
msgstr "Поддержка"
|
248 |
+
|
249 |
+
#: options.php:345
|
250 |
+
msgid "Help"
|
251 |
+
msgstr "Помощь"
|
252 |
+
|
253 |
+
#: options.php:371
|
254 |
+
msgid "Edit"
|
255 |
+
msgstr "Редактировать"
|
256 |
+
|
257 |
+
#: options.php:372
|
258 |
+
msgid "Delete"
|
259 |
+
msgstr "Удалить"
|
260 |
+
|
261 |
+
#: options.php:373
|
262 |
+
msgid "Make Default"
|
263 |
+
msgstr "Создать по умолчанию"
|
264 |
+
|
265 |
+
#: view.php:42
|
266 |
+
msgid "Invalid URL format"
|
267 |
+
msgstr "Неверный формат URL"
|
268 |
+
|
269 |
+
#: view.php:398
|
270 |
+
msgid ""
|
271 |
+
"Unable to retrieve document contents. Please try again or switch to Standard "
|
272 |
+
"Viewer."
|
273 |
+
msgstr ""
|
274 |
+
"Не удается получить содержимое документа. Пожалуйста, попробуйте еще раз или "
|
275 |
+
"перейти к стандартному Viewer."
|
276 |
+
|
277 |
+
#: js/tb-newwin.php:7
|
278 |
+
msgid "View in full screen"
|
279 |
+
msgstr "Просмотр во весь экран"
|
280 |
+
|
281 |
+
#: js/tb-newwin.php:11
|
282 |
+
msgid "Open in new window"
|
283 |
+
msgstr "Открыть в новом окне"
|
284 |
+
|
285 |
+
#: libs/lib-eddialog.php:8
|
286 |
+
msgid "Access denied."
|
287 |
+
msgstr "Доступ запрещен."
|
288 |
+
|
289 |
+
#: libs/lib-eddialog.php:52
|
290 |
+
msgid "Insert Google Doc Embedder Shortcode"
|
291 |
+
msgstr "Вставить короткий код Google Doc Embedder"
|
292 |
+
|
293 |
+
#: libs/lib-eddialog.php:55
|
294 |
+
msgid "Required"
|
295 |
+
msgstr "Необходимый"
|
296 |
+
|
297 |
+
#: libs/lib-eddialog.php:59
|
298 |
+
msgid "URL or Filename"
|
299 |
+
msgstr "URL-адрес или имя файла"
|
300 |
+
|
301 |
+
#: libs/lib-eddialog.php:60
|
302 |
+
msgid "Full URL or filename to append to profile Base URL"
|
303 |
+
msgstr "Полное имя файла или URL для добавления в базу профилей"
|
304 |
+
|
305 |
+
#: libs/lib-eddialog.php:65
|
306 |
+
msgid "Profile Base URL will be prefixed"
|
307 |
+
msgstr "URL базы профиля должен иметь префикс"
|
308 |
+
|
309 |
+
#: libs/lib-eddialog.php:68
|
310 |
+
msgid "Unsupported file type"
|
311 |
+
msgstr "Неподдерживаемый тип файла"
|
312 |
+
|
313 |
+
#: libs/lib-eddialog.php:74
|
314 |
+
msgid "Profile"
|
315 |
+
msgstr "Профиль"
|
316 |
+
|
317 |
+
#: libs/lib-eddialog.php:93
|
318 |
+
msgid "Optional (Override Profile Settings)"
|
319 |
+
msgstr "Дополнительно (переопределить настройки профиля)"
|
320 |
+
|
321 |
+
#: libs/lib-eddialog.php:97 libs/lib-profile.php:185
|
322 |
+
msgid "Height"
|
323 |
+
msgstr "Высота"
|
324 |
+
|
325 |
+
#: libs/lib-eddialog.php:102 libs/lib-profile.php:181
|
326 |
+
msgid "Width"
|
327 |
+
msgstr "Ширина"
|
328 |
+
|
329 |
+
#: libs/lib-eddialog.php:103
|
330 |
+
#, php-format
|
331 |
+
msgid "Format: 40% or 300px"
|
332 |
+
msgstr "Формат: 40% або 300px"
|
333 |
+
|
334 |
+
#: libs/lib-eddialog.php:108
|
335 |
+
msgid "Start Page #"
|
336 |
+
msgstr "Стартовая страница #"
|
337 |
+
|
338 |
+
#: libs/lib-eddialog.php:116
|
339 |
+
msgid "Show Download Link"
|
340 |
+
msgstr "Показывать ссылку для скачивания"
|
341 |
+
|
342 |
+
#: libs/lib-eddialog.php:119
|
343 |
+
msgid "Yes"
|
344 |
+
msgstr "Да"
|
345 |
+
|
346 |
+
#: libs/lib-eddialog.php:120
|
347 |
+
msgid "No"
|
348 |
+
msgstr "Нет"
|
349 |
+
|
350 |
+
#: libs/lib-eddialog.php:126
|
351 |
+
msgid "Disable caching (this document is frequently overwritten)"
|
352 |
+
msgstr "Отключить кэширование (этот документ часто переписывается)"
|
353 |
+
|
354 |
+
#: libs/lib-eddialog.php:136
|
355 |
+
msgid "Shortcode Preview"
|
356 |
+
msgstr "Посмотреть короткий код"
|
357 |
+
|
358 |
+
#: libs/lib-eddialog.php:144
|
359 |
+
msgid "Insert"
|
360 |
+
msgstr "Вставить"
|
361 |
+
|
362 |
+
#: libs/lib-eddialog.php:148
|
363 |
+
msgid "Cancel"
|
364 |
+
msgstr "Отмена"
|
365 |
+
|
366 |
+
#: libs/lib-profile.php:12 libs/tab-advanced.php:132 libs/tab-profiles.php:22
|
367 |
+
msgid ""
|
368 |
+
"Unable to load profile settings. Please re-activate GDE and if the problem "
|
369 |
+
"persists, request help using the \"Support\" tab."
|
370 |
+
msgstr ""
|
371 |
+
"Не удается загрузить настройки профиля. Пожалуйста, включите повторно GDE и "
|
372 |
+
"если проблема не устранена, обратитесь за \"Помощью\"."
|
373 |
+
|
374 |
+
#: libs/lib-profile.php:25
|
375 |
+
msgid "Default Settings"
|
376 |
+
msgstr "Настройки по умолчанию"
|
377 |
+
|
378 |
+
#: libs/lib-profile.php:26
|
379 |
+
msgid ""
|
380 |
+
"These settings define the default viewer profile, which is used when no "
|
381 |
+
"other profile is specified."
|
382 |
+
msgstr ""
|
383 |
+
"Эти параметры профиля установлены по умолчанию, когда другой профиль не "
|
384 |
+
"создан."
|
385 |
+
|
386 |
+
#: libs/lib-profile.php:30
|
387 |
+
msgid "Edit Profile"
|
388 |
+
msgstr "Редактировать профиль"
|
389 |
+
|
390 |
+
#: libs/lib-profile.php:49
|
391 |
+
msgid "Viewer Mode"
|
392 |
+
msgstr "Режим просмотра"
|
393 |
+
|
394 |
+
#: libs/lib-profile.php:53
|
395 |
+
msgid "Standard Viewer"
|
396 |
+
msgstr "Стандартный просмотр"
|
397 |
+
|
398 |
+
#: libs/lib-profile.php:53
|
399 |
+
msgid "Embed the basic viewer only"
|
400 |
+
msgstr "Вставить только основной Viewer "
|
401 |
+
|
402 |
+
#: libs/lib-profile.php:54
|
403 |
+
msgid "Enhanced Viewer"
|
404 |
+
msgstr "Расширенные средства просмотра"
|
405 |
+
|
406 |
+
#: libs/lib-profile.php:54
|
407 |
+
msgid "Enable extended viewer options"
|
408 |
+
msgstr "Включить расширенные опции просмотра"
|
409 |
+
|
410 |
+
#: libs/lib-profile.php:64
|
411 |
+
msgid "Enhanced Viewer Settings"
|
412 |
+
msgstr "Расширенные настройки просмотра"
|
413 |
+
|
414 |
+
#: libs/lib-profile.php:68
|
415 |
+
msgid "Toolbar"
|
416 |
+
msgstr "Панель инструментов"
|
417 |
+
|
418 |
+
#: libs/lib-profile.php:71
|
419 |
+
msgid "Remove Toolbar"
|
420 |
+
msgstr "Удалить панель инструментов"
|
421 |
+
|
422 |
+
#: libs/lib-profile.php:76
|
423 |
+
msgid "Use Mobile Toolbar"
|
424 |
+
msgstr "Использовать мобильную версию панели инструментов"
|
425 |
+
|
426 |
+
#: libs/lib-profile.php:80
|
427 |
+
msgid "Mobile Devices Only (Default)"
|
428 |
+
msgstr "Только мобильные устройства (по умолчанию)"
|
429 |
+
|
430 |
+
#: libs/lib-profile.php:80
|
431 |
+
msgid "Use mobile toolbar when mobile device detected"
|
432 |
+
msgstr ""
|
433 |
+
"Использовать мобильные панели инструментов, когда мобильное устройство "
|
434 |
+
"обнаружено"
|
435 |
+
|
436 |
+
#: libs/lib-profile.php:81
|
437 |
+
msgid "Always"
|
438 |
+
msgstr "Всегда"
|
439 |
+
|
440 |
+
#: libs/lib-profile.php:81
|
441 |
+
msgid "Use mobile toolbar for all visitors"
|
442 |
+
msgstr "Использовать мобильную версию панели инструментов для всех посетителей"
|
443 |
+
|
444 |
+
#: libs/lib-profile.php:82
|
445 |
+
msgid "Never"
|
446 |
+
msgstr "Никогда"
|
447 |
+
|
448 |
+
#: libs/lib-profile.php:82
|
449 |
+
msgid "Never use mobile toolbar"
|
450 |
+
msgstr "Никогда не использовать мобильную версию панели инструментов"
|
451 |
+
|
452 |
+
#: libs/lib-profile.php:89
|
453 |
+
msgid "Toolbar Items"
|
454 |
+
msgstr "Пункты панели инструментов"
|
455 |
+
|
456 |
+
#: libs/lib-profile.php:92
|
457 |
+
msgid "Page Numbers"
|
458 |
+
msgstr "Номера страниц"
|
459 |
+
|
460 |
+
#: libs/lib-profile.php:93
|
461 |
+
msgid "Previous/Next Page"
|
462 |
+
msgstr "Предыдущая/следующая страница"
|
463 |
+
|
464 |
+
#: libs/lib-profile.php:94
|
465 |
+
msgid "Zoom In/Out"
|
466 |
+
msgstr "Увеличение In/Out"
|
467 |
+
|
468 |
+
#: libs/lib-profile.php:95
|
469 |
+
msgid "Full Screen/New Window"
|
470 |
+
msgstr "Во весь экран/Новое окно"
|
471 |
+
|
472 |
+
#: libs/lib-profile.php:98
|
473 |
+
msgid ""
|
474 |
+
"Uncheck items to remove from toolbar. Buttons will vary based on file type "
|
475 |
+
"and device used."
|
476 |
+
msgstr ""
|
477 |
+
"Снимите элементы для удаления из панели инструментов. Кнопки будут "
|
478 |
+
"варьироваться в зависимости от типа файла и используемого устройства."
|
479 |
+
|
480 |
+
#: libs/lib-profile.php:102
|
481 |
+
msgid "Full Screen Behavior"
|
482 |
+
msgstr "Режим во весь экран"
|
483 |
+
|
484 |
+
#: libs/lib-profile.php:106
|
485 |
+
msgid "Google-Hosted Page (Default)"
|
486 |
+
msgstr "Страница Google-Hosted (по умолчанию)"
|
487 |
+
|
488 |
+
#: libs/lib-profile.php:108
|
489 |
+
msgid "Full Screen Viewer"
|
490 |
+
msgstr "Просмотр во весь экран"
|
491 |
+
|
492 |
+
#: libs/lib-profile.php:112
|
493 |
+
msgid "Open in New Window"
|
494 |
+
msgstr "Открыть в новом окне"
|
495 |
+
|
496 |
+
#: libs/lib-profile.php:113
|
497 |
+
msgid "Allow Printing"
|
498 |
+
msgstr "Разрешать печатать"
|
499 |
+
|
500 |
+
#: libs/lib-profile.php:118
|
501 |
+
msgid "Page Area Background Color"
|
502 |
+
msgstr "Цвет фона страницы"
|
503 |
+
|
504 |
+
#: libs/lib-profile.php:123
|
505 |
+
msgid "None (Transparent)"
|
506 |
+
msgstr "Нет (прозрачный)"
|
507 |
+
|
508 |
+
#: libs/lib-profile.php:128
|
509 |
+
msgid "Page Border Color"
|
510 |
+
msgstr "Цвет границы страниц"
|
511 |
+
|
512 |
+
#: libs/lib-profile.php:133
|
513 |
+
msgid "No Border"
|
514 |
+
msgstr "Без границ"
|
515 |
+
|
516 |
+
#: libs/lib-profile.php:138
|
517 |
+
msgid "Custom CSS File"
|
518 |
+
msgstr "Настраиваемый файл CSS "
|
519 |
+
|
520 |
+
#: libs/lib-profile.php:144
|
521 |
+
msgid "URL of custom CSS file (may override some of the above options)"
|
522 |
+
msgstr ""
|
523 |
+
"Настраиваемая ссылка файла CSS (может переопределить некоторые из "
|
524 |
+
"перечисленных выше вариантов)"
|
525 |
+
|
526 |
+
#: libs/lib-profile.php:148
|
527 |
+
msgid "Security"
|
528 |
+
msgstr "Безопасность"
|
529 |
+
|
530 |
+
#: libs/lib-profile.php:151
|
531 |
+
msgid "Hide ability to select/copy/paste text"
|
532 |
+
msgstr "Скрыть возможность выбора/копировать/вставлять текст"
|
533 |
+
|
534 |
+
#: libs/lib-profile.php:152
|
535 |
+
msgid "Block all download requests for file"
|
536 |
+
msgstr "Блокировать все запросы для скачивания файлов"
|
537 |
+
|
538 |
+
#: libs/lib-profile.php:163
|
539 |
+
msgid "Default Language"
|
540 |
+
msgstr "Язык по умолчанию"
|
541 |
+
|
542 |
+
#: libs/lib-profile.php:175
|
543 |
+
msgid "Language of toolbar button tips"
|
544 |
+
msgstr "Язык кнопки подсказки на панели инструментов"
|
545 |
+
|
546 |
+
#: libs/lib-profile.php:179
|
547 |
+
msgid "Default Size"
|
548 |
+
msgstr "Размер по умолчанию"
|
549 |
+
|
550 |
+
#: libs/lib-profile.php:190
|
551 |
+
msgid "Enter as pixels or percentage (example: 500px or 100%)"
|
552 |
+
msgstr "Введите в виде пикселей или процентов (например: 500px или 100%)"
|
553 |
+
|
554 |
+
#: libs/lib-profile.php:194
|
555 |
+
msgid "File Base URL"
|
556 |
+
msgstr "Ссылка файла базы"
|
557 |
+
|
558 |
+
#: libs/lib-profile.php:200
|
559 |
+
msgid ""
|
560 |
+
"Any file not starting with <code>http</code> will be prefixed by this value"
|
561 |
+
msgstr ""
|
562 |
+
"Любой файл, не начиная с <code>http</code> будет начинаться с этого значения"
|
563 |
+
|
564 |
+
#: libs/lib-profile.php:204
|
565 |
+
msgid "Download Link"
|
566 |
+
msgstr "Ссылка для скачивания"
|
567 |
+
|
568 |
+
#: libs/lib-profile.php:208
|
569 |
+
msgid "All Users"
|
570 |
+
msgstr "Все пользователи"
|
571 |
+
|
572 |
+
#: libs/lib-profile.php:208
|
573 |
+
msgid "Download link visible to everyone by default"
|
574 |
+
msgstr "Ссылка для скачивания видна всем по умолчанию"
|
575 |
+
|
576 |
+
#: libs/lib-profile.php:209
|
577 |
+
msgid "Logged-in Users"
|
578 |
+
msgstr "Для зарегистрированных пользователей"
|
579 |
+
|
580 |
+
#: libs/lib-profile.php:209
|
581 |
+
msgid "Download link visible to logged-in users"
|
582 |
+
msgstr "Ссылка для скачивания видна только зарегистрированным пользователям"
|
583 |
+
|
584 |
+
#: libs/lib-profile.php:210 libs/tab-advanced.php:91
|
585 |
+
msgid "None"
|
586 |
+
msgstr "Нет"
|
587 |
+
|
588 |
+
#: libs/lib-profile.php:210
|
589 |
+
msgid "Download link is not visible by default"
|
590 |
+
msgstr "Ссылки скрыты по умолчанию"
|
591 |
+
|
592 |
+
#: libs/lib-profile.php:217
|
593 |
+
msgid "Link Text"
|
594 |
+
msgstr "Текст ссылки"
|
595 |
+
|
596 |
+
#: libs/lib-profile.php:220
|
597 |
+
msgid "You can further customize text using these dynamic replacements:"
|
598 |
+
msgstr "Вы можете настроить текст, используя эти динамические замены:"
|
599 |
+
|
600 |
+
#: libs/lib-profile.php:221
|
601 |
+
msgid "filename"
|
602 |
+
msgstr "имя файла"
|
603 |
+
|
604 |
+
#: libs/lib-profile.php:222
|
605 |
+
msgid "file type"
|
606 |
+
msgstr "тип файла"
|
607 |
+
|
608 |
+
#: libs/lib-profile.php:223
|
609 |
+
msgid "file size"
|
610 |
+
msgstr "размер файла"
|
611 |
+
|
612 |
+
#: libs/lib-profile.php:227
|
613 |
+
msgid "Link Position"
|
614 |
+
msgstr "Позиция ссылки"
|
615 |
+
|
616 |
+
#: libs/lib-profile.php:231
|
617 |
+
msgid "Above Viewer"
|
618 |
+
msgstr "Вверху окна"
|
619 |
+
|
620 |
+
#: libs/lib-profile.php:232
|
621 |
+
msgid "Below Viewer"
|
622 |
+
msgstr "Под окном"
|
623 |
+
|
624 |
+
#: libs/lib-profile.php:238
|
625 |
+
msgid "Link Behavior"
|
626 |
+
msgstr "Режим ссылки"
|
627 |
+
|
628 |
+
#: libs/lib-profile.php:241
|
629 |
+
msgid "Force download (bypass browser plugins)"
|
630 |
+
msgstr "Возможность загрузки (обход плагинов для браузеров)"
|
631 |
+
|
632 |
+
#: libs/lib-profile.php:242
|
633 |
+
msgid "Shorten URL"
|
634 |
+
msgstr "Сокращение URL-адреса"
|
635 |
+
|
636 |
+
#: libs/lib-profile.php:250 libs/tab-advanced.php:120
|
637 |
+
msgid "Save Changes"
|
638 |
+
msgstr "Сохранить изменения"
|
639 |
+
|
640 |
+
#: libs/lib-setup.php:46 libs/lib-setup.php:292
|
641 |
+
msgid "This is the default profile, used when no profile is specified."
|
642 |
+
msgstr "Это профиль по умолчанию, используемый при отсутствии других профилей."
|
643 |
+
|
644 |
+
#: libs/lib-setup.php:70
|
645 |
+
msgid "Hide document location and text selection, prevent downloads"
|
646 |
+
msgstr ""
|
647 |
+
"Скрыть местоположение документа и выделение текста, предотвращения загрузки"
|
648 |
+
|
649 |
+
#: libs/lib-setup.php:94
|
650 |
+
msgid "Dark-colored theme, example of custom CSS option"
|
651 |
+
msgstr "Темные-цвета темы, пример установки опции CSS "
|
652 |
+
|
653 |
+
#: libs/tab-advanced.php:20
|
654 |
+
msgid "Plugin Behavior"
|
655 |
+
msgstr "Режим плагина"
|
656 |
+
|
657 |
+
#: libs/tab-advanced.php:25
|
658 |
+
msgid "Editor Integration"
|
659 |
+
msgstr "Встроенный редактор"
|
660 |
+
|
661 |
+
#: libs/tab-advanced.php:28
|
662 |
+
msgid "Disable all editor integration"
|
663 |
+
msgstr "Выключить все редакторы"
|
664 |
+
|
665 |
+
#: libs/tab-advanced.php:30
|
666 |
+
msgid "Insert shortcode from Media Library by default"
|
667 |
+
msgstr "Вставьте короткий код из библиотеки мультимедиа по умолчанию"
|
668 |
+
|
669 |
+
#: libs/tab-advanced.php:32
|
670 |
+
msgid "Allow uploads of all supported media types"
|
671 |
+
msgstr "Разрешить добавление всех поддерживаемых типов носителей"
|
672 |
+
|
673 |
+
#: libs/tab-advanced.php:37
|
674 |
+
msgid "Maximum File Size"
|
675 |
+
msgstr "Максимальный размер файла"
|
676 |
+
|
677 |
+
#: libs/tab-advanced.php:43
|
678 |
+
msgid ""
|
679 |
+
"Very large files (typically 8-12MB) aren't supported by Google Doc Viewer"
|
680 |
+
msgstr "Большой размер (тольки 8-12Mб) не поддерживается Google Doc Viewer"
|
681 |
+
|
682 |
+
#: libs/tab-advanced.php:47
|
683 |
+
msgid "Error Handling"
|
684 |
+
msgstr "Ошибка обработки"
|
685 |
+
|
686 |
+
#: libs/tab-advanced.php:50
|
687 |
+
msgid "Show error messages inline (otherwise, they appear in HTML comments)"
|
688 |
+
msgstr ""
|
689 |
+
"Показывать сообщения об ошибках (в противном случае, они будут в HTML "
|
690 |
+
"записях)"
|
691 |
+
|
692 |
+
#: libs/tab-advanced.php:51
|
693 |
+
msgid "Check for errors before loading viewer"
|
694 |
+
msgstr "Проверить наличие ошибок просмотра перед загрузкой"
|
695 |
+
|
696 |
+
#: libs/tab-advanced.php:53
|
697 |
+
msgid "Enable extended diagnostic logging <em>(manually enabled)</em>"
|
698 |
+
msgstr ""
|
699 |
+
"Включить запись расширенного журнала диагностики <em>(включен вручную)</em>"
|
700 |
+
|
701 |
+
#: libs/tab-advanced.php:55
|
702 |
+
msgid "Enable extended diagnostic logging"
|
703 |
+
msgstr "Включить запись расширенного журнала диагностики"
|
704 |
+
|
705 |
+
#: libs/tab-advanced.php:56
|
706 |
+
msgid "show log"
|
707 |
+
msgstr "Показать журнал"
|
708 |
+
|
709 |
+
#: libs/tab-advanced.php:57
|
710 |
+
msgid "clear log"
|
711 |
+
msgstr "Очистить журнал"
|
712 |
+
|
713 |
+
#: libs/tab-advanced.php:63
|
714 |
+
msgid "Version Notifications"
|
715 |
+
msgstr "Версия уведомлений"
|
716 |
+
|
717 |
+
#: libs/tab-advanced.php:67
|
718 |
+
msgid "All Versions"
|
719 |
+
msgstr "Все версии"
|
720 |
+
|
721 |
+
#: libs/tab-advanced.php:67
|
722 |
+
msgid "You will receive release and beta notifications"
|
723 |
+
msgstr "Вы получите релиз и бету уведомления"
|
724 |
+
|
725 |
+
#: libs/tab-advanced.php:68
|
726 |
+
msgid "Release Versions Only"
|
727 |
+
msgstr "Только релиз"
|
728 |
+
|
729 |
+
#: libs/tab-advanced.php:68
|
730 |
+
msgid "You will not receive beta notifications"
|
731 |
+
msgstr "Вы не будете получать бета сообщение"
|
732 |
+
|
733 |
+
#: libs/tab-advanced.php:77
|
734 |
+
msgid "Google Analytics"
|
735 |
+
msgstr "Google Analytics"
|
736 |
+
|
737 |
+
#: libs/tab-advanced.php:79
|
738 |
+
msgid ""
|
739 |
+
"To use Google Analytics integration, the GA tracking code must already be "
|
740 |
+
"installed on your site."
|
741 |
+
msgstr ""
|
742 |
+
"Используйте Google Analytics, код Google Analytics отслеживания должен быть "
|
743 |
+
"уже установлен на Вашем сайте."
|
744 |
+
|
745 |
+
#: libs/tab-advanced.php:80
|
746 |
+
msgid "More Info"
|
747 |
+
msgstr "Дополнительная информация"
|
748 |
+
|
749 |
+
#: libs/tab-advanced.php:85
|
750 |
+
msgid "Event Tracking"
|
751 |
+
msgstr "Отслеживать события"
|
752 |
+
|
753 |
+
#: libs/tab-advanced.php:89
|
754 |
+
msgid "Enabled"
|
755 |
+
msgstr "Включено"
|
756 |
+
|
757 |
+
#: libs/tab-advanced.php:89
|
758 |
+
msgid "Track events in Google Analytics"
|
759 |
+
msgstr "Отслеживание событий в Google Analytics"
|
760 |
+
|
761 |
+
#: libs/tab-advanced.php:90
|
762 |
+
msgid "Enabled (Compatibility Mode)"
|
763 |
+
msgstr "Включен (режим совместимости)"
|
764 |
+
|
765 |
+
#: libs/tab-advanced.php:90
|
766 |
+
msgid "Track events using older GDE format (< 2.5)"
|
767 |
+
msgstr "Трек событий с использованием старого формата GDE (< 2.5)"
|
768 |
+
|
769 |
+
#: libs/tab-advanced.php:91
|
770 |
+
msgid "Disable Google Analytics integration"
|
771 |
+
msgstr "Отключить интеграцию Google Analytics"
|
772 |
+
|
773 |
+
#: libs/tab-advanced.php:98
|
774 |
+
msgid "Category"
|
775 |
+
msgstr "Категория"
|
776 |
+
|
777 |
+
#: libs/tab-advanced.php:106
|
778 |
+
msgid "Label"
|
779 |
+
msgstr "Метка"
|
780 |
+
|
781 |
+
#: libs/tab-advanced.php:110
|
782 |
+
msgid "Document URL"
|
783 |
+
msgstr "Ссылка документа"
|
784 |
+
|
785 |
+
#: libs/tab-advanced.php:111
|
786 |
+
msgid "Document Filename"
|
787 |
+
msgstr "Имя документа"
|
788 |
+
|
789 |
+
#: libs/tab-advanced.php:128
|
790 |
+
msgid "Backup and Import"
|
791 |
+
msgstr "Резерв и импорт"
|
792 |
+
|
793 |
+
#: libs/tab-advanced.php:136
|
794 |
+
msgid ""
|
795 |
+
"Download a file to your computer containing your profiles, settings, or "
|
796 |
+
"both, for backup or migration purposes."
|
797 |
+
msgstr ""
|
798 |
+
"Скачайте файл на свой компьютер, содержащий профиль, настройки, или оба для "
|
799 |
+
"резервной копия."
|
800 |
+
|
801 |
+
#: libs/tab-advanced.php:139
|
802 |
+
msgid "All Profiles and Settings"
|
803 |
+
msgstr "Все профили и настройки"
|
804 |
+
|
805 |
+
#: libs/tab-advanced.php:145
|
806 |
+
msgid "Download Export File"
|
807 |
+
msgstr "Скачать файл экспорта"
|
808 |
+
|
809 |
+
#: libs/tab-advanced.php:153
|
810 |
+
msgid "To import, choose a file from your computer:"
|
811 |
+
msgstr "Чтобы импортировать, выберите файл с вашего компьютера:"
|
812 |
+
|
813 |
+
#: libs/tab-advanced.php:159
|
814 |
+
msgid "Upload File and Import"
|
815 |
+
msgstr "Скачать и импортировать файл"
|
816 |
+
|
817 |
+
#: libs/tab-profiles.php:36 libs/tab-profiles.php:49
|
818 |
+
msgid "ID"
|
819 |
+
msgstr "ID"
|
820 |
+
|
821 |
+
#: libs/tab-profiles.php:39 libs/tab-profiles.php:52 libs/tab-profiles.php:105
|
822 |
+
msgid "Name"
|
823 |
+
msgstr "Имя"
|
824 |
+
|
825 |
+
#: libs/tab-profiles.php:42 libs/tab-profiles.php:55 libs/tab-profiles.php:121
|
826 |
+
msgid "Description"
|
827 |
+
msgstr "Описание"
|
828 |
+
|
829 |
+
#: libs/tab-profiles.php:94
|
830 |
+
msgid "Reset Profiles"
|
831 |
+
msgstr "Сброс профиля"
|
832 |
+
|
833 |
+
#: libs/tab-profiles.php:101 libs/tab-profiles.php:126
|
834 |
+
msgid "Add New Profile"
|
835 |
+
msgstr "Добавить новый профиль"
|
836 |
+
|
837 |
+
#: libs/tab-profiles.php:107
|
838 |
+
msgid ""
|
839 |
+
"The name (or ID number) is used to select the profile via the shortcode. It "
|
840 |
+
"is all lowercase and contains only letters, numbers, and hyphens."
|
841 |
+
msgstr ""
|
842 |
+
"Имя (или ID) используется для выбора профиля через короткий номер. Это все "
|
843 |
+
"строчные и содержит только буквы, цифры и дефис."
|
844 |
+
|
845 |
+
#: libs/tab-profiles.php:110
|
846 |
+
msgid "Parent"
|
847 |
+
msgstr "Родитель"
|
848 |
+
|
849 |
+
#: libs/tab-profiles.php:118
|
850 |
+
msgid "Select which profile to use as a starting point."
|
851 |
+
msgstr ""
|
852 |
+
"Выберите, какой профиль будет использоваться в качестве отправной точки."
|
853 |
+
|
854 |
+
#: libs/tab-profiles.php:123
|
855 |
+
msgid "Describe the profile's purpose, for your own reference (optional)."
|
856 |
+
msgstr "Указать цель профиля, собственная ссылка (опционально)."
|
857 |
+
|
858 |
+
#: libs/tab-support.php:26
|
859 |
+
msgid ""
|
860 |
+
"Please review the documentation before submitting a request for support:"
|
861 |
+
msgstr ""
|
862 |
+
"Пожалуйста, ознакомьтесь с документацией перед отправкой запроса в поддержку:"
|
863 |
+
|
864 |
+
#: libs/tab-support.php:29
|
865 |
+
msgid "Plugin FAQ"
|
866 |
+
msgstr "FAQ Плагина"
|
867 |
+
|
868 |
+
#: libs/tab-support.php:30
|
869 |
+
msgid "Support Forum"
|
870 |
+
msgstr "Форум поддержки"
|
871 |
+
|
872 |
+
#: libs/tab-support.php:33
|
873 |
+
msgid "If you're still experiencing a problem, please complete the form below."
|
874 |
+
msgstr ""
|
875 |
+
"Если вы все еще испытываете проблемы, пожалуйста, заполните приведенную ниже "
|
876 |
+
"форму."
|
877 |
+
|
878 |
+
#: libs/tab-support.php:37
|
879 |
+
msgid "Support Request"
|
880 |
+
msgstr "Запрос поддержки"
|
881 |
+
|
882 |
+
#: libs/tab-support.php:41
|
883 |
+
msgid "Your Name"
|
884 |
+
msgstr "Ваше имя"
|
885 |
+
|
886 |
+
#: libs/tab-support.php:45
|
887 |
+
msgid "Your E-mail"
|
888 |
+
msgstr "Ваш E-mail"
|
889 |
+
|
890 |
+
#: libs/tab-support.php:48
|
891 |
+
msgid "A valid email address is required."
|
892 |
+
msgstr "Неправильный электронный адрес."
|
893 |
+
|
894 |
+
#: libs/tab-support.php:52
|
895 |
+
msgid "Shortcode"
|
896 |
+
msgstr "Shortcode"
|
897 |
+
|
898 |
+
#: libs/tab-support.php:55
|
899 |
+
msgid ""
|
900 |
+
"If you're having a problem getting a specific document to work, paste the "
|
901 |
+
"shortcode you're trying to use here."
|
902 |
+
msgstr ""
|
903 |
+
"Если у вас возникли проблемы, получая конкретный документ, вставьте короткий "
|
904 |
+
"код для использования здесь."
|
905 |
+
|
906 |
+
#: libs/tab-support.php:59
|
907 |
+
msgid "Message"
|
908 |
+
msgstr "Сообщение"
|
909 |
+
|
910 |
+
#: libs/tab-support.php:65
|
911 |
+
msgid "Message Options"
|
912 |
+
msgstr "Опции сообщения"
|
913 |
+
|
914 |
+
#: libs/tab-support.php:67
|
915 |
+
msgid "Send debug information"
|
916 |
+
msgstr "Отправить отладочную информацию"
|
917 |
+
|
918 |
+
#: libs/tab-support.php:68
|
919 |
+
msgid "View"
|
920 |
+
msgstr "Вид"
|
921 |
+
|
922 |
+
#: libs/tab-support.php:69
|
923 |
+
msgid "Hide"
|
924 |
+
msgstr "Скрыть"
|
925 |
+
|
926 |
+
#: libs/tab-support.php:70
|
927 |
+
msgid "Send me a copy"
|
928 |
+
msgstr "Отправить себе копию"
|
929 |
+
|
930 |
+
#: libs/tab-support.php:76
|
931 |
+
msgid "Debug Information"
|
932 |
+
msgstr "Отладочная информация"
|
933 |
+
|
934 |
+
#: libs/tab-support.php:77
|
935 |
+
msgid ""
|
936 |
+
"Note: Profile and settings export and diagnostic log (if present) will be "
|
937 |
+
"attached."
|
938 |
+
msgstr ""
|
939 |
+
"Примечание: Профиль и параметры экспорта и журнала диагностики (если есть) "
|
940 |
+
"будет прикреплен."
|
941 |
+
|
942 |
+
#: libs/tab-support.php:135
|
943 |
+
msgid ""
|
944 |
+
"I'm less likely to be able to help you if you do not include debug "
|
945 |
+
"information."
|
946 |
+
msgstr "Я вряд ли помогу Вам, если вы не включите отладочную информацию."
|
947 |
+
|
948 |
+
#: libs/tab-support.php:137
|
949 |
+
msgid "Send Request"
|
950 |
+
msgstr "Отправить запрос"
|
951 |
+
|
952 |
+
#: libs/tab-support.php:141
|
953 |
+
msgid "Request Sent"
|
954 |
+
msgstr "Запрос отправлен"
|
955 |
+
|
956 |
+
#: libs/tab-support.php:142
|
957 |
+
msgid ""
|
958 |
+
"Delivery failed. You can manually send this information to wpp@tnw.org for "
|
959 |
+
"help."
|
960 |
+
msgstr ""
|
961 |
+
"Доставка не удалась. Вы можете вручную отправить эту информацию на адрес "
|
962 |
+
"wpp@tnw.org для получения помощи."
|
languages/gde-uk.mo
CHANGED
Binary file
|
languages/gde-uk.po
CHANGED
@@ -2,11 +2,14 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Doc Embedder\n"
|
4 |
"POT-Creation-Date: 2012-11-20 08:11-0600\n"
|
5 |
-
"PO-Revision-Date: 2012-12-
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
10 |
"X-Poedit-SearchPath-0: .\n"
|
11 |
|
12 |
#: functions-admin.php:259
|
@@ -15,7 +18,7 @@ msgstr "Імпорт"
|
|
15 |
|
16 |
#: functions-admin.php:270
|
17 |
msgid "Performing full import..."
|
18 |
-
msgstr "
|
19 |
|
20 |
#: functions-admin.php:274 functions-admin.php:299
|
21 |
msgid "Importing profiles"
|
@@ -41,7 +44,7 @@ msgstr "Імпортую налаштунки..."
|
|
41 |
|
42 |
#: functions-admin.php:321 functions-admin.php:593 options.php:138
|
43 |
msgid "Please select a valid export file to import."
|
44 |
-
msgstr "
|
45 |
|
46 |
#: functions-admin.php:325
|
47 |
msgid "All or part of the import failed. See above for information."
|
@@ -103,7 +106,7 @@ msgstr ""
|
|
103 |
#: functions-admin.php:596
|
104 |
msgid "Please include a shortcode or message to request support."
|
105 |
msgstr ""
|
106 |
-
"
|
107 |
|
108 |
#: functions-admin.php:634
|
109 |
msgid "Embed file using Google Doc Embedder"
|
@@ -111,14 +114,14 @@ msgstr "Вставити файл за допомогою Google Doc Embedder"
|
|
111 |
|
112 |
#: functions-admin.php:651 libs/lib-eddialog.php:85
|
113 |
msgid "Select the GDE viewer profile to use"
|
114 |
-
msgstr "Оберіть GDE viewer
|
115 |
|
116 |
#: functions-admin.php:784
|
117 |
msgid ""
|
118 |
"You are running a pre-release version of Google Doc Embedder. Please watch "
|
119 |
"this space for important updates."
|
120 |
msgstr ""
|
121 |
-
"Ви працюєте в пре-реліз версії Google Doc Embedder.
|
122 |
"важливі оновлення."
|
123 |
|
124 |
#: functions.php:105
|
@@ -161,7 +164,7 @@ msgstr "Не вдається завантажити необхідний про
|
|
161 |
|
162 |
#: gviewer.php:216
|
163 |
msgid "Unable to secure document"
|
164 |
-
msgstr "
|
165 |
|
166 |
#: load.php:8 libs/lib-formsubmit.php:9 libs/lib-secure.php:9
|
167 |
#: libs/lib-service.php:53 libs/lib-service.php:69 libs/lib-service.php:72
|
@@ -362,7 +365,7 @@ msgid ""
|
|
362 |
"Unable to load profile settings. Please re-activate GDE and if the problem "
|
363 |
"persists, request help using the \"Support\" tab."
|
364 |
msgstr ""
|
365 |
-
"Не вдається завантажити налаштування профілю.
|
366 |
"GDE і якщо проблема не усунена, зверніться по \"Допомогую\"."
|
367 |
|
368 |
#: libs/lib-profile.php:25
|
@@ -415,7 +418,7 @@ msgstr "Видалити панель інструментів"
|
|
415 |
|
416 |
#: libs/lib-profile.php:76
|
417 |
msgid "Use Mobile Toolbar"
|
418 |
-
msgstr "Використання мобільної панелі інструментів"
|
419 |
|
420 |
#: libs/lib-profile.php:80
|
421 |
msgid "Mobile Devices Only (Default)"
|
@@ -424,7 +427,7 @@ msgstr "Тільки мобільні пристрої (за замовчува
|
|
424 |
#: libs/lib-profile.php:80
|
425 |
msgid "Use mobile toolbar when mobile device detected"
|
426 |
msgstr ""
|
427 |
-
"Використовувати
|
428 |
"виявлено"
|
429 |
|
430 |
#: libs/lib-profile.php:81
|
@@ -453,7 +456,7 @@ msgstr "Номери сторінок"
|
|
453 |
|
454 |
#: libs/lib-profile.php:93
|
455 |
msgid "Previous/Next Page"
|
456 |
-
msgstr "
|
457 |
|
458 |
#: libs/lib-profile.php:94
|
459 |
msgid "Zoom In/Out"
|
@@ -473,7 +476,7 @@ msgstr ""
|
|
473 |
|
474 |
#: libs/lib-profile.php:102
|
475 |
msgid "Full Screen Behavior"
|
476 |
-
msgstr "
|
477 |
|
478 |
#: libs/lib-profile.php:106
|
479 |
msgid "Google-Hosted Page (Default)"
|
@@ -523,11 +526,11 @@ msgstr "Безпека"
|
|
523 |
|
524 |
#: libs/lib-profile.php:151
|
525 |
msgid "Hide ability to select/copy/paste text"
|
526 |
-
msgstr "Сховати можливість
|
527 |
|
528 |
#: libs/lib-profile.php:152
|
529 |
msgid "Block all download requests for file"
|
530 |
-
msgstr "Блокувати всі запити
|
531 |
|
532 |
#: libs/lib-profile.php:163
|
533 |
msgid "Default Language"
|
@@ -558,7 +561,7 @@ msgstr ""
|
|
558 |
|
559 |
#: libs/lib-profile.php:204
|
560 |
msgid "Download Link"
|
561 |
-
msgstr "
|
562 |
|
563 |
#: libs/lib-profile.php:208
|
564 |
msgid "All Users"
|
@@ -566,15 +569,15 @@ msgstr "Всі користувачі"
|
|
566 |
|
567 |
#: libs/lib-profile.php:208
|
568 |
msgid "Download link visible to everyone by default"
|
569 |
-
msgstr "Посилання для
|
570 |
|
571 |
#: libs/lib-profile.php:209
|
572 |
msgid "Logged-in Users"
|
573 |
-
msgstr "
|
574 |
|
575 |
#: libs/lib-profile.php:209
|
576 |
msgid "Download link visible to logged-in users"
|
577 |
-
msgstr "Посилання для
|
578 |
|
579 |
#: libs/lib-profile.php:210 libs/tab-advanced.php:91
|
580 |
msgid "None"
|
@@ -618,7 +621,7 @@ msgstr "Під вікном"
|
|
618 |
|
619 |
#: libs/lib-profile.php:238
|
620 |
msgid "Link Behavior"
|
621 |
-
msgstr "
|
622 |
|
623 |
#: libs/lib-profile.php:241
|
624 |
msgid "Force download (bypass browser plugins)"
|
@@ -630,12 +633,12 @@ msgstr "Скорочення URL-адреси"
|
|
630 |
|
631 |
#: libs/lib-profile.php:250 libs/tab-advanced.php:120
|
632 |
msgid "Save Changes"
|
633 |
-
msgstr "Зберегти"
|
634 |
|
635 |
#: libs/lib-setup.php:46 libs/lib-setup.php:292
|
636 |
msgid "This is the default profile, used when no profile is specified."
|
637 |
msgstr ""
|
638 |
-
"
|
639 |
|
640 |
#: libs/lib-setup.php:70
|
641 |
msgid "Hide document location and text selection, prevent downloads"
|
@@ -645,11 +648,11 @@ msgstr ""
|
|
645 |
|
646 |
#: libs/lib-setup.php:94
|
647 |
msgid "Dark-colored theme, example of custom CSS option"
|
648 |
-
msgstr "
|
649 |
|
650 |
#: libs/tab-advanced.php:20
|
651 |
msgid "Plugin Behavior"
|
652 |
-
msgstr "
|
653 |
|
654 |
#: libs/tab-advanced.php:25
|
655 |
msgid "Editor Integration"
|
@@ -674,7 +677,7 @@ msgstr "Максимальний розмір файлу"
|
|
674 |
#: libs/tab-advanced.php:43
|
675 |
msgid ""
|
676 |
"Very large files (typically 8-12MB) aren't supported by Google Doc Viewer"
|
677 |
-
msgstr "Дуже великі файли (тільки 8-12Mб) не підтримується Google Doc Viewer"
|
678 |
|
679 |
#: libs/tab-advanced.php:47
|
680 |
msgid "Error Handling"
|
@@ -717,7 +720,7 @@ msgstr "Всі версії"
|
|
717 |
|
718 |
#: libs/tab-advanced.php:67
|
719 |
msgid "You will receive release and beta notifications"
|
720 |
-
msgstr "Ви отримаєте
|
721 |
|
722 |
#: libs/tab-advanced.php:68
|
723 |
msgid "Release Versions Only"
|
@@ -792,7 +795,7 @@ msgid ""
|
|
792 |
"Download a file to your computer containing your profiles, settings, or "
|
793 |
"both, for backup or migration purposes."
|
794 |
msgstr ""
|
795 |
-
"
|
796 |
"обидва, для резервного копіювання і міграції цілей."
|
797 |
|
798 |
#: libs/tab-advanced.php:139
|
@@ -856,7 +859,7 @@ msgstr "Вказати ціль профілю, для власного поси
|
|
856 |
msgid ""
|
857 |
"Please review the documentation before submitting a request for support:"
|
858 |
msgstr ""
|
859 |
-
"
|
860 |
|
861 |
#: libs/tab-support.php:29
|
862 |
msgid "Plugin FAQ"
|
@@ -926,14 +929,14 @@ msgstr "Надіслати мені копію"
|
|
926 |
|
927 |
#: libs/tab-support.php:76
|
928 |
msgid "Debug Information"
|
929 |
-
msgstr "
|
930 |
|
931 |
#: libs/tab-support.php:77
|
932 |
msgid ""
|
933 |
"Note: Profile and settings export and diagnostic log (if present) will be "
|
934 |
"attached."
|
935 |
msgstr ""
|
936 |
-
"Примітка: Профіль та параметри експорту й
|
937 |
"прикріплений."
|
938 |
|
939 |
#: libs/tab-support.php:135
|
@@ -941,7 +944,7 @@ msgid ""
|
|
941 |
"I'm less likely to be able to help you if you do not include debug "
|
942 |
"information."
|
943 |
msgstr ""
|
944 |
-
"Я навряд чи буду в змозі допомогти вам, якщо ви не
|
945 |
"інформацію."
|
946 |
|
947 |
#: libs/tab-support.php:137
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Doc Embedder\n"
|
4 |
"POT-Creation-Date: 2012-11-20 08:11-0600\n"
|
5 |
+
"PO-Revision-Date: 2012-12-12 20:22+0200\n"
|
6 |
+
"Last-Translator: Kevin Davis <kev@tnw.org>\n"
|
7 |
+
"Language-Team: Kevin Davis <wpp@tnw.org>\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 |
"X-Poedit-SearchPath-0: .\n"
|
14 |
|
15 |
#: functions-admin.php:259
|
18 |
|
19 |
#: functions-admin.php:270
|
20 |
msgid "Performing full import..."
|
21 |
+
msgstr "Виконую повний імпорт ..."
|
22 |
|
23 |
#: functions-admin.php:274 functions-admin.php:299
|
24 |
msgid "Importing profiles"
|
44 |
|
45 |
#: functions-admin.php:321 functions-admin.php:593 options.php:138
|
46 |
msgid "Please select a valid export file to import."
|
47 |
+
msgstr "Будь-ласка, виберіть правильний файл експорту для імпорту."
|
48 |
|
49 |
#: functions-admin.php:325
|
50 |
msgid "All or part of the import failed. See above for information."
|
106 |
#: functions-admin.php:596
|
107 |
msgid "Please include a shortcode or message to request support."
|
108 |
msgstr ""
|
109 |
+
"Будь-ласка, вкажіть короткий код або повідомлення, щоб запросити підтримку."
|
110 |
|
111 |
#: functions-admin.php:634
|
112 |
msgid "Embed file using Google Doc Embedder"
|
114 |
|
115 |
#: functions-admin.php:651 libs/lib-eddialog.php:85
|
116 |
msgid "Select the GDE viewer profile to use"
|
117 |
+
msgstr "Оберіть профіль GDE viewer для використання"
|
118 |
|
119 |
#: functions-admin.php:784
|
120 |
msgid ""
|
121 |
"You are running a pre-release version of Google Doc Embedder. Please watch "
|
122 |
"this space for important updates."
|
123 |
msgstr ""
|
124 |
+
"Ви працюєте в пре-реліз версії Google Doc Embedder. Будь-ласка, подивіться "
|
125 |
"важливі оновлення."
|
126 |
|
127 |
#: functions.php:105
|
164 |
|
165 |
#: gviewer.php:216
|
166 |
msgid "Unable to secure document"
|
167 |
+
msgstr "Нездатний забезпечити документ"
|
168 |
|
169 |
#: load.php:8 libs/lib-formsubmit.php:9 libs/lib-secure.php:9
|
170 |
#: libs/lib-service.php:53 libs/lib-service.php:69 libs/lib-service.php:72
|
365 |
"Unable to load profile settings. Please re-activate GDE and if the problem "
|
366 |
"persists, request help using the \"Support\" tab."
|
367 |
msgstr ""
|
368 |
+
"Не вдається завантажити налаштування профілю. Будь-ласка, активуйте повторно "
|
369 |
"GDE і якщо проблема не усунена, зверніться по \"Допомогую\"."
|
370 |
|
371 |
#: libs/lib-profile.php:25
|
418 |
|
419 |
#: libs/lib-profile.php:76
|
420 |
msgid "Use Mobile Toolbar"
|
421 |
+
msgstr "Використання мобільної версії панелі інструментів"
|
422 |
|
423 |
#: libs/lib-profile.php:80
|
424 |
msgid "Mobile Devices Only (Default)"
|
427 |
#: libs/lib-profile.php:80
|
428 |
msgid "Use mobile toolbar when mobile device detected"
|
429 |
msgstr ""
|
430 |
+
"Використовувати мобільну версію панелі інструментів, коли мобільний пристрій "
|
431 |
"виявлено"
|
432 |
|
433 |
#: libs/lib-profile.php:81
|
456 |
|
457 |
#: libs/lib-profile.php:93
|
458 |
msgid "Previous/Next Page"
|
459 |
+
msgstr "Попередня/наступна сторінка"
|
460 |
|
461 |
#: libs/lib-profile.php:94
|
462 |
msgid "Zoom In/Out"
|
476 |
|
477 |
#: libs/lib-profile.php:102
|
478 |
msgid "Full Screen Behavior"
|
479 |
+
msgstr "Режим у весь екран"
|
480 |
|
481 |
#: libs/lib-profile.php:106
|
482 |
msgid "Google-Hosted Page (Default)"
|
526 |
|
527 |
#: libs/lib-profile.php:151
|
528 |
msgid "Hide ability to select/copy/paste text"
|
529 |
+
msgstr "Сховати можливість вибору/копіювати/вставляти текст"
|
530 |
|
531 |
#: libs/lib-profile.php:152
|
532 |
msgid "Block all download requests for file"
|
533 |
+
msgstr "Блокувати всі запити завантаження файлів"
|
534 |
|
535 |
#: libs/lib-profile.php:163
|
536 |
msgid "Default Language"
|
561 |
|
562 |
#: libs/lib-profile.php:204
|
563 |
msgid "Download Link"
|
564 |
+
msgstr "Посилання для завантаження"
|
565 |
|
566 |
#: libs/lib-profile.php:208
|
567 |
msgid "All Users"
|
569 |
|
570 |
#: libs/lib-profile.php:208
|
571 |
msgid "Download link visible to everyone by default"
|
572 |
+
msgstr "Посилання для завантажування видно всім за замовчуванням"
|
573 |
|
574 |
#: libs/lib-profile.php:209
|
575 |
msgid "Logged-in Users"
|
576 |
+
msgstr "Зареєстрованим користувачам"
|
577 |
|
578 |
#: libs/lib-profile.php:209
|
579 |
msgid "Download link visible to logged-in users"
|
580 |
+
msgstr "Посилання для завантажування видно тільки зареєстрованим користувачам"
|
581 |
|
582 |
#: libs/lib-profile.php:210 libs/tab-advanced.php:91
|
583 |
msgid "None"
|
621 |
|
622 |
#: libs/lib-profile.php:238
|
623 |
msgid "Link Behavior"
|
624 |
+
msgstr "Режим посилання"
|
625 |
|
626 |
#: libs/lib-profile.php:241
|
627 |
msgid "Force download (bypass browser plugins)"
|
633 |
|
634 |
#: libs/lib-profile.php:250 libs/tab-advanced.php:120
|
635 |
msgid "Save Changes"
|
636 |
+
msgstr "Зберегти зміни"
|
637 |
|
638 |
#: libs/lib-setup.php:46 libs/lib-setup.php:292
|
639 |
msgid "This is the default profile, used when no profile is specified."
|
640 |
msgstr ""
|
641 |
+
"Цей профіль застосований за замовчуванням, при відсутності інших профілів."
|
642 |
|
643 |
#: libs/lib-setup.php:70
|
644 |
msgid "Hide document location and text selection, prevent downloads"
|
648 |
|
649 |
#: libs/lib-setup.php:94
|
650 |
msgid "Dark-colored theme, example of custom CSS option"
|
651 |
+
msgstr "Темні-кольори теми, приклад опцій встановлення CSS "
|
652 |
|
653 |
#: libs/tab-advanced.php:20
|
654 |
msgid "Plugin Behavior"
|
655 |
+
msgstr "Режим плаґіну"
|
656 |
|
657 |
#: libs/tab-advanced.php:25
|
658 |
msgid "Editor Integration"
|
677 |
#: libs/tab-advanced.php:43
|
678 |
msgid ""
|
679 |
"Very large files (typically 8-12MB) aren't supported by Google Doc Viewer"
|
680 |
+
msgstr "Дуже великі файли (тільки 8-12Mб) не підтримується в Google Doc Viewer"
|
681 |
|
682 |
#: libs/tab-advanced.php:47
|
683 |
msgid "Error Handling"
|
720 |
|
721 |
#: libs/tab-advanced.php:67
|
722 |
msgid "You will receive release and beta notifications"
|
723 |
+
msgstr "Ви отримаєте реліз і бета повідомлення"
|
724 |
|
725 |
#: libs/tab-advanced.php:68
|
726 |
msgid "Release Versions Only"
|
795 |
"Download a file to your computer containing your profiles, settings, or "
|
796 |
"both, for backup or migration purposes."
|
797 |
msgstr ""
|
798 |
+
"Завантажте файл на свій комп'ютер, що містить профіль, налаштування, або "
|
799 |
"обидва, для резервного копіювання і міграції цілей."
|
800 |
|
801 |
#: libs/tab-advanced.php:139
|
859 |
msgid ""
|
860 |
"Please review the documentation before submitting a request for support:"
|
861 |
msgstr ""
|
862 |
+
"Будь-ласка, ознайомтеся з документацією перед тим як звернутися по допомогу:"
|
863 |
|
864 |
#: libs/tab-support.php:29
|
865 |
msgid "Plugin FAQ"
|
929 |
|
930 |
#: libs/tab-support.php:76
|
931 |
msgid "Debug Information"
|
932 |
+
msgstr "Відлагоджувальна інформація"
|
933 |
|
934 |
#: libs/tab-support.php:77
|
935 |
msgid ""
|
936 |
"Note: Profile and settings export and diagnostic log (if present) will be "
|
937 |
"attached."
|
938 |
msgstr ""
|
939 |
+
"Примітка: Профіль та параметри експорту й журналу діагностики (якщо є) буде "
|
940 |
"прикріплений."
|
941 |
|
942 |
#: libs/tab-support.php:135
|
944 |
"I'm less likely to be able to help you if you do not include debug "
|
945 |
"information."
|
946 |
msgstr ""
|
947 |
+
"Я навряд чи буду в змозі допомогти вам, якщо ви не увімкните налагоджувальну "
|
948 |
"інформацію."
|
949 |
|
950 |
#: libs/tab-support.php:137
|
libs/lib-setup.php
CHANGED
@@ -158,7 +158,7 @@ function gde_setup() {
|
|
158 |
// new activation - write profile(s)
|
159 |
foreach ( $defpros as $key => $prodata ) {
|
160 |
if ( $key == "default" ) {
|
161 |
-
if (
|
162 |
// upgrade conversion handled this - skip
|
163 |
continue;
|
164 |
} else {
|
158 |
// new activation - write profile(s)
|
159 |
foreach ( $defpros as $key => $prodata ) {
|
160 |
if ( $key == "default" ) {
|
161 |
+
if ( $upgrade ) {
|
162 |
// upgrade conversion handled this - skip
|
163 |
continue;
|
164 |
} else {
|
options.php
CHANGED
@@ -379,7 +379,7 @@ function gde_row_actions( $pid ) {
|
|
379 |
foreach ($actions as $k => $v) {
|
380 |
$act[] = '<span class="'.$v[1].'" id="'.$k.'-'.$pid.'"><a href="options-general.php?page=gde-settings">'.$v[0].'</a></span>';
|
381 |
}
|
382 |
-
$acts = implode(" | ", $act);
|
383 |
|
384 |
return $acts;
|
385 |
}
|
379 |
foreach ($actions as $k => $v) {
|
380 |
$act[] = '<span class="'.$v[1].'" id="'.$k.'-'.$pid.'"><a href="options-general.php?page=gde-settings">'.$v[0].'</a></span>';
|
381 |
}
|
382 |
+
$acts = implode( " | ", $act );
|
383 |
|
384 |
return $acts;
|
385 |
}
|
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 |
|
@@ -45,6 +45,7 @@ Translations are welcome; see the [web site](http://www.davistribe.org/gde/notes
|
|
45 |
* Czech (cs\_CZ) by Jirka, thanks! (update needed)
|
46 |
* French (fr\_FR) by [Erwan](http://profiles.wordpress.org/erwanlescop "Erwan"), thanks!
|
47 |
* Hungarian (hu\_HU) by [szemcse](http://profiles.wordpress.org/szemcse "szemcse"), thanks!
|
|
|
48 |
* Spanish (es\_ES) by [elarequi](http://elarequi.com/propuestastic/ "elarequi"), thanks!
|
49 |
* Turkish (tr\_TR) by [LettoBlog](http://profiles.wordpress.org/lettoblog "LettoBlog"), thanks!
|
50 |
* Ukrainian (uk) by Józek, thanks!
|
@@ -134,6 +135,12 @@ More common questions are answered on the GDE web site [here](http://www.davistr
|
|
134 |
|
135 |
(E) Enhanced Viewer
|
136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
= 2.5 =
|
138 |
* Added: "Profiles" allow each viewer instance to have its own settings
|
139 |
* Added: (E) Private document support (block downloads of source file)
|
@@ -145,6 +152,7 @@ More common questions are answered on the GDE web site [here](http://www.davistr
|
|
145 |
* Added: Media Library and editor integration improvements
|
146 |
* Added: Support for dynamic protocol document links (thanks Clifford)
|
147 |
* Added: French translation (thanks Erwan)
|
|
|
148 |
* Fixed: Uses WordPress HTTP API instead of cURL etc. throughout
|
149 |
* Fixed: (E) Hidden toolbar buttons still narrowly clickable (thanks rohan)
|
150 |
* Fixed: Editor dialog and default base URL with non-standard include
|
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.5
|
8 |
Stable tag: trunk
|
9 |
License: GPLv2 or later
|
10 |
|
45 |
* Czech (cs\_CZ) by Jirka, thanks! (update needed)
|
46 |
* French (fr\_FR) by [Erwan](http://profiles.wordpress.org/erwanlescop "Erwan"), thanks!
|
47 |
* Hungarian (hu\_HU) by [szemcse](http://profiles.wordpress.org/szemcse "szemcse"), thanks!
|
48 |
+
* Russian (ru\_RU) by Józek, thanks!
|
49 |
* Spanish (es\_ES) by [elarequi](http://elarequi.com/propuestastic/ "elarequi"), thanks!
|
50 |
* Turkish (tr\_TR) by [LettoBlog](http://profiles.wordpress.org/lettoblog "LettoBlog"), thanks!
|
51 |
* Ukrainian (uk) by Józek, thanks!
|
135 |
|
136 |
(E) Enhanced Viewer
|
137 |
|
138 |
+
= 2.5.1 =
|
139 |
+
* Added: Russian translation (thanks Józek)
|
140 |
+
* Fixed: Default profile not created on clean install (thanks Clifford)
|
141 |
+
* Fixed: Viewer size from shortcode doesn't default to pixel
|
142 |
+
* Fixed: Erroneous error message when file validation is blocked
|
143 |
+
|
144 |
= 2.5 =
|
145 |
* Added: "Profiles" allow each viewer instance to have its own settings
|
146 |
* Added: (E) Private document support (block downloads of source file)
|
152 |
* Added: Media Library and editor integration improvements
|
153 |
* Added: Support for dynamic protocol document links (thanks Clifford)
|
154 |
* Added: French translation (thanks Erwan)
|
155 |
+
* Added: Ukrainian translation (thanks Józek)
|
156 |
* Fixed: Uses WordPress HTTP API instead of cURL etc. throughout
|
157 |
* Fixed: (E) Hidden toolbar buttons still narrowly clickable (thanks rohan)
|
158 |
* Fixed: Editor dialog and default base URL with non-standard include
|