Version Description
- Partial Panorama for pro version
=
Download this release
Release Info
Developer | rextheme |
Plugin | WP VR – 360 Panorama and virtual tour creator for WordPress |
Version | 3.7.0 |
Comparing to | |
See all releases |
Code changes from version 3.6.0 to 3.7.0
- README.txt +5 -1
- admin/class-wpvr-ajax.php +22 -2
- admin/partials/wpvr-meta-box-builder-display.php +29 -1
- languages/wpvr-af.mo +0 -0
- languages/wpvr-af.po +306 -0
- languages/wpvr-cs_CZ.mo +0 -0
- languages/wpvr-cs_CZ.po +306 -0
- languages/wpvr-da_DK.mo +0 -0
- languages/wpvr-da_DK.po +306 -0
- languages/wpvr-fi.mo +0 -0
- languages/wpvr-fi.po +307 -0
- languages/wpvr-fr_FR.mo +0 -0
- languages/wpvr-fr_FR.po +311 -0
- languages/wpvr-hr.mo +0 -0
- languages/wpvr-hr.po +307 -0
- languages/wpvr-ja.mo +0 -0
- languages/wpvr-ja.po +296 -0
- languages/wpvr-pl_PL.mo +0 -0
- languages/wpvr-pl_PL.po +309 -0
- languages/wpvr-ru_RU.mo +0 -0
- languages/wpvr-ru_RU.po +306 -0
- languages/wpvr-sv_SE.mo +0 -0
- languages/wpvr-sv_SE.po +305 -0
- public/class-wpvr-public.php +33 -5
- wpvr.php +30 -2
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://rextheme.com/wp-vr-360-panorama-and-virtual-tour-creator-fo
|
|
4 |
Tags: virtual tour, real estate tour, panorama, panorama viewer, virtual tour, 360 panorama, interactive tour
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.3
|
7 |
-
Stable tag: 3.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -111,6 +111,7 @@ For more control over creating a virtual tour, learn about the [Premium version]
|
|
111 |
* Custom control buttons
|
112 |
* Google street view embed
|
113 |
* Company logo
|
|
|
114 |
* Personalized support (e-mail or forum)
|
115 |
|
116 |
[Instructions to upgrade to pro](https://rextheme.com/docs/wp-vr/how-to-upgrade-to-pro/)
|
@@ -304,5 +305,8 @@ Simply add "/plugins/wpvr" to exclusion field (or use the location where you sto
|
|
304 |
= 3.6.0 =
|
305 |
* js optimization removed
|
306 |
|
|
|
|
|
|
|
307 |
== Upgrade Notice ==
|
308 |
Please do update the WP VR to the latest version. Each update makes it sure your plugin is supporting all tour features.
|
4 |
Tags: virtual tour, real estate tour, panorama, panorama viewer, virtual tour, 360 panorama, interactive tour
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.3
|
7 |
+
Stable tag: 3.7.0
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
111 |
* Custom control buttons
|
112 |
* Google street view embed
|
113 |
* Company logo
|
114 |
+
* Partial Panorama
|
115 |
* Personalized support (e-mail or forum)
|
116 |
|
117 |
[Instructions to upgrade to pro](https://rextheme.com/docs/wp-vr/how-to-upgrade-to-pro/)
|
305 |
= 3.6.0 =
|
306 |
* js optimization removed
|
307 |
|
308 |
+
= 3.7.0 =
|
309 |
+
* Partial Panorama for pro version
|
310 |
+
|
311 |
== Upgrade Notice ==
|
312 |
Please do update the WP VR to the latest version. Each update makes it sure your plugin is supporting all tour features.
|
admin/class-wpvr-ajax.php
CHANGED
@@ -104,7 +104,6 @@ class Wpvr_Ajax {
|
|
104 |
die();
|
105 |
}
|
106 |
if (empty($scenes_val["scene-attachment-url"])) {
|
107 |
-
// var_dump($scenes_val["scene-attachment-url"]);
|
108 |
wp_send_json_error('<p><span>Warning:</span> A scene image is required for every scene where scene id: '.$scene_id_validate.'</p>');
|
109 |
die();
|
110 |
}
|
@@ -320,6 +319,15 @@ class Wpvr_Ajax {
|
|
320 |
$scene_author = '';
|
321 |
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
322 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
$default_scene_pitch = null;
|
324 |
$default_scene_pitch = (float)$panoscenes["scene-pitch"];
|
325 |
|
@@ -390,7 +398,7 @@ class Wpvr_Ajax {
|
|
390 |
}
|
391 |
|
392 |
$scene_info = array();
|
393 |
-
$scene_info = array("type"=>$panoscenes["scene-type"],"panorama"=>$panoscenes["scene-attachment-url"],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author,"hotSpots"=>$hotspots);
|
394 |
|
395 |
if ($panoscenes["ptyscene"] == "off") {
|
396 |
unset($scene_info['pitch']);
|
@@ -404,6 +412,18 @@ class Wpvr_Ajax {
|
|
404 |
unset($scene_info['author']);
|
405 |
}
|
406 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
if ($panoscenes["cvgscene"] == "off") {
|
408 |
unset($scene_info['maxPitch']);
|
409 |
unset($scene_info['minPitch']);
|
104 |
die();
|
105 |
}
|
106 |
if (empty($scenes_val["scene-attachment-url"])) {
|
|
|
107 |
wp_send_json_error('<p><span>Warning:</span> A scene image is required for every scene where scene id: '.$scene_id_validate.'</p>');
|
108 |
die();
|
109 |
}
|
319 |
$scene_author = '';
|
320 |
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
321 |
|
322 |
+
$scene_vaov = 180;
|
323 |
+
$scene_vaov = (float)$panoscenes["scene-vaov"];
|
324 |
+
|
325 |
+
$scene_haov = 360;
|
326 |
+
$scene_haov = (float)$panoscenes["scene-haov"];
|
327 |
+
|
328 |
+
$scene_vertical_offset = 0;
|
329 |
+
$scene_vertical_offset = (float)$panoscenes["scene-vertical-offset"];
|
330 |
+
|
331 |
$default_scene_pitch = null;
|
332 |
$default_scene_pitch = (float)$panoscenes["scene-pitch"];
|
333 |
|
398 |
}
|
399 |
|
400 |
$scene_info = array();
|
401 |
+
$scene_info = array("type"=>$panoscenes["scene-type"],"panorama"=>$panoscenes["scene-attachment-url"],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author ,"vaov"=>$scene_vaov, "haov"=>$scene_haov, "vOffset"=>$scene_vertical_offset, "hotSpots"=>$hotspots);
|
402 |
|
403 |
if ($panoscenes["ptyscene"] == "off") {
|
404 |
unset($scene_info['pitch']);
|
412 |
unset($scene_info['author']);
|
413 |
}
|
414 |
|
415 |
+
if (empty($scene_vaov)) {
|
416 |
+
unset($scene_info['vaov']);
|
417 |
+
}
|
418 |
+
|
419 |
+
if (empty($scene_haov)) {
|
420 |
+
unset($scene_info['haov']);
|
421 |
+
}
|
422 |
+
|
423 |
+
if (empty($scene_vertical_offset)) {
|
424 |
+
unset($scene_info['vOffset']);
|
425 |
+
}
|
426 |
+
|
427 |
if ($panoscenes["cvgscene"] == "off") {
|
428 |
unset($scene_info['maxPitch']);
|
429 |
unset($scene_info['minPitch']);
|
admin/partials/wpvr-meta-box-builder-display.php
CHANGED
@@ -156,6 +156,22 @@ if (isset($postdata['panodata'])) {
|
|
156 |
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
157 |
}
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
$default_scene_pitch = null;
|
160 |
if (isset($panoscenes["scene-pitch"])) {
|
161 |
$default_scene_pitch = (float)$panoscenes["scene-pitch"];
|
@@ -262,7 +278,7 @@ if (isset($postdata['panodata'])) {
|
|
262 |
}
|
263 |
|
264 |
$scene_info = array();
|
265 |
-
$scene_info = array("type"=>$panoscenes["scene-type"],"panorama"=>$panoscenes["scene-attachment-url"],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author,"hotSpots"=>$hotspots);
|
266 |
|
267 |
if (isset($panoscenes["ptyscene"])) {
|
268 |
if ($panoscenes["ptyscene"] == "off") {
|
@@ -278,6 +294,18 @@ if (isset($postdata['panodata'])) {
|
|
278 |
unset($scene_info['author']);
|
279 |
}
|
280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
if (isset($panoscenes["cvgscene"])) {
|
282 |
if ($panoscenes["cvgscene"] == "off") {
|
283 |
unset($scene_info['maxPitch']);
|
156 |
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
157 |
}
|
158 |
|
159 |
+
$scene_vaov = 180;
|
160 |
+
if (isset($panoscenes["scene-vaov"])) {
|
161 |
+
$scene_vaov = (float)$panoscenes["scene-vaov"];
|
162 |
+
}
|
163 |
+
|
164 |
+
$scene_haov = 360;
|
165 |
+
if (isset($panoscenes["scene-haov"])) {
|
166 |
+
$scene_haov = (float)$panoscenes["scene-haov"];
|
167 |
+
}
|
168 |
+
|
169 |
+
|
170 |
+
$scene_vertical_offset = 0;
|
171 |
+
if (isset($panoscenes["scene-vertical-offset"])) {
|
172 |
+
$scene_vertical_offset = (float)$panoscenes["scene-vertical-offset"];
|
173 |
+
}
|
174 |
+
|
175 |
$default_scene_pitch = null;
|
176 |
if (isset($panoscenes["scene-pitch"])) {
|
177 |
$default_scene_pitch = (float)$panoscenes["scene-pitch"];
|
278 |
}
|
279 |
|
280 |
$scene_info = array();
|
281 |
+
$scene_info = array("type"=>$panoscenes["scene-type"],"panorama"=>$panoscenes["scene-attachment-url"],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author, "vaov"=>$scene_vaov, "haov"=>$scene_haov, "vOffset"=>$scene_vertical_offset, "hotSpots"=>$hotspots);
|
282 |
|
283 |
if (isset($panoscenes["ptyscene"])) {
|
284 |
if ($panoscenes["ptyscene"] == "off") {
|
294 |
unset($scene_info['author']);
|
295 |
}
|
296 |
|
297 |
+
if (empty($scene_vaov)) {
|
298 |
+
unset($scene_info['vaov']);
|
299 |
+
}
|
300 |
+
|
301 |
+
if (empty($scene_haov)) {
|
302 |
+
unset($scene_info['haov']);
|
303 |
+
}
|
304 |
+
|
305 |
+
if (empty($scene_vertical_offset)) {
|
306 |
+
unset($scene_info['vOffset']);
|
307 |
+
}
|
308 |
+
|
309 |
if (isset($panoscenes["cvgscene"])) {
|
310 |
if ($panoscenes["cvgscene"] == "off") {
|
311 |
unset($scene_info['maxPitch']);
|
languages/wpvr-af.mo
ADDED
Binary file
|
languages/wpvr-af.po
ADDED
@@ -0,0 +1,306 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-16 09:37+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Afrikaans\n"
|
9 |
+
"Language: af\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
16 |
+
|
17 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
18 |
+
msgid "Activate License"
|
19 |
+
msgstr "Aktiveer lisensie"
|
20 |
+
|
21 |
+
#: admin/partials/wpvr_documentation.php:53
|
22 |
+
msgid ""
|
23 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
24 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
25 |
+
msgstr ""
|
26 |
+
"Voordat u begin, kan u ons Dokumentasie nagaan om vertroud te raak met WP VR "
|
27 |
+
"- 360 Panorama en virtuele toermaker vir WordPress."
|
28 |
+
|
29 |
+
#: admin/partials/wpvr_documentation.php:73
|
30 |
+
msgid ""
|
31 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
32 |
+
"forum. We are to solve your issue."
|
33 |
+
msgstr ""
|
34 |
+
"Kan u nie 'n oplossing vind met ons dokumentasie nie? Plaas 'n kaartjie op "
|
35 |
+
"die ondersteuningsforum. Ons moet u probleem oplos."
|
36 |
+
|
37 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
38 |
+
msgid "Check how to use: "
|
39 |
+
msgstr "Kyk hoe om te gebruik:"
|
40 |
+
|
41 |
+
#: admin/partials/wpvr_documentation.php:166
|
42 |
+
msgid "Company logo"
|
43 |
+
msgstr "Maatskappy se logo"
|
44 |
+
|
45 |
+
#: admin/partials/wpvr_documentation.php:153
|
46 |
+
msgid "Compass Switch"
|
47 |
+
msgstr "Kompas skakelaar"
|
48 |
+
|
49 |
+
#: admin/partials/wpvr_documentation.php:164
|
50 |
+
msgid "Custom control buttons"
|
51 |
+
msgstr "Pasgemaakte beheerknoppies"
|
52 |
+
|
53 |
+
#: admin/partials/wpvr_documentation.php:163
|
54 |
+
msgid "Custom scene gallery"
|
55 |
+
msgstr "Pasgemaakte toneelgalery"
|
56 |
+
|
57 |
+
#: admin/partials/wpvr_documentation.php:156
|
58 |
+
msgid "Customize each scene's default face on load"
|
59 |
+
msgstr "Pas elke toneel se standaardgesig op die vrag aan"
|
60 |
+
|
61 |
+
#: admin/partials/wpvr_documentation.php:151
|
62 |
+
msgid "Customized hotspot icon"
|
63 |
+
msgstr "Aangepaste hotspot-ikoon"
|
64 |
+
|
65 |
+
#: admin/partials/wpvr_license.php:34
|
66 |
+
msgid "Deactivate License"
|
67 |
+
msgstr "Deaktiveer lisensie"
|
68 |
+
|
69 |
+
#: admin/partials/wpvr_documentation.php:154
|
70 |
+
msgid "Default zoom level"
|
71 |
+
msgstr "Verstek zoomvlak"
|
72 |
+
|
73 |
+
#: admin/partials/wpvr_documentation.php:178
|
74 |
+
msgid ""
|
75 |
+
"Do not close or refresh the page during import process. It may take few "
|
76 |
+
"minutes."
|
77 |
+
msgstr ""
|
78 |
+
"Moenie die bladsy tydens die invoerproses toemaak of verfris nie. Dit kan 'n "
|
79 |
+
"paar minute neem."
|
80 |
+
|
81 |
+
#: admin/partials/wpvr_documentation.php:47
|
82 |
+
msgid "Documentation"
|
83 |
+
msgstr "dokumentasie"
|
84 |
+
|
85 |
+
#: admin/partials/wpvr_documentation.php:161
|
86 |
+
msgid "Duplicate tour support"
|
87 |
+
msgstr "Dupliseer toerondersteuning"
|
88 |
+
|
89 |
+
#: admin/partials/wpvr_documentation.php:152
|
90 |
+
msgid "Dynamic Icon background color on hotspot"
|
91 |
+
msgstr "Dinamiese ikoon-agtergrondkleur op die hotspot"
|
92 |
+
|
93 |
+
#: admin/partials/wpvr_license.php:22
|
94 |
+
msgid "Enter your license key, save changes and activate."
|
95 |
+
msgstr "Voer u lisensie-sleutel in, stoor veranderinge en aktiveer."
|
96 |
+
|
97 |
+
#: admin/partials/wpvr_documentation.php:162
|
98 |
+
msgid "File import & export system"
|
99 |
+
msgstr "Lêerinvoer en uitvoerstelsel"
|
100 |
+
|
101 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
102 |
+
msgid "For classic editor:"
|
103 |
+
msgstr "Vir klassieke redakteur:"
|
104 |
+
|
105 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
106 |
+
msgid "For gutenberg:"
|
107 |
+
msgstr "Vir gutenberg:"
|
108 |
+
|
109 |
+
#: admin/partials/wpvr_documentation.php:23
|
110 |
+
msgid "General"
|
111 |
+
msgstr "algemene"
|
112 |
+
|
113 |
+
#: admin/partials/wpvr_documentation.php:169
|
114 |
+
msgid "Get Premium Version"
|
115 |
+
msgstr "Kry premiumweergawe"
|
116 |
+
|
117 |
+
#: admin/partials/wpvr_documentation.php:25
|
118 |
+
msgid "Go Premium"
|
119 |
+
msgstr "Go Premium"
|
120 |
+
|
121 |
+
#: admin/partials/wpvr_documentation.php:165
|
122 |
+
msgid "Google street view embed"
|
123 |
+
msgstr "Google Street View inbed"
|
124 |
+
|
125 |
+
#: admin/partials/wpvr_documentation.php:160
|
126 |
+
msgid "Gyroscope support"
|
127 |
+
msgstr "Gyroscoop ondersteuning"
|
128 |
+
|
129 |
+
#: elementor/elements/Wpvr-widget.php:133
|
130 |
+
msgid "Height:"
|
131 |
+
msgstr "Hoogte:"
|
132 |
+
|
133 |
+
#: admin/partials/wpvr_documentation.php:159
|
134 |
+
msgid "Hotspot based scene face support"
|
135 |
+
msgstr "Hotspot-gebaseerde toneelgesigsondersteuning"
|
136 |
+
|
137 |
+
#. Author URI of the plugin
|
138 |
+
msgid "http://rextheme.com/"
|
139 |
+
msgstr "http://rextheme.com/"
|
140 |
+
|
141 |
+
#. URI of the plugin
|
142 |
+
msgid "https://rextheme.com/wpvr/"
|
143 |
+
msgstr "https://rextheme.com/wpvr/"
|
144 |
+
|
145 |
+
#: elementor/elements/Wpvr-widget.php:113
|
146 |
+
msgid "ID:"
|
147 |
+
msgstr "ID:"
|
148 |
+
|
149 |
+
#: admin/partials/wpvr_documentation.php:29
|
150 |
+
msgid "Import"
|
151 |
+
msgstr "invoer"
|
152 |
+
|
153 |
+
#: admin/partials/wpvr_documentation.php:177
|
154 |
+
msgid "Import tour file: "
|
155 |
+
msgstr "Voer toerlêer in:"
|
156 |
+
|
157 |
+
#: admin/partials/wpvr_license.php:18
|
158 |
+
msgid "License Key"
|
159 |
+
msgstr "Lisensie sleutel"
|
160 |
+
|
161 |
+
#: admin/partials/wpvr_documentation.php:105
|
162 |
+
msgid "Make WPVR Popular"
|
163 |
+
msgstr "Maak WPVR gewild"
|
164 |
+
|
165 |
+
#: admin/partials/wpvr_documentation.php:155
|
166 |
+
msgid "Maximum and minimum zoom range"
|
167 |
+
msgstr "Maksimum en minimum zoombereik"
|
168 |
+
|
169 |
+
#: admin/partials/wpvr_documentation.php:167
|
170 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
171 |
+
msgstr ""
|
172 |
+
"Gepersonaliseerde ondersteuning op beide ondersteuningsforum en ons "
|
173 |
+
"ondersteunings-e-pos."
|
174 |
+
|
175 |
+
#: admin/partials/wpvr_documentation.php:77
|
176 |
+
msgid "Post a Ticket"
|
177 |
+
msgstr "Plaas 'n kaartjie"
|
178 |
+
|
179 |
+
#: elementor/elements/Wpvr-widget.php:136
|
180 |
+
msgid "Put value in (px)"
|
181 |
+
msgstr "Sit waarde in (px)"
|
182 |
+
|
183 |
+
#: elementor/elements/Wpvr-widget.php:143
|
184 |
+
msgid "Radius:"
|
185 |
+
msgstr "radius:"
|
186 |
+
|
187 |
+
#: admin/partials/wpvr_documentation.php:115
|
188 |
+
msgid "Rate Us! "
|
189 |
+
msgstr "Gradeer ons!"
|
190 |
+
|
191 |
+
#. Author of the plugin
|
192 |
+
msgid "Rextheme"
|
193 |
+
msgstr "Rextheme"
|
194 |
+
|
195 |
+
#: admin/partials/wpvr_documentation.php:157
|
196 |
+
msgid "Scene grab control and custom boundary for each scene"
|
197 |
+
msgstr "Toneelgrypbeheer en pasgemaakte grens vir elke toneel"
|
198 |
+
|
199 |
+
#: admin/partials/wpvr_documentation.php:158
|
200 |
+
msgid "Scene title and author tag support"
|
201 |
+
msgstr "Ondersteuning van toneel en skrywer-merker"
|
202 |
+
|
203 |
+
#: admin/partials/wpvr_documentation.php:125
|
204 |
+
msgid "Share On"
|
205 |
+
msgstr "Deel op"
|
206 |
+
|
207 |
+
#: admin/partials/wpvr_documentation.php:130
|
208 |
+
msgid "Share on Facebook"
|
209 |
+
msgstr "Deel op Facebook"
|
210 |
+
|
211 |
+
#: admin/partials/wpvr_documentation.php:132
|
212 |
+
msgid "Share on Google+"
|
213 |
+
msgstr "Deel op Google+"
|
214 |
+
|
215 |
+
#: admin/partials/wpvr_documentation.php:133
|
216 |
+
msgid "Share on LinkedIn"
|
217 |
+
msgstr "Deel op LinkedIn"
|
218 |
+
|
219 |
+
#: admin/partials/wpvr_documentation.php:131
|
220 |
+
msgid "Share on Twitter"
|
221 |
+
msgstr "Deel op Twitter"
|
222 |
+
|
223 |
+
#: admin/partials/wpvr_documentation.php:86
|
224 |
+
msgid "Share Your Thoughts"
|
225 |
+
msgstr "Deel jou gedagtes"
|
226 |
+
|
227 |
+
#: admin/partials/wpvr_documentation.php:96
|
228 |
+
msgid "Suggest"
|
229 |
+
msgstr "Stel '"
|
230 |
+
|
231 |
+
#: admin/partials/wpvr_documentation.php:67
|
232 |
+
msgid "Support"
|
233 |
+
msgstr "ondersteuning"
|
234 |
+
|
235 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
236 |
+
msgid ""
|
237 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
238 |
+
msgstr ""
|
239 |
+
"Gebruik die volgende kortkode om hierdie Wpvr-toer in u plasings of bladsye "
|
240 |
+
"te gebruik:"
|
241 |
+
|
242 |
+
#: admin/partials/wpvr_documentation.php:150
|
243 |
+
msgid "Unlimited hotspots"
|
244 |
+
msgstr "Onbeperkte hotspots"
|
245 |
+
|
246 |
+
#: admin/partials/wpvr_documentation.php:149
|
247 |
+
msgid "Unlimited scenes"
|
248 |
+
msgstr "Onbeperkte tonele"
|
249 |
+
|
250 |
+
#: admin/partials/wpvr_documentation.php:204
|
251 |
+
msgid "Upgrade to Pro"
|
252 |
+
msgstr "Opgradeer na Pro"
|
253 |
+
|
254 |
+
#: wpvr.php:810
|
255 |
+
msgid "Upgrade to pro"
|
256 |
+
msgstr "Opgradeer na pro"
|
257 |
+
|
258 |
+
#: admin/partials/wpvr_documentation.php:24
|
259 |
+
msgid "Video Tutorials"
|
260 |
+
msgstr "Video-tutoriale"
|
261 |
+
|
262 |
+
#: admin/partials/wpvr_documentation.php:57
|
263 |
+
msgid "View Documentation"
|
264 |
+
msgstr "Kyk na dokumentasie"
|
265 |
+
|
266 |
+
#: admin/partials/wpvr_documentation.php:147
|
267 |
+
msgid "Why upgrade to Premium Version?"
|
268 |
+
msgstr "Waarom opgradeer na Premium weergawe?"
|
269 |
+
|
270 |
+
#: elementor/elements/Wpvr-widget.php:123
|
271 |
+
msgid "Width:"
|
272 |
+
msgstr "breedte:"
|
273 |
+
|
274 |
+
#. Name of the plugin
|
275 |
+
msgid "WP VR"
|
276 |
+
msgstr "WP VR"
|
277 |
+
|
278 |
+
#. Description of the plugin
|
279 |
+
msgid ""
|
280 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
281 |
+
"panaroma & virtual builder tool for WordPress Website."
|
282 |
+
msgstr ""
|
283 |
+
"WP VR - 360 Panorama en virtuele toermaker vir WordPress is 'n aangepaste "
|
284 |
+
"panorama en virtuele bouerinstrument vir WordPress webwerf."
|
285 |
+
|
286 |
+
#: elementor/elements/Wpvr-widget.php:43
|
287 |
+
msgid "Wpvr"
|
288 |
+
msgstr "WPVR"
|
289 |
+
|
290 |
+
#: elementor/elements/Wpvr-widget.php:105
|
291 |
+
msgid "Wpvr Setup"
|
292 |
+
msgstr "WPVR-opstelling"
|
293 |
+
|
294 |
+
#: admin/partials/wpvr_documentation.php:111
|
295 |
+
msgid ""
|
296 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
297 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
298 |
+
msgstr ""
|
299 |
+
"U gradering en terugvoer is vir ons van belang. Gee ons 'n waardering as u "
|
300 |
+
"tevrede is met WP VR - 360 Panorama en 'n virtuele toermaker vir WordPress."
|
301 |
+
|
302 |
+
#: admin/partials/wpvr_documentation.php:92
|
303 |
+
msgid ""
|
304 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
305 |
+
msgstr ""
|
306 |
+
"U voorstelle is vir ons waardevol. Dit kan help om WPVR nog beter te maak."
|
languages/wpvr-cs_CZ.mo
ADDED
Binary file
|
languages/wpvr-cs_CZ.po
ADDED
@@ -0,0 +1,306 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-17 07:26+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Czech\n"
|
9 |
+
"Language: cs-CZ\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : "
|
11 |
+
"2;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
17 |
+
|
18 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
19 |
+
msgid "Activate License"
|
20 |
+
msgstr "Aktivujte licenci"
|
21 |
+
|
22 |
+
#: admin/partials/wpvr_documentation.php:53
|
23 |
+
msgid ""
|
24 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
25 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
26 |
+
msgstr ""
|
27 |
+
"Než začnete, můžete si přečíst naši dokumentaci, abyste se seznámili s "
|
28 |
+
"programem WP VR - 360 Panorama a tvůrcem virtuální prohlídky pro WordPress."
|
29 |
+
|
30 |
+
#: admin/partials/wpvr_documentation.php:73
|
31 |
+
msgid ""
|
32 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
33 |
+
"forum. We are to solve your issue."
|
34 |
+
msgstr ""
|
35 |
+
"Nemůžete najít řešení v naší dokumentaci? Stačí vložit lístek na fóru "
|
36 |
+
"podpory. Váš problém vyřešíme."
|
37 |
+
|
38 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
39 |
+
msgid "Check how to use: "
|
40 |
+
msgstr "Zkontrolujte, jak používat:"
|
41 |
+
|
42 |
+
#: admin/partials/wpvr_documentation.php:166
|
43 |
+
msgid "Company logo"
|
44 |
+
msgstr "Logo společnosti"
|
45 |
+
|
46 |
+
#: admin/partials/wpvr_documentation.php:153
|
47 |
+
msgid "Compass Switch"
|
48 |
+
msgstr "Kompasový přepínač"
|
49 |
+
|
50 |
+
#: admin/partials/wpvr_documentation.php:164
|
51 |
+
msgid "Custom control buttons"
|
52 |
+
msgstr "Vlastní ovládací tlačítka"
|
53 |
+
|
54 |
+
#: admin/partials/wpvr_documentation.php:163
|
55 |
+
msgid "Custom scene gallery"
|
56 |
+
msgstr "Vlastní scénická galerie"
|
57 |
+
|
58 |
+
#: admin/partials/wpvr_documentation.php:156
|
59 |
+
msgid "Customize each scene's default face on load"
|
60 |
+
msgstr "Přizpůsobte výchozí tvář každé scény při načtení"
|
61 |
+
|
62 |
+
#: admin/partials/wpvr_documentation.php:151
|
63 |
+
msgid "Customized hotspot icon"
|
64 |
+
msgstr "Ikona přizpůsobeného hotspotu"
|
65 |
+
|
66 |
+
#: admin/partials/wpvr_license.php:34
|
67 |
+
msgid "Deactivate License"
|
68 |
+
msgstr "Deaktivujte licenci"
|
69 |
+
|
70 |
+
#: admin/partials/wpvr_documentation.php:154
|
71 |
+
msgid "Default zoom level"
|
72 |
+
msgstr "Výchozí úroveň přiblížení"
|
73 |
+
|
74 |
+
#: admin/partials/wpvr_documentation.php:178
|
75 |
+
msgid ""
|
76 |
+
"Do not close or refresh the page during import process. It may take few "
|
77 |
+
"minutes."
|
78 |
+
msgstr ""
|
79 |
+
"Během importu stránku nezavírejte ani neobnovujte. Může to trvat několik "
|
80 |
+
"minut."
|
81 |
+
|
82 |
+
#: admin/partials/wpvr_documentation.php:47
|
83 |
+
msgid "Documentation"
|
84 |
+
msgstr "Dokumentace"
|
85 |
+
|
86 |
+
#: admin/partials/wpvr_documentation.php:161
|
87 |
+
msgid "Duplicate tour support"
|
88 |
+
msgstr "Podpora duplicitní prohlídky"
|
89 |
+
|
90 |
+
#: admin/partials/wpvr_documentation.php:152
|
91 |
+
msgid "Dynamic Icon background color on hotspot"
|
92 |
+
msgstr "Barva pozadí dynamické ikony na hotspotu"
|
93 |
+
|
94 |
+
#: admin/partials/wpvr_license.php:22
|
95 |
+
msgid "Enter your license key, save changes and activate."
|
96 |
+
msgstr "Zadejte licenční klíč, uložte změny a aktivujte."
|
97 |
+
|
98 |
+
#: admin/partials/wpvr_documentation.php:162
|
99 |
+
msgid "File import & export system"
|
100 |
+
msgstr "Systém pro import a export souborů"
|
101 |
+
|
102 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
103 |
+
msgid "For classic editor:"
|
104 |
+
msgstr "Pro klasický editor:"
|
105 |
+
|
106 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
107 |
+
msgid "For gutenberg:"
|
108 |
+
msgstr "Pro gutenberg:"
|
109 |
+
|
110 |
+
#: admin/partials/wpvr_documentation.php:23
|
111 |
+
msgid "General"
|
112 |
+
msgstr "Všeobecné"
|
113 |
+
|
114 |
+
#: admin/partials/wpvr_documentation.php:169
|
115 |
+
msgid "Get Premium Version"
|
116 |
+
msgstr "Získejte prémiovou verzi"
|
117 |
+
|
118 |
+
#: admin/partials/wpvr_documentation.php:25
|
119 |
+
msgid "Go Premium"
|
120 |
+
msgstr "Přejít na prémii"
|
121 |
+
|
122 |
+
#: admin/partials/wpvr_documentation.php:165
|
123 |
+
msgid "Google street view embed"
|
124 |
+
msgstr "Vložení zobrazení ulic Google"
|
125 |
+
|
126 |
+
#: admin/partials/wpvr_documentation.php:160
|
127 |
+
msgid "Gyroscope support"
|
128 |
+
msgstr "Podpora gyroskopu"
|
129 |
+
|
130 |
+
#: elementor/elements/Wpvr-widget.php:133
|
131 |
+
msgid "Height:"
|
132 |
+
msgstr "Výška:"
|
133 |
+
|
134 |
+
#: admin/partials/wpvr_documentation.php:159
|
135 |
+
msgid "Hotspot based scene face support"
|
136 |
+
msgstr "Podpora obličeje scény založené na hotspotu"
|
137 |
+
|
138 |
+
#. Author URI of the plugin
|
139 |
+
msgid "http://rextheme.com/"
|
140 |
+
msgstr "http://rextheme.com/"
|
141 |
+
|
142 |
+
#. URI of the plugin
|
143 |
+
msgid "https://rextheme.com/wpvr/"
|
144 |
+
msgstr "https://rextheme.com/wpvr/"
|
145 |
+
|
146 |
+
#: elementor/elements/Wpvr-widget.php:113
|
147 |
+
msgid "ID:"
|
148 |
+
msgstr "ID:"
|
149 |
+
|
150 |
+
#: admin/partials/wpvr_documentation.php:29
|
151 |
+
msgid "Import"
|
152 |
+
msgstr "Import"
|
153 |
+
|
154 |
+
#: admin/partials/wpvr_documentation.php:177
|
155 |
+
msgid "Import tour file: "
|
156 |
+
msgstr "Import souboru prohlídky:"
|
157 |
+
|
158 |
+
#: admin/partials/wpvr_license.php:18
|
159 |
+
msgid "License Key"
|
160 |
+
msgstr "Licenční klíč"
|
161 |
+
|
162 |
+
#: admin/partials/wpvr_documentation.php:105
|
163 |
+
msgid "Make WPVR Popular"
|
164 |
+
msgstr "Make WPVR populární"
|
165 |
+
|
166 |
+
#: admin/partials/wpvr_documentation.php:155
|
167 |
+
msgid "Maximum and minimum zoom range"
|
168 |
+
msgstr "Maximální a minimální rozsah zoomu"
|
169 |
+
|
170 |
+
#: admin/partials/wpvr_documentation.php:167
|
171 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
172 |
+
msgstr "Personalizovaná podpora na fóru podpory i na našem e-mailu s podporou."
|
173 |
+
|
174 |
+
#: admin/partials/wpvr_documentation.php:77
|
175 |
+
msgid "Post a Ticket"
|
176 |
+
msgstr "Vložte lístek"
|
177 |
+
|
178 |
+
#: elementor/elements/Wpvr-widget.php:136
|
179 |
+
msgid "Put value in (px)"
|
180 |
+
msgstr "Vložte hodnotu v (px)"
|
181 |
+
|
182 |
+
#: elementor/elements/Wpvr-widget.php:143
|
183 |
+
msgid "Radius:"
|
184 |
+
msgstr "Poloměr:"
|
185 |
+
|
186 |
+
#: admin/partials/wpvr_documentation.php:115
|
187 |
+
msgid "Rate Us! "
|
188 |
+
msgstr "Ohodnoťte nás!"
|
189 |
+
|
190 |
+
#. Author of the plugin
|
191 |
+
msgid "Rextheme"
|
192 |
+
msgstr "Rextheme"
|
193 |
+
|
194 |
+
#: admin/partials/wpvr_documentation.php:157
|
195 |
+
msgid "Scene grab control and custom boundary for each scene"
|
196 |
+
msgstr "Ovládání scény a vlastní hranice pro každou scénu"
|
197 |
+
|
198 |
+
#: admin/partials/wpvr_documentation.php:158
|
199 |
+
msgid "Scene title and author tag support"
|
200 |
+
msgstr "Podpora názvu scény a značky autora"
|
201 |
+
|
202 |
+
#: admin/partials/wpvr_documentation.php:125
|
203 |
+
msgid "Share On"
|
204 |
+
msgstr "Sdílet na"
|
205 |
+
|
206 |
+
#: admin/partials/wpvr_documentation.php:130
|
207 |
+
msgid "Share on Facebook"
|
208 |
+
msgstr "Sdílet na Facebooku"
|
209 |
+
|
210 |
+
#: admin/partials/wpvr_documentation.php:132
|
211 |
+
msgid "Share on Google+"
|
212 |
+
msgstr "Sdílet na Google+"
|
213 |
+
|
214 |
+
#: admin/partials/wpvr_documentation.php:133
|
215 |
+
msgid "Share on LinkedIn"
|
216 |
+
msgstr "Sdílet na LinkedIn"
|
217 |
+
|
218 |
+
#: admin/partials/wpvr_documentation.php:131
|
219 |
+
msgid "Share on Twitter"
|
220 |
+
msgstr "Sdílet na Twitteru"
|
221 |
+
|
222 |
+
#: admin/partials/wpvr_documentation.php:86
|
223 |
+
msgid "Share Your Thoughts"
|
224 |
+
msgstr "Sdílej svoje myšlenky"
|
225 |
+
|
226 |
+
#: admin/partials/wpvr_documentation.php:96
|
227 |
+
msgid "Suggest"
|
228 |
+
msgstr "Navrhnout"
|
229 |
+
|
230 |
+
#: admin/partials/wpvr_documentation.php:67
|
231 |
+
msgid "Support"
|
232 |
+
msgstr "Podpora"
|
233 |
+
|
234 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
235 |
+
msgid ""
|
236 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
237 |
+
msgstr ""
|
238 |
+
"Chcete-li použít tuto prohlídku WPVR ve svých příspěvcích nebo stránkách, "
|
239 |
+
"použijte následující zkratku:"
|
240 |
+
|
241 |
+
#: admin/partials/wpvr_documentation.php:150
|
242 |
+
msgid "Unlimited hotspots"
|
243 |
+
msgstr "Neomezené hotspoty"
|
244 |
+
|
245 |
+
#: admin/partials/wpvr_documentation.php:149
|
246 |
+
msgid "Unlimited scenes"
|
247 |
+
msgstr "Neomezené scény"
|
248 |
+
|
249 |
+
#: admin/partials/wpvr_documentation.php:204
|
250 |
+
msgid "Upgrade to Pro"
|
251 |
+
msgstr "Upgradujte na Pro"
|
252 |
+
|
253 |
+
#: wpvr.php:810
|
254 |
+
msgid "Upgrade to pro"
|
255 |
+
msgstr "Upgradujte na prof"
|
256 |
+
|
257 |
+
#: admin/partials/wpvr_documentation.php:24
|
258 |
+
msgid "Video Tutorials"
|
259 |
+
msgstr "Video návody"
|
260 |
+
|
261 |
+
#: admin/partials/wpvr_documentation.php:57
|
262 |
+
msgid "View Documentation"
|
263 |
+
msgstr "Zobrazit dokumentaci"
|
264 |
+
|
265 |
+
#: admin/partials/wpvr_documentation.php:147
|
266 |
+
msgid "Why upgrade to Premium Version?"
|
267 |
+
msgstr "Proč upgradovat na prémiovou verzi?"
|
268 |
+
|
269 |
+
#: elementor/elements/Wpvr-widget.php:123
|
270 |
+
msgid "Width:"
|
271 |
+
msgstr "Šířka:"
|
272 |
+
|
273 |
+
#. Name of the plugin
|
274 |
+
msgid "WP VR"
|
275 |
+
msgstr "WP VR"
|
276 |
+
|
277 |
+
#. Description of the plugin
|
278 |
+
msgid ""
|
279 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
280 |
+
"panaroma & virtual builder tool for WordPress Website."
|
281 |
+
msgstr ""
|
282 |
+
"WP VR - 360 Panorama a tvůrce virtuální prohlídky pro WordPress je "
|
283 |
+
"přizpůsobený nástroj pro tvorbu panoramat a virtuálních webů pro web "
|
284 |
+
"WordPress."
|
285 |
+
|
286 |
+
#: elementor/elements/Wpvr-widget.php:43
|
287 |
+
msgid "Wpvr"
|
288 |
+
msgstr "WPVR"
|
289 |
+
|
290 |
+
#: elementor/elements/Wpvr-widget.php:105
|
291 |
+
msgid "Wpvr Setup"
|
292 |
+
msgstr "Nastavení WPVR"
|
293 |
+
|
294 |
+
#: admin/partials/wpvr_documentation.php:111
|
295 |
+
msgid ""
|
296 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
297 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
298 |
+
msgstr ""
|
299 |
+
"Vaše hodnocení a zpětná vazba jsou pro nás důležité. Pokud jste spokojeni s "
|
300 |
+
"WP VR - 360 Panorama a tvůrcem virtuální prohlídky pro WordPress, dejte nám "
|
301 |
+
"hodnocení."
|
302 |
+
|
303 |
+
#: admin/partials/wpvr_documentation.php:92
|
304 |
+
msgid ""
|
305 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
306 |
+
msgstr "Vaše návrhy jsou pro nás cenné. Může pomoci vylepšit WPVR."
|
languages/wpvr-da_DK.mo
ADDED
Binary file
|
languages/wpvr-da_DK.po
ADDED
@@ -0,0 +1,306 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-18 06:36+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Danish\n"
|
9 |
+
"Language: da-DK\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
16 |
+
|
17 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
18 |
+
msgid "Activate License"
|
19 |
+
msgstr "Aktivér licens"
|
20 |
+
|
21 |
+
#: admin/partials/wpvr_documentation.php:53
|
22 |
+
msgid ""
|
23 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
24 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
25 |
+
msgstr ""
|
26 |
+
"Før du starter, kan du tjekke vores dokumentation for at blive fortrolig med "
|
27 |
+
"WP VR - 360 Panorama og virtual tour creator for WordPress."
|
28 |
+
|
29 |
+
#: admin/partials/wpvr_documentation.php:73
|
30 |
+
msgid ""
|
31 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
32 |
+
"forum. We are to solve your issue."
|
33 |
+
msgstr ""
|
34 |
+
"Kan du ikke finde en løsning med vores dokumentation? Bare send en billet på "
|
35 |
+
"Support forum. Vi skal løse dit problem."
|
36 |
+
|
37 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
38 |
+
msgid "Check how to use: "
|
39 |
+
msgstr "Kontroller, hvordan du bruger:"
|
40 |
+
|
41 |
+
#: admin/partials/wpvr_documentation.php:166
|
42 |
+
msgid "Company logo"
|
43 |
+
msgstr "Virksomhedens logo"
|
44 |
+
|
45 |
+
#: admin/partials/wpvr_documentation.php:153
|
46 |
+
msgid "Compass Switch"
|
47 |
+
msgstr "Kompasafbryder"
|
48 |
+
|
49 |
+
#: admin/partials/wpvr_documentation.php:164
|
50 |
+
msgid "Custom control buttons"
|
51 |
+
msgstr "Brugerdefinerede kontrolknapper"
|
52 |
+
|
53 |
+
#: admin/partials/wpvr_documentation.php:163
|
54 |
+
msgid "Custom scene gallery"
|
55 |
+
msgstr "Brugerdefineret scenegalleri"
|
56 |
+
|
57 |
+
#: admin/partials/wpvr_documentation.php:156
|
58 |
+
msgid "Customize each scene's default face on load"
|
59 |
+
msgstr "Tilpas hver scenes standard ansigt ved belastning"
|
60 |
+
|
61 |
+
#: admin/partials/wpvr_documentation.php:151
|
62 |
+
msgid "Customized hotspot icon"
|
63 |
+
msgstr "Tilpasset hotspot-ikon"
|
64 |
+
|
65 |
+
#: admin/partials/wpvr_license.php:34
|
66 |
+
msgid "Deactivate License"
|
67 |
+
msgstr "Deaktiver licens"
|
68 |
+
|
69 |
+
#: admin/partials/wpvr_documentation.php:154
|
70 |
+
msgid "Default zoom level"
|
71 |
+
msgstr "Standard zoomniveau"
|
72 |
+
|
73 |
+
#: admin/partials/wpvr_documentation.php:178
|
74 |
+
msgid ""
|
75 |
+
"Do not close or refresh the page during import process. It may take few "
|
76 |
+
"minutes."
|
77 |
+
msgstr ""
|
78 |
+
"Luk ikke eller opdater siden under importprocessen. Det kan tage nogle "
|
79 |
+
"minutter."
|
80 |
+
|
81 |
+
#: admin/partials/wpvr_documentation.php:47
|
82 |
+
msgid "Documentation"
|
83 |
+
msgstr "Dokumentation"
|
84 |
+
|
85 |
+
#: admin/partials/wpvr_documentation.php:161
|
86 |
+
msgid "Duplicate tour support"
|
87 |
+
msgstr "Dupliceret turnustøtte"
|
88 |
+
|
89 |
+
#: admin/partials/wpvr_documentation.php:152
|
90 |
+
msgid "Dynamic Icon background color on hotspot"
|
91 |
+
msgstr "Dynamisk ikon baggrundsfarve på hotspot"
|
92 |
+
|
93 |
+
#: admin/partials/wpvr_license.php:22
|
94 |
+
msgid "Enter your license key, save changes and activate."
|
95 |
+
msgstr "Indtast din licensnøgle, gem ændringer og aktiver."
|
96 |
+
|
97 |
+
#: admin/partials/wpvr_documentation.php:162
|
98 |
+
msgid "File import & export system"
|
99 |
+
msgstr "File import & eksport system"
|
100 |
+
|
101 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
102 |
+
msgid "For classic editor:"
|
103 |
+
msgstr "For klassisk redaktør:"
|
104 |
+
|
105 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
106 |
+
msgid "For gutenberg:"
|
107 |
+
msgstr "For gutenberg:"
|
108 |
+
|
109 |
+
#: admin/partials/wpvr_documentation.php:23
|
110 |
+
msgid "General"
|
111 |
+
msgstr "Generel"
|
112 |
+
|
113 |
+
#: admin/partials/wpvr_documentation.php:169
|
114 |
+
msgid "Get Premium Version"
|
115 |
+
msgstr "Hent premium version"
|
116 |
+
|
117 |
+
#: admin/partials/wpvr_documentation.php:25
|
118 |
+
msgid "Go Premium"
|
119 |
+
msgstr "Go Premium"
|
120 |
+
|
121 |
+
#: admin/partials/wpvr_documentation.php:165
|
122 |
+
msgid "Google street view embed"
|
123 |
+
msgstr "Google gadevisning integreret"
|
124 |
+
|
125 |
+
#: admin/partials/wpvr_documentation.php:160
|
126 |
+
msgid "Gyroscope support"
|
127 |
+
msgstr "Gyroskopstøtte"
|
128 |
+
|
129 |
+
#: elementor/elements/Wpvr-widget.php:133
|
130 |
+
msgid "Height:"
|
131 |
+
msgstr "Højde:"
|
132 |
+
|
133 |
+
#: admin/partials/wpvr_documentation.php:159
|
134 |
+
msgid "Hotspot based scene face support"
|
135 |
+
msgstr "Hotspot-baseret sceneansigt"
|
136 |
+
|
137 |
+
#. Author URI of the plugin
|
138 |
+
msgid "http://rextheme.com/"
|
139 |
+
msgstr "http://rextheme.com/"
|
140 |
+
|
141 |
+
#. URI of the plugin
|
142 |
+
msgid "https://rextheme.com/wpvr/"
|
143 |
+
msgstr "https://rextheme.com/wpvr/"
|
144 |
+
|
145 |
+
#: elementor/elements/Wpvr-widget.php:113
|
146 |
+
msgid "ID:"
|
147 |
+
msgstr "ID:"
|
148 |
+
|
149 |
+
#: admin/partials/wpvr_documentation.php:29
|
150 |
+
msgid "Import"
|
151 |
+
msgstr "Importere"
|
152 |
+
|
153 |
+
#: admin/partials/wpvr_documentation.php:177
|
154 |
+
msgid "Import tour file: "
|
155 |
+
msgstr "Importer turnéfil:"
|
156 |
+
|
157 |
+
#: admin/partials/wpvr_license.php:18
|
158 |
+
msgid "License Key"
|
159 |
+
msgstr "Licensnøgle"
|
160 |
+
|
161 |
+
#: admin/partials/wpvr_documentation.php:105
|
162 |
+
msgid "Make WPVR Popular"
|
163 |
+
msgstr "Gør WPVR populær"
|
164 |
+
|
165 |
+
#: admin/partials/wpvr_documentation.php:155
|
166 |
+
msgid "Maximum and minimum zoom range"
|
167 |
+
msgstr "Maksimum og minimum zoomområde"
|
168 |
+
|
169 |
+
#: admin/partials/wpvr_documentation.php:167
|
170 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
171 |
+
msgstr "Personaliseret support på både supportforum og vores support-e-mail."
|
172 |
+
|
173 |
+
#: admin/partials/wpvr_documentation.php:77
|
174 |
+
msgid "Post a Ticket"
|
175 |
+
msgstr "Send en billet"
|
176 |
+
|
177 |
+
#: elementor/elements/Wpvr-widget.php:136
|
178 |
+
msgid "Put value in (px)"
|
179 |
+
msgstr "Sæt værdi i (px)"
|
180 |
+
|
181 |
+
#: elementor/elements/Wpvr-widget.php:143
|
182 |
+
msgid "Radius:"
|
183 |
+
msgstr "Radius:"
|
184 |
+
|
185 |
+
#: admin/partials/wpvr_documentation.php:115
|
186 |
+
msgid "Rate Us! "
|
187 |
+
msgstr "Bedøm os!"
|
188 |
+
|
189 |
+
#. Author of the plugin
|
190 |
+
msgid "Rextheme"
|
191 |
+
msgstr "RexTheme"
|
192 |
+
|
193 |
+
#: admin/partials/wpvr_documentation.php:157
|
194 |
+
msgid "Scene grab control and custom boundary for each scene"
|
195 |
+
msgstr "Scen grab kontrol og brugerdefineret grænse for hver scene"
|
196 |
+
|
197 |
+
#: admin/partials/wpvr_documentation.php:158
|
198 |
+
msgid "Scene title and author tag support"
|
199 |
+
msgstr "Scenetitel og forfattertagerstøtte"
|
200 |
+
|
201 |
+
#: admin/partials/wpvr_documentation.php:125
|
202 |
+
msgid "Share On"
|
203 |
+
msgstr "Del på"
|
204 |
+
|
205 |
+
#: admin/partials/wpvr_documentation.php:130
|
206 |
+
msgid "Share on Facebook"
|
207 |
+
msgstr "Del på facebook"
|
208 |
+
|
209 |
+
#: admin/partials/wpvr_documentation.php:132
|
210 |
+
msgid "Share on Google+"
|
211 |
+
msgstr "Del på Google+"
|
212 |
+
|
213 |
+
#: admin/partials/wpvr_documentation.php:133
|
214 |
+
msgid "Share on LinkedIn"
|
215 |
+
msgstr "Del på LinkedIn"
|
216 |
+
|
217 |
+
#: admin/partials/wpvr_documentation.php:131
|
218 |
+
msgid "Share on Twitter"
|
219 |
+
msgstr "Del på Twitter"
|
220 |
+
|
221 |
+
#: admin/partials/wpvr_documentation.php:86
|
222 |
+
msgid "Share Your Thoughts"
|
223 |
+
msgstr "Del dine tanker"
|
224 |
+
|
225 |
+
#: admin/partials/wpvr_documentation.php:96
|
226 |
+
msgid "Suggest"
|
227 |
+
msgstr "Antyder"
|
228 |
+
|
229 |
+
#: admin/partials/wpvr_documentation.php:67
|
230 |
+
msgid "Support"
|
231 |
+
msgstr "Support"
|
232 |
+
|
233 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
234 |
+
msgid ""
|
235 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
236 |
+
msgstr ""
|
237 |
+
"For at bruge denne WPVRr-tur i dine indlæg eller sider skal du bruge "
|
238 |
+
"følgende kortkode:"
|
239 |
+
|
240 |
+
#: admin/partials/wpvr_documentation.php:150
|
241 |
+
msgid "Unlimited hotspots"
|
242 |
+
msgstr "Ubegrænset hotspots"
|
243 |
+
|
244 |
+
#: admin/partials/wpvr_documentation.php:149
|
245 |
+
msgid "Unlimited scenes"
|
246 |
+
msgstr "Ubegrænsede scener"
|
247 |
+
|
248 |
+
#: admin/partials/wpvr_documentation.php:204
|
249 |
+
msgid "Upgrade to Pro"
|
250 |
+
msgstr "Opgrader til Pro"
|
251 |
+
|
252 |
+
#: wpvr.php:810
|
253 |
+
msgid "Upgrade to pro"
|
254 |
+
msgstr "Opgrader til Pro"
|
255 |
+
|
256 |
+
#: admin/partials/wpvr_documentation.php:24
|
257 |
+
msgid "Video Tutorials"
|
258 |
+
msgstr "Video-tutorials"
|
259 |
+
|
260 |
+
#: admin/partials/wpvr_documentation.php:57
|
261 |
+
msgid "View Documentation"
|
262 |
+
msgstr "Se dokumentation"
|
263 |
+
|
264 |
+
#: admin/partials/wpvr_documentation.php:147
|
265 |
+
msgid "Why upgrade to Premium Version?"
|
266 |
+
msgstr "Hvorfor opgradere til Premium version?"
|
267 |
+
|
268 |
+
#: elementor/elements/Wpvr-widget.php:123
|
269 |
+
msgid "Width:"
|
270 |
+
msgstr "Bredde:"
|
271 |
+
|
272 |
+
#. Name of the plugin
|
273 |
+
msgid "WP VR"
|
274 |
+
msgstr "WP VR"
|
275 |
+
|
276 |
+
#. Description of the plugin
|
277 |
+
msgid ""
|
278 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
279 |
+
"panaroma & virtual builder tool for WordPress Website."
|
280 |
+
msgstr ""
|
281 |
+
"WP VR - 360 Panorama og virtual tour creator til WordPress er et tilpasset "
|
282 |
+
"panorama & virtual builder værktøj til WordPress Website."
|
283 |
+
|
284 |
+
#: elementor/elements/Wpvr-widget.php:43
|
285 |
+
msgid "Wpvr"
|
286 |
+
msgstr "WPVR"
|
287 |
+
|
288 |
+
#: elementor/elements/Wpvr-widget.php:105
|
289 |
+
msgid "Wpvr Setup"
|
290 |
+
msgstr "WPVR-opsætning"
|
291 |
+
|
292 |
+
#: admin/partials/wpvr_documentation.php:111
|
293 |
+
msgid ""
|
294 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
295 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
296 |
+
msgstr ""
|
297 |
+
"Din vurdering og feedback betyder noget for os. Hvis du er tilfreds med WP "
|
298 |
+
"VR - 360 Panorama og virtual tour creator for WordPress, giver os en "
|
299 |
+
"vurdering."
|
300 |
+
|
301 |
+
#: admin/partials/wpvr_documentation.php:92
|
302 |
+
msgid ""
|
303 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
304 |
+
msgstr ""
|
305 |
+
"Dine forslag er værdifulde for os. Det kan hjælpe med at gøre wpvr endnu "
|
306 |
+
"bedre."
|
languages/wpvr-fi.mo
ADDED
Binary file
|
languages/wpvr-fi.po
ADDED
@@ -0,0 +1,307 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-18 06:51+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Finnish\n"
|
9 |
+
"Language: fi\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
16 |
+
|
17 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
18 |
+
msgid "Activate License"
|
19 |
+
msgstr "Aktivoi lisenssi"
|
20 |
+
|
21 |
+
#: admin/partials/wpvr_documentation.php:53
|
22 |
+
msgid ""
|
23 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
24 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
25 |
+
msgstr ""
|
26 |
+
"Ennen aloittamista voit tutustua dokumentaatioomme perehtyäksesi WP VR-360 "
|
27 |
+
"Panoraman ja WordPressin virtuaalisen kiertueen luojaan."
|
28 |
+
|
29 |
+
#: admin/partials/wpvr_documentation.php:73
|
30 |
+
msgid ""
|
31 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
32 |
+
"forum. We are to solve your issue."
|
33 |
+
msgstr ""
|
34 |
+
"Etkö löydä ratkaisua dokumentaatioissamme? Lähetä vain lippu tukifoorumiin. "
|
35 |
+
"Meidän on ratkaistava ongelmasi."
|
36 |
+
|
37 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
38 |
+
msgid "Check how to use: "
|
39 |
+
msgstr "Katso kuinka käyttää:"
|
40 |
+
|
41 |
+
#: admin/partials/wpvr_documentation.php:166
|
42 |
+
msgid "Company logo"
|
43 |
+
msgstr "Yrityksen logo"
|
44 |
+
|
45 |
+
#: admin/partials/wpvr_documentation.php:153
|
46 |
+
msgid "Compass Switch"
|
47 |
+
msgstr "Kompassikytkin"
|
48 |
+
|
49 |
+
#: admin/partials/wpvr_documentation.php:164
|
50 |
+
msgid "Custom control buttons"
|
51 |
+
msgstr "Mukautetut ohjauspainikkeet"
|
52 |
+
|
53 |
+
#: admin/partials/wpvr_documentation.php:163
|
54 |
+
msgid "Custom scene gallery"
|
55 |
+
msgstr "Mukautettu kohtausgalleria"
|
56 |
+
|
57 |
+
#: admin/partials/wpvr_documentation.php:156
|
58 |
+
msgid "Customize each scene's default face on load"
|
59 |
+
msgstr "Mukauta kunkin kohtauksen oletusasteet kuormitettaessa"
|
60 |
+
|
61 |
+
#: admin/partials/wpvr_documentation.php:151
|
62 |
+
msgid "Customized hotspot icon"
|
63 |
+
msgstr "Muokattu hotspot-kuvake"
|
64 |
+
|
65 |
+
#: admin/partials/wpvr_license.php:34
|
66 |
+
msgid "Deactivate License"
|
67 |
+
msgstr "Poista käyttöoikeus käytöstä"
|
68 |
+
|
69 |
+
#: admin/partials/wpvr_documentation.php:154
|
70 |
+
msgid "Default zoom level"
|
71 |
+
msgstr "Oletusarvoinen zoomaustaso"
|
72 |
+
|
73 |
+
#: admin/partials/wpvr_documentation.php:178
|
74 |
+
msgid ""
|
75 |
+
"Do not close or refresh the page during import process. It may take few "
|
76 |
+
"minutes."
|
77 |
+
msgstr ""
|
78 |
+
"Älä sulje tai päivitä sivua tuonnin aikana. Se voi viedä muutaman minuutin."
|
79 |
+
|
80 |
+
#: admin/partials/wpvr_documentation.php:47
|
81 |
+
msgid "Documentation"
|
82 |
+
msgstr "Dokumentointi"
|
83 |
+
|
84 |
+
#: admin/partials/wpvr_documentation.php:161
|
85 |
+
msgid "Duplicate tour support"
|
86 |
+
msgstr "Päällekkäinen kiertuetuki"
|
87 |
+
|
88 |
+
#: admin/partials/wpvr_documentation.php:152
|
89 |
+
msgid "Dynamic Icon background color on hotspot"
|
90 |
+
msgstr "Dynaamisen kuvakkeen taustaväri hotspotissa"
|
91 |
+
|
92 |
+
#: admin/partials/wpvr_license.php:22
|
93 |
+
msgid "Enter your license key, save changes and activate."
|
94 |
+
msgstr "Kirjoita lisenssiavaimesi, tallenna muutokset ja aktivoi."
|
95 |
+
|
96 |
+
#: admin/partials/wpvr_documentation.php:162
|
97 |
+
msgid "File import & export system"
|
98 |
+
msgstr "Tiedostojen tuonti- ja vientijärjestelmä"
|
99 |
+
|
100 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
101 |
+
msgid "For classic editor:"
|
102 |
+
msgstr "Klassinen toimittaja:"
|
103 |
+
|
104 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
105 |
+
msgid "For gutenberg:"
|
106 |
+
msgstr "Gutenbergille:"
|
107 |
+
|
108 |
+
#: admin/partials/wpvr_documentation.php:23
|
109 |
+
msgid "General"
|
110 |
+
msgstr "yleinen"
|
111 |
+
|
112 |
+
#: admin/partials/wpvr_documentation.php:169
|
113 |
+
msgid "Get Premium Version"
|
114 |
+
msgstr "Hanki premium-versio"
|
115 |
+
|
116 |
+
#: admin/partials/wpvr_documentation.php:25
|
117 |
+
msgid "Go Premium"
|
118 |
+
msgstr "Go Premium"
|
119 |
+
|
120 |
+
#: admin/partials/wpvr_documentation.php:165
|
121 |
+
msgid "Google street view embed"
|
122 |
+
msgstr "Google-katunäkymän upotus"
|
123 |
+
|
124 |
+
#: admin/partials/wpvr_documentation.php:160
|
125 |
+
msgid "Gyroscope support"
|
126 |
+
msgstr "Gyroskoopin tuki"
|
127 |
+
|
128 |
+
#: elementor/elements/Wpvr-widget.php:133
|
129 |
+
msgid "Height:"
|
130 |
+
msgstr "Korkeus:"
|
131 |
+
|
132 |
+
#: admin/partials/wpvr_documentation.php:159
|
133 |
+
msgid "Hotspot based scene face support"
|
134 |
+
msgstr "Hotspot-pohjainen kohtaus kasvot"
|
135 |
+
|
136 |
+
#. Author URI of the plugin
|
137 |
+
msgid "http://rextheme.com/"
|
138 |
+
msgstr "http://rextheme.com/"
|
139 |
+
|
140 |
+
#. URI of the plugin
|
141 |
+
msgid "https://rextheme.com/wpvr/"
|
142 |
+
msgstr "https://rextheme.com/wpvr/"
|
143 |
+
|
144 |
+
#: elementor/elements/Wpvr-widget.php:113
|
145 |
+
msgid "ID:"
|
146 |
+
msgstr "ID:"
|
147 |
+
|
148 |
+
#: admin/partials/wpvr_documentation.php:29
|
149 |
+
msgid "Import"
|
150 |
+
msgstr "Tuonti"
|
151 |
+
|
152 |
+
#: admin/partials/wpvr_documentation.php:177
|
153 |
+
msgid "Import tour file: "
|
154 |
+
msgstr "Tuo kiertotiedosto:"
|
155 |
+
|
156 |
+
#: admin/partials/wpvr_license.php:18
|
157 |
+
msgid "License Key"
|
158 |
+
msgstr "Lisenssiavain"
|
159 |
+
|
160 |
+
#: admin/partials/wpvr_documentation.php:105
|
161 |
+
msgid "Make WPVR Popular"
|
162 |
+
msgstr "Tee WPVR: stä suosittu"
|
163 |
+
|
164 |
+
#: admin/partials/wpvr_documentation.php:155
|
165 |
+
msgid "Maximum and minimum zoom range"
|
166 |
+
msgstr "Suurin ja pienin zoomausalue"
|
167 |
+
|
168 |
+
#: admin/partials/wpvr_documentation.php:167
|
169 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
170 |
+
msgstr "Henkilökohtainen tuki sekä tukifoorumeilla että tukisähköpostilla."
|
171 |
+
|
172 |
+
#: admin/partials/wpvr_documentation.php:77
|
173 |
+
msgid "Post a Ticket"
|
174 |
+
msgstr "Lähetä lippu"
|
175 |
+
|
176 |
+
#: elementor/elements/Wpvr-widget.php:136
|
177 |
+
msgid "Put value in (px)"
|
178 |
+
msgstr "Lisää arvo (px)"
|
179 |
+
|
180 |
+
#: elementor/elements/Wpvr-widget.php:143
|
181 |
+
msgid "Radius:"
|
182 |
+
msgstr "Lisää arvo (px)"
|
183 |
+
|
184 |
+
#: admin/partials/wpvr_documentation.php:115
|
185 |
+
msgid "Rate Us! "
|
186 |
+
msgstr "Anna meille arvosana!"
|
187 |
+
|
188 |
+
#. Author of the plugin
|
189 |
+
msgid "Rextheme"
|
190 |
+
msgstr "Rextheme"
|
191 |
+
|
192 |
+
#: admin/partials/wpvr_documentation.php:157
|
193 |
+
msgid "Scene grab control and custom boundary for each scene"
|
194 |
+
msgstr ""
|
195 |
+
"Kohtauksen tarttumisen hallinta ja mukautetut rajat jokaiselle kohtaukselle"
|
196 |
+
|
197 |
+
#: admin/partials/wpvr_documentation.php:158
|
198 |
+
msgid "Scene title and author tag support"
|
199 |
+
msgstr "Kohtauksen otsikko ja kirjailijatagin tuki"
|
200 |
+
|
201 |
+
#: admin/partials/wpvr_documentation.php:125
|
202 |
+
msgid "Share On"
|
203 |
+
msgstr "Jaa"
|
204 |
+
|
205 |
+
#: admin/partials/wpvr_documentation.php:130
|
206 |
+
msgid "Share on Facebook"
|
207 |
+
msgstr "Jaa Facebookissa"
|
208 |
+
|
209 |
+
#: admin/partials/wpvr_documentation.php:132
|
210 |
+
msgid "Share on Google+"
|
211 |
+
msgstr "Jaa Google+ -palvelussa"
|
212 |
+
|
213 |
+
#: admin/partials/wpvr_documentation.php:133
|
214 |
+
msgid "Share on LinkedIn"
|
215 |
+
msgstr "Jaa LinkedInissä"
|
216 |
+
|
217 |
+
#: admin/partials/wpvr_documentation.php:131
|
218 |
+
msgid "Share on Twitter"
|
219 |
+
msgstr "Jaa Twitterissä"
|
220 |
+
|
221 |
+
#: admin/partials/wpvr_documentation.php:86
|
222 |
+
msgid "Share Your Thoughts"
|
223 |
+
msgstr "Jaa ajatuksesi"
|
224 |
+
|
225 |
+
#: admin/partials/wpvr_documentation.php:96
|
226 |
+
msgid "Suggest"
|
227 |
+
msgstr "Ehdottaa"
|
228 |
+
|
229 |
+
#: admin/partials/wpvr_documentation.php:67
|
230 |
+
msgid "Support"
|
231 |
+
msgstr "Tuki"
|
232 |
+
|
233 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
234 |
+
msgid ""
|
235 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
236 |
+
msgstr ""
|
237 |
+
"Käytä tätä WPVR-kiertuetta viesteissäsi tai sivuillasi käyttämällä seuraavaa "
|
238 |
+
"lyhytkoodia:"
|
239 |
+
|
240 |
+
#: admin/partials/wpvr_documentation.php:150
|
241 |
+
msgid "Unlimited hotspots"
|
242 |
+
msgstr "Rajoittamaton yhteyspiste"
|
243 |
+
|
244 |
+
#: admin/partials/wpvr_documentation.php:149
|
245 |
+
msgid "Unlimited scenes"
|
246 |
+
msgstr "Rajoittamaton kohtaus"
|
247 |
+
|
248 |
+
#: admin/partials/wpvr_documentation.php:204
|
249 |
+
msgid "Upgrade to Pro"
|
250 |
+
msgstr "Päivittää Pro: hon"
|
251 |
+
|
252 |
+
#: wpvr.php:810
|
253 |
+
msgid "Upgrade to pro"
|
254 |
+
msgstr "Päivittää Pro: hon"
|
255 |
+
|
256 |
+
#: admin/partials/wpvr_documentation.php:24
|
257 |
+
msgid "Video Tutorials"
|
258 |
+
msgstr "Video-oppaat"
|
259 |
+
|
260 |
+
#: admin/partials/wpvr_documentation.php:57
|
261 |
+
msgid "View Documentation"
|
262 |
+
msgstr "Näytä dokumentaatio"
|
263 |
+
|
264 |
+
#: admin/partials/wpvr_documentation.php:147
|
265 |
+
msgid "Why upgrade to Premium Version?"
|
266 |
+
msgstr "Miksi päivittää premium-versioon?"
|
267 |
+
|
268 |
+
#: elementor/elements/Wpvr-widget.php:123
|
269 |
+
msgid "Width:"
|
270 |
+
msgstr "Leveys:"
|
271 |
+
|
272 |
+
#. Name of the plugin
|
273 |
+
msgid "WP VR"
|
274 |
+
msgstr "WP VR"
|
275 |
+
|
276 |
+
#. Description of the plugin
|
277 |
+
msgid ""
|
278 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
279 |
+
"panaroma & virtual builder tool for WordPress Website."
|
280 |
+
msgstr ""
|
281 |
+
"WP VR - 360 Panoraama ja virtuaalikiertueiden luoja WordPressille on "
|
282 |
+
"räätälöity panoraama- ja virtuaalinen rakennustyökalu WordPress-"
|
283 |
+
"verkkosivustoon."
|
284 |
+
|
285 |
+
#: elementor/elements/Wpvr-widget.php:43
|
286 |
+
msgid "Wpvr"
|
287 |
+
msgstr "WPVR"
|
288 |
+
|
289 |
+
#: elementor/elements/Wpvr-widget.php:105
|
290 |
+
msgid "Wpvr Setup"
|
291 |
+
msgstr "WPVR-asennus"
|
292 |
+
|
293 |
+
#: admin/partials/wpvr_documentation.php:111
|
294 |
+
msgid ""
|
295 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
296 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
297 |
+
msgstr ""
|
298 |
+
"Arvostelu ja palaute ovat meille tärkeitä. Jos olet tyytyväinen WP VR - 360 "
|
299 |
+
"Panorama -sovellukseen ja WordPressin virtuaalikierroksen luoja, antaa "
|
300 |
+
"meille arvosanan."
|
301 |
+
|
302 |
+
#: admin/partials/wpvr_documentation.php:92
|
303 |
+
msgid ""
|
304 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
305 |
+
msgstr ""
|
306 |
+
"Ehdotuksesi ovat arvokkaita meille. Se voi auttaa tekemään WPVR: stä vielä "
|
307 |
+
"paremman."
|
languages/wpvr-fr_FR.mo
ADDED
Binary file
|
languages/wpvr-fr_FR.po
ADDED
@@ -0,0 +1,311 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-16 09:24+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: French (France)\n"
|
9 |
+
"Language: fr-FR\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
16 |
+
|
17 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
18 |
+
msgid "Activate License"
|
19 |
+
msgstr "Activer la licence"
|
20 |
+
|
21 |
+
#: admin/partials/wpvr_documentation.php:53
|
22 |
+
msgid ""
|
23 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
24 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
25 |
+
msgstr ""
|
26 |
+
"Avant de commencer, vous pouvez consulter notre documentation pour vous "
|
27 |
+
"familiariser avec WP VR - 360 Panorama et le créateur de visites virtuelles "
|
28 |
+
"pour WordPress."
|
29 |
+
|
30 |
+
#: admin/partials/wpvr_documentation.php:73
|
31 |
+
msgid ""
|
32 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
33 |
+
"forum. We are to solve your issue."
|
34 |
+
msgstr ""
|
35 |
+
"Vous ne trouvez pas de solution avec notre documentation? Il suffit de "
|
36 |
+
"poster un ticket sur le forum d'assistance. Nous devons résoudre votre "
|
37 |
+
"problème."
|
38 |
+
|
39 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
40 |
+
msgid "Check how to use: "
|
41 |
+
msgstr "Vérifiez comment utiliser:"
|
42 |
+
|
43 |
+
#: admin/partials/wpvr_documentation.php:166
|
44 |
+
msgid "Company logo"
|
45 |
+
msgstr "Logo d'entreprise"
|
46 |
+
|
47 |
+
#: admin/partials/wpvr_documentation.php:153
|
48 |
+
msgid "Compass Switch"
|
49 |
+
msgstr "Commutateur de boussole"
|
50 |
+
|
51 |
+
#: admin/partials/wpvr_documentation.php:164
|
52 |
+
msgid "Custom control buttons"
|
53 |
+
msgstr "Boutons de contrôle personnalisés"
|
54 |
+
|
55 |
+
#: admin/partials/wpvr_documentation.php:163
|
56 |
+
msgid "Custom scene gallery"
|
57 |
+
msgstr "Galerie de scènes personnalisées"
|
58 |
+
|
59 |
+
#: admin/partials/wpvr_documentation.php:156
|
60 |
+
msgid "Customize each scene's default face on load"
|
61 |
+
msgstr "Personnaliser le visage par défaut de chaque scène lors du chargement"
|
62 |
+
|
63 |
+
#: admin/partials/wpvr_documentation.php:151
|
64 |
+
msgid "Customized hotspot icon"
|
65 |
+
msgstr "Icône de point d'accès personnalisé"
|
66 |
+
|
67 |
+
#: admin/partials/wpvr_license.php:34
|
68 |
+
msgid "Deactivate License"
|
69 |
+
msgstr "Désactiver la licence"
|
70 |
+
|
71 |
+
#: admin/partials/wpvr_documentation.php:154
|
72 |
+
msgid "Default zoom level"
|
73 |
+
msgstr "Niveau de zoom par défaut"
|
74 |
+
|
75 |
+
#: admin/partials/wpvr_documentation.php:178
|
76 |
+
msgid ""
|
77 |
+
"Do not close or refresh the page during import process. It may take few "
|
78 |
+
"minutes."
|
79 |
+
msgstr ""
|
80 |
+
"Ne fermez pas ou ne rafraîchissez pas la page pendant le processus "
|
81 |
+
"d'importation. Cela peut prendre quelques minutes."
|
82 |
+
|
83 |
+
#: admin/partials/wpvr_documentation.php:47
|
84 |
+
msgid "Documentation"
|
85 |
+
msgstr "Documentation"
|
86 |
+
|
87 |
+
#: admin/partials/wpvr_documentation.php:161
|
88 |
+
msgid "Duplicate tour support"
|
89 |
+
msgstr "Prise en charge des tournées en double"
|
90 |
+
|
91 |
+
#: admin/partials/wpvr_documentation.php:152
|
92 |
+
msgid "Dynamic Icon background color on hotspot"
|
93 |
+
msgstr "Couleur d'arrière-plan de l'icône dynamique sur le hotspot"
|
94 |
+
|
95 |
+
#: admin/partials/wpvr_license.php:22
|
96 |
+
msgid "Enter your license key, save changes and activate."
|
97 |
+
msgstr ""
|
98 |
+
"Saisissez votre clé de licence, enregistrez les modifications et activez."
|
99 |
+
|
100 |
+
#: admin/partials/wpvr_documentation.php:162
|
101 |
+
msgid "File import & export system"
|
102 |
+
msgstr "Système d'importation et d'exportation de fichiers"
|
103 |
+
|
104 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
105 |
+
msgid "For classic editor:"
|
106 |
+
msgstr "Pour l'éditeur classique:"
|
107 |
+
|
108 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
109 |
+
msgid "For gutenberg:"
|
110 |
+
msgstr "Pour gutenberg:"
|
111 |
+
|
112 |
+
#: admin/partials/wpvr_documentation.php:23
|
113 |
+
msgid "General"
|
114 |
+
msgstr "Général"
|
115 |
+
|
116 |
+
#: admin/partials/wpvr_documentation.php:169
|
117 |
+
msgid "Get Premium Version"
|
118 |
+
msgstr "Obtenez la version Premium"
|
119 |
+
|
120 |
+
#: admin/partials/wpvr_documentation.php:25
|
121 |
+
msgid "Go Premium"
|
122 |
+
msgstr "Passer en Premium"
|
123 |
+
|
124 |
+
#: admin/partials/wpvr_documentation.php:165
|
125 |
+
msgid "Google street view embed"
|
126 |
+
msgstr "Google Street View intégré"
|
127 |
+
|
128 |
+
#: admin/partials/wpvr_documentation.php:160
|
129 |
+
msgid "Gyroscope support"
|
130 |
+
msgstr "Prise en charge du gyroscope"
|
131 |
+
|
132 |
+
#: elementor/elements/Wpvr-widget.php:133
|
133 |
+
msgid "Height:"
|
134 |
+
msgstr "La taille:"
|
135 |
+
|
136 |
+
#: admin/partials/wpvr_documentation.php:159
|
137 |
+
msgid "Hotspot based scene face support"
|
138 |
+
msgstr "Prise en charge des visages de scène basés sur Hotspot"
|
139 |
+
|
140 |
+
#. Author URI of the plugin
|
141 |
+
msgid "http://rextheme.com/"
|
142 |
+
msgstr "http://rextheme.com/"
|
143 |
+
|
144 |
+
#. URI of the plugin
|
145 |
+
msgid "https://rextheme.com/wpvr/"
|
146 |
+
msgstr "https://rextheme.com/wpvr/"
|
147 |
+
|
148 |
+
#: elementor/elements/Wpvr-widget.php:113
|
149 |
+
msgid "ID:"
|
150 |
+
msgstr "Identifiant:"
|
151 |
+
|
152 |
+
#: admin/partials/wpvr_documentation.php:29
|
153 |
+
msgid "Import"
|
154 |
+
msgstr "Importation"
|
155 |
+
|
156 |
+
#: admin/partials/wpvr_documentation.php:177
|
157 |
+
msgid "Import tour file: "
|
158 |
+
msgstr "Importer le fichier de visite:"
|
159 |
+
|
160 |
+
#: admin/partials/wpvr_license.php:18
|
161 |
+
msgid "License Key"
|
162 |
+
msgstr "Clé de licence"
|
163 |
+
|
164 |
+
#: admin/partials/wpvr_documentation.php:105
|
165 |
+
msgid "Make WPVR Popular"
|
166 |
+
msgstr "Rendre WPVR populaire"
|
167 |
+
|
168 |
+
#: admin/partials/wpvr_documentation.php:155
|
169 |
+
msgid "Maximum and minimum zoom range"
|
170 |
+
msgstr "Plage de zoom maximale et minimale"
|
171 |
+
|
172 |
+
#: admin/partials/wpvr_documentation.php:167
|
173 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
174 |
+
msgstr ""
|
175 |
+
"Support personnalisé sur le forum de support et notre e-mail de support."
|
176 |
+
|
177 |
+
#: admin/partials/wpvr_documentation.php:77
|
178 |
+
msgid "Post a Ticket"
|
179 |
+
msgstr "Publier un ticket"
|
180 |
+
|
181 |
+
#: elementor/elements/Wpvr-widget.php:136
|
182 |
+
msgid "Put value in (px)"
|
183 |
+
msgstr "Mettre de la valeur dans (PX)"
|
184 |
+
|
185 |
+
#: elementor/elements/Wpvr-widget.php:143
|
186 |
+
msgid "Radius:"
|
187 |
+
msgstr "Rayon:"
|
188 |
+
|
189 |
+
#: admin/partials/wpvr_documentation.php:115
|
190 |
+
msgid "Rate Us! "
|
191 |
+
msgstr "Évaluez nous!"
|
192 |
+
|
193 |
+
#. Author of the plugin
|
194 |
+
msgid "Rextheme"
|
195 |
+
msgstr "Rextheme"
|
196 |
+
|
197 |
+
#: admin/partials/wpvr_documentation.php:157
|
198 |
+
msgid "Scene grab control and custom boundary for each scene"
|
199 |
+
msgstr "Contrôle de saisie de scène et limite personnalisée pour chaque scène"
|
200 |
+
|
201 |
+
#: admin/partials/wpvr_documentation.php:158
|
202 |
+
msgid "Scene title and author tag support"
|
203 |
+
msgstr "Prise en charge du titre de la scène et de la balise d'auteur"
|
204 |
+
|
205 |
+
#: admin/partials/wpvr_documentation.php:125
|
206 |
+
msgid "Share On"
|
207 |
+
msgstr "Partager sur"
|
208 |
+
|
209 |
+
#: admin/partials/wpvr_documentation.php:130
|
210 |
+
msgid "Share on Facebook"
|
211 |
+
msgstr "Partager sur Facebook"
|
212 |
+
|
213 |
+
#: admin/partials/wpvr_documentation.php:132
|
214 |
+
msgid "Share on Google+"
|
215 |
+
msgstr "Partager sur Google+"
|
216 |
+
|
217 |
+
#: admin/partials/wpvr_documentation.php:133
|
218 |
+
msgid "Share on LinkedIn"
|
219 |
+
msgstr "Partager sur LinkedIn"
|
220 |
+
|
221 |
+
#: admin/partials/wpvr_documentation.php:131
|
222 |
+
msgid "Share on Twitter"
|
223 |
+
msgstr "Partager sur Twitter"
|
224 |
+
|
225 |
+
#: admin/partials/wpvr_documentation.php:86
|
226 |
+
msgid "Share Your Thoughts"
|
227 |
+
msgstr "Partage tes pensées"
|
228 |
+
|
229 |
+
#: admin/partials/wpvr_documentation.php:96
|
230 |
+
msgid "Suggest"
|
231 |
+
msgstr "Suggérer"
|
232 |
+
|
233 |
+
#: admin/partials/wpvr_documentation.php:67
|
234 |
+
msgid "Support"
|
235 |
+
msgstr "Soutien"
|
236 |
+
|
237 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
238 |
+
msgid ""
|
239 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
240 |
+
msgstr ""
|
241 |
+
"Pour utiliser cette visite Wpvr dans vos publications ou pages, utilisez le "
|
242 |
+
"shortcode suivant:"
|
243 |
+
|
244 |
+
#: admin/partials/wpvr_documentation.php:150
|
245 |
+
msgid "Unlimited hotspots"
|
246 |
+
msgstr "Hotspots illimités"
|
247 |
+
|
248 |
+
#: admin/partials/wpvr_documentation.php:149
|
249 |
+
msgid "Unlimited scenes"
|
250 |
+
msgstr "Scènes illimitées"
|
251 |
+
|
252 |
+
#: admin/partials/wpvr_documentation.php:204
|
253 |
+
msgid "Upgrade to Pro"
|
254 |
+
msgstr "Passer à Pro"
|
255 |
+
|
256 |
+
#: wpvr.php:810
|
257 |
+
msgid "Upgrade to pro"
|
258 |
+
msgstr "Passer à Pro"
|
259 |
+
|
260 |
+
#: admin/partials/wpvr_documentation.php:24
|
261 |
+
msgid "Video Tutorials"
|
262 |
+
msgstr "Tutoriels vidéos"
|
263 |
+
|
264 |
+
#: admin/partials/wpvr_documentation.php:57
|
265 |
+
msgid "View Documentation"
|
266 |
+
msgstr "Voir la documentation"
|
267 |
+
|
268 |
+
#: admin/partials/wpvr_documentation.php:147
|
269 |
+
msgid "Why upgrade to Premium Version?"
|
270 |
+
msgstr "Pourquoi passer à la version Premium?"
|
271 |
+
|
272 |
+
#: elementor/elements/Wpvr-widget.php:123
|
273 |
+
msgid "Width:"
|
274 |
+
msgstr "Largeur:"
|
275 |
+
|
276 |
+
#. Name of the plugin
|
277 |
+
msgid "WP VR"
|
278 |
+
msgstr "WP VR"
|
279 |
+
|
280 |
+
#. Description of the plugin
|
281 |
+
msgid ""
|
282 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
283 |
+
"panaroma & virtual builder tool for WordPress Website."
|
284 |
+
msgstr ""
|
285 |
+
"WP VR - 360 Panorama et créateur de visites virtuelles pour WordPress est un "
|
286 |
+
"outil de création de panorama et de création virtuelle personnalisé pour le "
|
287 |
+
"site Web WordPress."
|
288 |
+
|
289 |
+
#: elementor/elements/Wpvr-widget.php:43
|
290 |
+
msgid "Wpvr"
|
291 |
+
msgstr "WPVR"
|
292 |
+
|
293 |
+
#: elementor/elements/Wpvr-widget.php:105
|
294 |
+
msgid "Wpvr Setup"
|
295 |
+
msgstr "Configuration de WPVR"
|
296 |
+
|
297 |
+
#: admin/partials/wpvr_documentation.php:111
|
298 |
+
msgid ""
|
299 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
300 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
301 |
+
msgstr ""
|
302 |
+
"Votre évaluation et vos commentaires sont importants pour nous. Si vous êtes "
|
303 |
+
"satisfait de WP VR - 360 Panorama et que le créateur de visites virtuelles "
|
304 |
+
"pour WordPress nous donne une note."
|
305 |
+
|
306 |
+
#: admin/partials/wpvr_documentation.php:92
|
307 |
+
msgid ""
|
308 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
309 |
+
msgstr ""
|
310 |
+
"Vos suggestions nous sont précieuses. Cela peut aider à rendre wpvr encore "
|
311 |
+
"meilleur."
|
languages/wpvr-hr.mo
ADDED
Binary file
|
languages/wpvr-hr.po
ADDED
@@ -0,0 +1,307 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-18 07:03+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Croatian\n"
|
9 |
+
"Language: hr\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
17 |
+
|
18 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
19 |
+
msgid "Activate License"
|
20 |
+
msgstr "Aktivirajte licencu"
|
21 |
+
|
22 |
+
#: admin/partials/wpvr_documentation.php:53
|
23 |
+
msgid ""
|
24 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
25 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
26 |
+
msgstr ""
|
27 |
+
"Prije nego što započnete, možete provjeriti našu Dokumentaciju da biste se "
|
28 |
+
"upoznali sa WP VR - 360 Panorama i stvarateljem virtualne turneje za "
|
29 |
+
"WordPress."
|
30 |
+
|
31 |
+
#: admin/partials/wpvr_documentation.php:73
|
32 |
+
msgid ""
|
33 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
34 |
+
"forum. We are to solve your issue."
|
35 |
+
msgstr ""
|
36 |
+
"Ne možete pronaći rješenje s našom dokumentacijom? Samo pošaljite kartu na "
|
37 |
+
"forumu za podršku. Trebamo riješiti vaše pitanje."
|
38 |
+
|
39 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
40 |
+
msgid "Check how to use: "
|
41 |
+
msgstr "Provjerite kako koristiti:"
|
42 |
+
|
43 |
+
#: admin/partials/wpvr_documentation.php:166
|
44 |
+
msgid "Company logo"
|
45 |
+
msgstr "logotip tvrtke"
|
46 |
+
|
47 |
+
#: admin/partials/wpvr_documentation.php:153
|
48 |
+
msgid "Compass Switch"
|
49 |
+
msgstr "Kompas prekidač"
|
50 |
+
|
51 |
+
#: admin/partials/wpvr_documentation.php:164
|
52 |
+
msgid "Custom control buttons"
|
53 |
+
msgstr "Prilagođeni upravljački gumbi"
|
54 |
+
|
55 |
+
#: admin/partials/wpvr_documentation.php:163
|
56 |
+
msgid "Custom scene gallery"
|
57 |
+
msgstr "Prilagođena galerija scena"
|
58 |
+
|
59 |
+
#: admin/partials/wpvr_documentation.php:156
|
60 |
+
msgid "Customize each scene's default face on load"
|
61 |
+
msgstr "Prilagodite zadano lice svake scene pri učitavanju"
|
62 |
+
|
63 |
+
#: admin/partials/wpvr_documentation.php:151
|
64 |
+
msgid "Customized hotspot icon"
|
65 |
+
msgstr "Prilagođena ikona žarišta"
|
66 |
+
|
67 |
+
#: admin/partials/wpvr_license.php:34
|
68 |
+
msgid "Deactivate License"
|
69 |
+
msgstr "Deaktiviraj licencu"
|
70 |
+
|
71 |
+
#: admin/partials/wpvr_documentation.php:154
|
72 |
+
msgid "Default zoom level"
|
73 |
+
msgstr "Zadana razina zumiranja"
|
74 |
+
|
75 |
+
#: admin/partials/wpvr_documentation.php:178
|
76 |
+
msgid ""
|
77 |
+
"Do not close or refresh the page during import process. It may take few "
|
78 |
+
"minutes."
|
79 |
+
msgstr ""
|
80 |
+
"Nemojte zatvoriti ili osvježiti stranicu tijekom postupka uvoza. Može proći "
|
81 |
+
"nekoliko minuta."
|
82 |
+
|
83 |
+
#: admin/partials/wpvr_documentation.php:47
|
84 |
+
msgid "Documentation"
|
85 |
+
msgstr "Dokumentacija"
|
86 |
+
|
87 |
+
#: admin/partials/wpvr_documentation.php:161
|
88 |
+
msgid "Duplicate tour support"
|
89 |
+
msgstr "Duplika podrška turneji"
|
90 |
+
|
91 |
+
#: admin/partials/wpvr_documentation.php:152
|
92 |
+
msgid "Dynamic Icon background color on hotspot"
|
93 |
+
msgstr "Boja pozadine dinamične ikone na žarišnoj točki"
|
94 |
+
|
95 |
+
#: admin/partials/wpvr_license.php:22
|
96 |
+
msgid "Enter your license key, save changes and activate."
|
97 |
+
msgstr "Unesite licenčni ključ, spremite promjene i aktivirajte."
|
98 |
+
|
99 |
+
#: admin/partials/wpvr_documentation.php:162
|
100 |
+
msgid "File import & export system"
|
101 |
+
msgstr "Sustav za uvoz i izvoz datoteka"
|
102 |
+
|
103 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
104 |
+
msgid "For classic editor:"
|
105 |
+
msgstr "Za klasični urednik:"
|
106 |
+
|
107 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
108 |
+
msgid "For gutenberg:"
|
109 |
+
msgstr "Za Gutenberg:"
|
110 |
+
|
111 |
+
#: admin/partials/wpvr_documentation.php:23
|
112 |
+
msgid "General"
|
113 |
+
msgstr "General"
|
114 |
+
|
115 |
+
#: admin/partials/wpvr_documentation.php:169
|
116 |
+
msgid "Get Premium Version"
|
117 |
+
msgstr "Nabavite Premium verziju"
|
118 |
+
|
119 |
+
#: admin/partials/wpvr_documentation.php:25
|
120 |
+
msgid "Go Premium"
|
121 |
+
msgstr "Idi Premium"
|
122 |
+
|
123 |
+
#: admin/partials/wpvr_documentation.php:165
|
124 |
+
msgid "Google street view embed"
|
125 |
+
msgstr "Ugradite Google prikaz ulica"
|
126 |
+
|
127 |
+
#: admin/partials/wpvr_documentation.php:160
|
128 |
+
msgid "Gyroscope support"
|
129 |
+
msgstr "Držač za žiroskop"
|
130 |
+
|
131 |
+
#: elementor/elements/Wpvr-widget.php:133
|
132 |
+
msgid "Height:"
|
133 |
+
msgstr "Visina:"
|
134 |
+
|
135 |
+
#: admin/partials/wpvr_documentation.php:159
|
136 |
+
msgid "Hotspot based scene face support"
|
137 |
+
msgstr "Podrška za scenu utemeljena na žarišnoj točki"
|
138 |
+
|
139 |
+
#. Author URI of the plugin
|
140 |
+
msgid "http://rextheme.com/"
|
141 |
+
msgstr "http://rextheme.com/"
|
142 |
+
|
143 |
+
#. URI of the plugin
|
144 |
+
msgid "https://rextheme.com/wpvr/"
|
145 |
+
msgstr "https://rextheme.com/wpvr/"
|
146 |
+
|
147 |
+
#: elementor/elements/Wpvr-widget.php:113
|
148 |
+
msgid "ID:"
|
149 |
+
msgstr "ISKAZNICA:"
|
150 |
+
|
151 |
+
#: admin/partials/wpvr_documentation.php:29
|
152 |
+
msgid "Import"
|
153 |
+
msgstr "Uvoz"
|
154 |
+
|
155 |
+
#: admin/partials/wpvr_documentation.php:177
|
156 |
+
msgid "Import tour file: "
|
157 |
+
msgstr "Uvezi datoteku obilaska:"
|
158 |
+
|
159 |
+
#: admin/partials/wpvr_license.php:18
|
160 |
+
msgid "License Key"
|
161 |
+
msgstr "Licencni ključ"
|
162 |
+
|
163 |
+
#: admin/partials/wpvr_documentation.php:105
|
164 |
+
msgid "Make WPVR Popular"
|
165 |
+
msgstr "Učinite WPVR popularnim"
|
166 |
+
|
167 |
+
#: admin/partials/wpvr_documentation.php:155
|
168 |
+
msgid "Maximum and minimum zoom range"
|
169 |
+
msgstr "Maksimalni i minimalni domet zumiranja"
|
170 |
+
|
171 |
+
#: admin/partials/wpvr_documentation.php:167
|
172 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
173 |
+
msgstr ""
|
174 |
+
"Personalizirana podrška na forumu za podršku i na našoj e-pošti za podršku."
|
175 |
+
|
176 |
+
#: admin/partials/wpvr_documentation.php:77
|
177 |
+
msgid "Post a Ticket"
|
178 |
+
msgstr "Pošaljite ulaznicu"
|
179 |
+
|
180 |
+
#: elementor/elements/Wpvr-widget.php:136
|
181 |
+
msgid "Put value in (px)"
|
182 |
+
msgstr "Stavite vrijednost u (px)"
|
183 |
+
|
184 |
+
#: elementor/elements/Wpvr-widget.php:143
|
185 |
+
msgid "Radius:"
|
186 |
+
msgstr "Radius:"
|
187 |
+
|
188 |
+
#: admin/partials/wpvr_documentation.php:115
|
189 |
+
msgid "Rate Us! "
|
190 |
+
msgstr "Ocijeni nas!"
|
191 |
+
|
192 |
+
#. Author of the plugin
|
193 |
+
msgid "Rextheme"
|
194 |
+
msgstr "Rextheme"
|
195 |
+
|
196 |
+
#: admin/partials/wpvr_documentation.php:157
|
197 |
+
msgid "Scene grab control and custom boundary for each scene"
|
198 |
+
msgstr "Kontrola hvatanja scene i prilagođena granica za svaku scenu"
|
199 |
+
|
200 |
+
#: admin/partials/wpvr_documentation.php:158
|
201 |
+
msgid "Scene title and author tag support"
|
202 |
+
msgstr "Podrška naslova scene i autorske oznake"
|
203 |
+
|
204 |
+
#: admin/partials/wpvr_documentation.php:125
|
205 |
+
msgid "Share On"
|
206 |
+
msgstr "Dijeli"
|
207 |
+
|
208 |
+
#: admin/partials/wpvr_documentation.php:130
|
209 |
+
msgid "Share on Facebook"
|
210 |
+
msgstr "Podijeli na Facebooku"
|
211 |
+
|
212 |
+
#: admin/partials/wpvr_documentation.php:132
|
213 |
+
msgid "Share on Google+"
|
214 |
+
msgstr "Dijelite na Google+"
|
215 |
+
|
216 |
+
#: admin/partials/wpvr_documentation.php:133
|
217 |
+
msgid "Share on LinkedIn"
|
218 |
+
msgstr "Podijelite na LinkedIn-u"
|
219 |
+
|
220 |
+
#: admin/partials/wpvr_documentation.php:131
|
221 |
+
msgid "Share on Twitter"
|
222 |
+
msgstr "Podijelite na Twitteru"
|
223 |
+
|
224 |
+
#: admin/partials/wpvr_documentation.php:86
|
225 |
+
msgid "Share Your Thoughts"
|
226 |
+
msgstr "Podijeli svoje misli"
|
227 |
+
|
228 |
+
#: admin/partials/wpvr_documentation.php:96
|
229 |
+
msgid "Suggest"
|
230 |
+
msgstr "Predložiti"
|
231 |
+
|
232 |
+
#: admin/partials/wpvr_documentation.php:67
|
233 |
+
msgid "Support"
|
234 |
+
msgstr "podrška"
|
235 |
+
|
236 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
237 |
+
msgid ""
|
238 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
239 |
+
msgstr ""
|
240 |
+
"Za korištenje ovog WPVR obilaska u svojim postovima ili stranicama koristite "
|
241 |
+
"sljedeći kratki kôd:"
|
242 |
+
|
243 |
+
#: admin/partials/wpvr_documentation.php:150
|
244 |
+
msgid "Unlimited hotspots"
|
245 |
+
msgstr "Neograničeno vrućih mjesta"
|
246 |
+
|
247 |
+
#: admin/partials/wpvr_documentation.php:149
|
248 |
+
msgid "Unlimited scenes"
|
249 |
+
msgstr "Neograničene scene"
|
250 |
+
|
251 |
+
#: admin/partials/wpvr_documentation.php:204
|
252 |
+
msgid "Upgrade to Pro"
|
253 |
+
msgstr "Nadogradi na pro"
|
254 |
+
|
255 |
+
#: wpvr.php:810
|
256 |
+
msgid "Upgrade to pro"
|
257 |
+
msgstr "Nadogradi na pro"
|
258 |
+
|
259 |
+
#: admin/partials/wpvr_documentation.php:24
|
260 |
+
msgid "Video Tutorials"
|
261 |
+
msgstr "Video tutorijali"
|
262 |
+
|
263 |
+
#: admin/partials/wpvr_documentation.php:57
|
264 |
+
msgid "View Documentation"
|
265 |
+
msgstr "Pogledajte Dokumentaciju"
|
266 |
+
|
267 |
+
#: admin/partials/wpvr_documentation.php:147
|
268 |
+
msgid "Why upgrade to Premium Version?"
|
269 |
+
msgstr "Zašto nadograditi na Premium verziju?"
|
270 |
+
|
271 |
+
#: elementor/elements/Wpvr-widget.php:123
|
272 |
+
msgid "Width:"
|
273 |
+
msgstr "Širina:"
|
274 |
+
|
275 |
+
#. Name of the plugin
|
276 |
+
msgid "WP VR"
|
277 |
+
msgstr "WP VR"
|
278 |
+
|
279 |
+
#. Description of the plugin
|
280 |
+
msgid ""
|
281 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
282 |
+
"panaroma & virtual builder tool for WordPress Website."
|
283 |
+
msgstr ""
|
284 |
+
"WP VR - 360 Panorama i stvaralac virtualne turneje za WordPress prilagođeni "
|
285 |
+
"je alat za panoramu i virtualnu gradnju za web mjesto WordPress."
|
286 |
+
|
287 |
+
#: elementor/elements/Wpvr-widget.php:43
|
288 |
+
msgid "Wpvr"
|
289 |
+
msgstr "WPVR"
|
290 |
+
|
291 |
+
#: elementor/elements/Wpvr-widget.php:105
|
292 |
+
msgid "Wpvr Setup"
|
293 |
+
msgstr "Postavljanje WPVR"
|
294 |
+
|
295 |
+
#: admin/partials/wpvr_documentation.php:111
|
296 |
+
msgid ""
|
297 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
298 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
299 |
+
msgstr ""
|
300 |
+
"Vaša ocjena i povratne informacije su nam bitni. Ako ste zadovoljni s WP VR -"
|
301 |
+
" 360 Panorama i tvorcem virtualne turneje za WordPress, ocjenjujte nas."
|
302 |
+
|
303 |
+
#: admin/partials/wpvr_documentation.php:92
|
304 |
+
msgid ""
|
305 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
306 |
+
msgstr ""
|
307 |
+
"Vaši prijedlozi su nam vrijedni. Može vam pomoći da WPVR postane još bolji."
|
languages/wpvr-ja.mo
ADDED
Binary file
|
languages/wpvr-ja.po
ADDED
@@ -0,0 +1,296 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-13 09:34+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Japanese\n"
|
9 |
+
"Language: ja\n"
|
10 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
16 |
+
|
17 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
18 |
+
msgid "Activate License"
|
19 |
+
msgstr "ライセンスをアクティベート"
|
20 |
+
|
21 |
+
#: admin/partials/wpvr_documentation.php:53
|
22 |
+
msgid ""
|
23 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
24 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
25 |
+
msgstr ""
|
26 |
+
"開始する前に、ドキュメントを確認して、WP VR-360 PanoramaおよびWordPressのバーチャルツアークリエーターに慣れてください。"
|
27 |
+
|
28 |
+
#: admin/partials/wpvr_documentation.php:73
|
29 |
+
msgid ""
|
30 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
31 |
+
"forum. We are to solve your issue."
|
32 |
+
msgstr "ドキュメントで解決策が見つかりませんか? サポートフォーラムにチケットを投稿してください。 あなたの問題を解決します。"
|
33 |
+
|
34 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
35 |
+
msgid "Check how to use: "
|
36 |
+
msgstr "使用方法を確認します。"
|
37 |
+
|
38 |
+
#: admin/partials/wpvr_documentation.php:166
|
39 |
+
msgid "Company logo"
|
40 |
+
msgstr "会社のロゴ"
|
41 |
+
|
42 |
+
#: admin/partials/wpvr_documentation.php:153
|
43 |
+
msgid "Compass Switch"
|
44 |
+
msgstr "コンパススイッチ"
|
45 |
+
|
46 |
+
#: admin/partials/wpvr_documentation.php:164
|
47 |
+
msgid "Custom control buttons"
|
48 |
+
msgstr "カスタムコントロールボタン"
|
49 |
+
|
50 |
+
#: admin/partials/wpvr_documentation.php:163
|
51 |
+
msgid "Custom scene gallery"
|
52 |
+
msgstr "カスタムシーンギャラリー"
|
53 |
+
|
54 |
+
#: admin/partials/wpvr_documentation.php:156
|
55 |
+
msgid "Customize each scene's default face on load"
|
56 |
+
msgstr "ロード時に各シーンのデフォルトの顔をカスタマイズ"
|
57 |
+
|
58 |
+
#: admin/partials/wpvr_documentation.php:151
|
59 |
+
msgid "Customized hotspot icon"
|
60 |
+
msgstr "カスタマイズされたホットスポットアイコン"
|
61 |
+
|
62 |
+
#: admin/partials/wpvr_license.php:34
|
63 |
+
msgid "Deactivate License"
|
64 |
+
msgstr "ライセンスを無効にする"
|
65 |
+
|
66 |
+
#: admin/partials/wpvr_documentation.php:154
|
67 |
+
msgid "Default zoom level"
|
68 |
+
msgstr "デフォルトのズームレベル"
|
69 |
+
|
70 |
+
#: admin/partials/wpvr_documentation.php:178
|
71 |
+
msgid ""
|
72 |
+
"Do not close or refresh the page during import process. It may take few "
|
73 |
+
"minutes."
|
74 |
+
msgstr "インポートプロセス中にページを閉じたり更新したりしないでください。 数分かかる場合があります。"
|
75 |
+
|
76 |
+
#: admin/partials/wpvr_documentation.php:47
|
77 |
+
msgid "Documentation"
|
78 |
+
msgstr "ドキュメンテーション"
|
79 |
+
|
80 |
+
#: admin/partials/wpvr_documentation.php:161
|
81 |
+
msgid "Duplicate tour support"
|
82 |
+
msgstr "重複ツアーのサポート"
|
83 |
+
|
84 |
+
#: admin/partials/wpvr_documentation.php:152
|
85 |
+
msgid "Dynamic Icon background color on hotspot"
|
86 |
+
msgstr "ホットスポットの動的アイコンの背景色"
|
87 |
+
|
88 |
+
#: admin/partials/wpvr_license.php:22
|
89 |
+
msgid "Enter your license key, save changes and activate."
|
90 |
+
msgstr "ライセンスキーを入力し、変更を保存してアクティブ化します。"
|
91 |
+
|
92 |
+
#: admin/partials/wpvr_documentation.php:162
|
93 |
+
msgid "File import & export system"
|
94 |
+
msgstr "ファイルのインポートおよびエクスポートシステム"
|
95 |
+
|
96 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
97 |
+
msgid "For classic editor:"
|
98 |
+
msgstr "クラシックエディターの場合:"
|
99 |
+
|
100 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
101 |
+
msgid "For gutenberg:"
|
102 |
+
msgstr "グーテンベルクの場合:"
|
103 |
+
|
104 |
+
#: admin/partials/wpvr_documentation.php:23
|
105 |
+
msgid "General"
|
106 |
+
msgstr "全般"
|
107 |
+
|
108 |
+
#: admin/partials/wpvr_documentation.php:169
|
109 |
+
msgid "Get Premium Version"
|
110 |
+
msgstr "プレミアム版を入手"
|
111 |
+
|
112 |
+
#: admin/partials/wpvr_documentation.php:25
|
113 |
+
msgid "Go Premium"
|
114 |
+
msgstr "プレミアムへ"
|
115 |
+
|
116 |
+
#: admin/partials/wpvr_documentation.php:165
|
117 |
+
msgid "Google street view embed"
|
118 |
+
msgstr "Googleストリートビューの埋め込み"
|
119 |
+
|
120 |
+
#: admin/partials/wpvr_documentation.php:160
|
121 |
+
msgid "Gyroscope support"
|
122 |
+
msgstr "ジャイロスコープのサポート"
|
123 |
+
|
124 |
+
#: elementor/elements/Wpvr-widget.php:133
|
125 |
+
msgid "Height:"
|
126 |
+
msgstr "高さ:"
|
127 |
+
|
128 |
+
#: admin/partials/wpvr_documentation.php:159
|
129 |
+
msgid "Hotspot based scene face support"
|
130 |
+
msgstr "ホットスポットベースのシーンフェイスサポート"
|
131 |
+
|
132 |
+
#. Author URI of the plugin
|
133 |
+
msgid "http://rextheme.com/"
|
134 |
+
msgstr "http://rextheme.com/"
|
135 |
+
|
136 |
+
#. URI of the plugin
|
137 |
+
msgid "https://rextheme.com/wpvr/"
|
138 |
+
msgstr "https://rextheme.com/wpvr/"
|
139 |
+
|
140 |
+
#: elementor/elements/Wpvr-widget.php:113
|
141 |
+
msgid "ID:"
|
142 |
+
msgstr "ID:"
|
143 |
+
|
144 |
+
#: admin/partials/wpvr_documentation.php:29
|
145 |
+
msgid "Import"
|
146 |
+
msgstr "インポート"
|
147 |
+
|
148 |
+
#: admin/partials/wpvr_documentation.php:177
|
149 |
+
msgid "Import tour file: "
|
150 |
+
msgstr "ツアーファイルのインポート:"
|
151 |
+
|
152 |
+
#: admin/partials/wpvr_license.php:18
|
153 |
+
msgid "License Key"
|
154 |
+
msgstr "ライセンスキー"
|
155 |
+
|
156 |
+
#: admin/partials/wpvr_documentation.php:105
|
157 |
+
msgid "Make WPVR Popular"
|
158 |
+
msgstr "WPVRを人気にする"
|
159 |
+
|
160 |
+
#: admin/partials/wpvr_documentation.php:155
|
161 |
+
msgid "Maximum and minimum zoom range"
|
162 |
+
msgstr "最大および最小ズーム範囲"
|
163 |
+
|
164 |
+
#: admin/partials/wpvr_documentation.php:167
|
165 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
166 |
+
msgstr "サポートフォーラムとサポートメールの両方でパーソナライズされたサポート。"
|
167 |
+
|
168 |
+
#: admin/partials/wpvr_documentation.php:77
|
169 |
+
msgid "Post a Ticket"
|
170 |
+
msgstr "チケットを投稿する"
|
171 |
+
|
172 |
+
#: elementor/elements/Wpvr-widget.php:136
|
173 |
+
msgid "Put value in (px)"
|
174 |
+
msgstr "(px)に値を入れる"
|
175 |
+
|
176 |
+
#: elementor/elements/Wpvr-widget.php:143
|
177 |
+
msgid "Radius:"
|
178 |
+
msgstr "半径:"
|
179 |
+
|
180 |
+
#: admin/partials/wpvr_documentation.php:115
|
181 |
+
msgid "Rate Us! "
|
182 |
+
msgstr "私たちを評価してください!"
|
183 |
+
|
184 |
+
#. Author of the plugin
|
185 |
+
msgid "Rextheme"
|
186 |
+
msgstr "Rextheme"
|
187 |
+
|
188 |
+
#: admin/partials/wpvr_documentation.php:157
|
189 |
+
msgid "Scene grab control and custom boundary for each scene"
|
190 |
+
msgstr "シーングラブコントロールと各シーンのカスタム境界"
|
191 |
+
|
192 |
+
#: admin/partials/wpvr_documentation.php:158
|
193 |
+
msgid "Scene title and author tag support"
|
194 |
+
msgstr "シーンのタイトルと作成者タグのサポート"
|
195 |
+
|
196 |
+
#: admin/partials/wpvr_documentation.php:125
|
197 |
+
msgid "Share On"
|
198 |
+
msgstr "共有する"
|
199 |
+
|
200 |
+
#: admin/partials/wpvr_documentation.php:130
|
201 |
+
msgid "Share on Facebook"
|
202 |
+
msgstr "Facebookでシェア"
|
203 |
+
|
204 |
+
#: admin/partials/wpvr_documentation.php:132
|
205 |
+
msgid "Share on Google+"
|
206 |
+
msgstr "Google+で共有する"
|
207 |
+
|
208 |
+
#: admin/partials/wpvr_documentation.php:133
|
209 |
+
msgid "Share on LinkedIn"
|
210 |
+
msgstr "LinkedInで共有する"
|
211 |
+
|
212 |
+
#: admin/partials/wpvr_documentation.php:131
|
213 |
+
msgid "Share on Twitter"
|
214 |
+
msgstr "Twitterで共有する"
|
215 |
+
|
216 |
+
#: admin/partials/wpvr_documentation.php:86
|
217 |
+
msgid "Share Your Thoughts"
|
218 |
+
msgstr "考えを共有する"
|
219 |
+
|
220 |
+
#: admin/partials/wpvr_documentation.php:96
|
221 |
+
msgid "Suggest"
|
222 |
+
msgstr "提案する"
|
223 |
+
|
224 |
+
#: admin/partials/wpvr_documentation.php:67
|
225 |
+
msgid "Support"
|
226 |
+
msgstr "サポート"
|
227 |
+
|
228 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
229 |
+
msgid ""
|
230 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
231 |
+
msgstr "投稿またはページでこのWPvrツアーを使用するには、次のショートコードを使用します。"
|
232 |
+
|
233 |
+
#: admin/partials/wpvr_documentation.php:150
|
234 |
+
msgid "Unlimited hotspots"
|
235 |
+
msgstr "無制限のホットスポット"
|
236 |
+
|
237 |
+
#: admin/partials/wpvr_documentation.php:149
|
238 |
+
msgid "Unlimited scenes"
|
239 |
+
msgstr "無制限のシーン"
|
240 |
+
|
241 |
+
#: admin/partials/wpvr_documentation.php:204
|
242 |
+
msgid "Upgrade to Pro"
|
243 |
+
msgstr "プロ仕様にアップグレードする"
|
244 |
+
|
245 |
+
#: wpvr.php:810
|
246 |
+
msgid "Upgrade to pro"
|
247 |
+
msgstr "プロ仕様にアップグレードする"
|
248 |
+
|
249 |
+
#: admin/partials/wpvr_documentation.php:24
|
250 |
+
msgid "Video Tutorials"
|
251 |
+
msgstr "ビデオチュートリアル"
|
252 |
+
|
253 |
+
#: admin/partials/wpvr_documentation.php:57
|
254 |
+
msgid "View Documentation"
|
255 |
+
msgstr "ドキュメントを見る"
|
256 |
+
|
257 |
+
#: admin/partials/wpvr_documentation.php:147
|
258 |
+
msgid "Why upgrade to Premium Version?"
|
259 |
+
msgstr "プレミアムバージョンにアップグレードする理由"
|
260 |
+
|
261 |
+
#: elementor/elements/Wpvr-widget.php:123
|
262 |
+
msgid "Width:"
|
263 |
+
msgstr "幅:"
|
264 |
+
|
265 |
+
#. Name of the plugin
|
266 |
+
msgid "WP VR"
|
267 |
+
msgstr "WP VR"
|
268 |
+
|
269 |
+
#. Description of the plugin
|
270 |
+
msgid ""
|
271 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
272 |
+
"panaroma & virtual builder tool for WordPress Website."
|
273 |
+
msgstr ""
|
274 |
+
"WP VR-WordPress用360パノラマおよびバーチャルツアークリエーターは、WordPress "
|
275 |
+
"Webサイト用のカスタマイズされたパナロマおよびバーチャルビルダーツールです。"
|
276 |
+
|
277 |
+
#: elementor/elements/Wpvr-widget.php:43
|
278 |
+
msgid "Wpvr"
|
279 |
+
msgstr "WPVR"
|
280 |
+
|
281 |
+
#: elementor/elements/Wpvr-widget.php:105
|
282 |
+
msgid "Wpvr Setup"
|
283 |
+
msgstr "WPVRセットアップ"
|
284 |
+
|
285 |
+
#: admin/partials/wpvr_documentation.php:111
|
286 |
+
msgid ""
|
287 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
288 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
289 |
+
msgstr ""
|
290 |
+
"あなたの評価とフィードバックは私たちにとって重要です。 WP VR-360 "
|
291 |
+
"PanoramaとWordPressのバーチャルツアークリエーターに満足している場合は、評価をください。"
|
292 |
+
|
293 |
+
#: admin/partials/wpvr_documentation.php:92
|
294 |
+
msgid ""
|
295 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
296 |
+
msgstr "あなたの提案は私たちにとって貴重です。 WPVRをさらに改善するのに役立ちます。"
|
languages/wpvr-pl_PL.mo
ADDED
Binary file
|
languages/wpvr-pl_PL.po
ADDED
@@ -0,0 +1,309 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-17 07:45+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Polish\n"
|
9 |
+
"Language: pl-PL\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
|
11 |
+
"&&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
17 |
+
|
18 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
19 |
+
msgid "Activate License"
|
20 |
+
msgstr "Aktywuj licencję"
|
21 |
+
|
22 |
+
#: admin/partials/wpvr_documentation.php:53
|
23 |
+
msgid ""
|
24 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
25 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
26 |
+
msgstr ""
|
27 |
+
"Zanim zaczniesz, możesz sprawdzić naszą dokumentację, aby zapoznać się z WP "
|
28 |
+
"VR - 360 Panorama i twórcą wirtualnej wycieczki dla WordPress."
|
29 |
+
|
30 |
+
#: admin/partials/wpvr_documentation.php:73
|
31 |
+
msgid ""
|
32 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
33 |
+
"forum. We are to solve your issue."
|
34 |
+
msgstr ""
|
35 |
+
"Nie możesz znaleźć rozwiązania w naszej dokumentacji? Wystarczy opublikować "
|
36 |
+
"bilet na forum pomocy technicznej. Mamy rozwiązać Twój problem."
|
37 |
+
|
38 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
39 |
+
msgid "Check how to use: "
|
40 |
+
msgstr "Sprawdź, jak używać:"
|
41 |
+
|
42 |
+
#: admin/partials/wpvr_documentation.php:166
|
43 |
+
msgid "Company logo"
|
44 |
+
msgstr "Logo firmy"
|
45 |
+
|
46 |
+
#: admin/partials/wpvr_documentation.php:153
|
47 |
+
msgid "Compass Switch"
|
48 |
+
msgstr "Przełącznik kompasu"
|
49 |
+
|
50 |
+
#: admin/partials/wpvr_documentation.php:164
|
51 |
+
msgid "Custom control buttons"
|
52 |
+
msgstr "Niestandardowe przyciski sterujące"
|
53 |
+
|
54 |
+
#: admin/partials/wpvr_documentation.php:163
|
55 |
+
msgid "Custom scene gallery"
|
56 |
+
msgstr "Galeria niestandardowych scen"
|
57 |
+
|
58 |
+
#: admin/partials/wpvr_documentation.php:156
|
59 |
+
msgid "Customize each scene's default face on load"
|
60 |
+
msgstr "Dostosuj domyślną twarz każdej sceny podczas ładowania"
|
61 |
+
|
62 |
+
#: admin/partials/wpvr_documentation.php:151
|
63 |
+
msgid "Customized hotspot icon"
|
64 |
+
msgstr "Dostosowana ikona hotspotu"
|
65 |
+
|
66 |
+
#: admin/partials/wpvr_license.php:34
|
67 |
+
msgid "Deactivate License"
|
68 |
+
msgstr "Dezaktywuj licencję"
|
69 |
+
|
70 |
+
#: admin/partials/wpvr_documentation.php:154
|
71 |
+
msgid "Default zoom level"
|
72 |
+
msgstr "Domyślny poziom powiększenia"
|
73 |
+
|
74 |
+
#: admin/partials/wpvr_documentation.php:178
|
75 |
+
msgid ""
|
76 |
+
"Do not close or refresh the page during import process. It may take few "
|
77 |
+
"minutes."
|
78 |
+
msgstr ""
|
79 |
+
"Nie zamykaj ani nie odświeżaj strony podczas procesu importowania. Może to "
|
80 |
+
"potrwać kilka minut."
|
81 |
+
|
82 |
+
#: admin/partials/wpvr_documentation.php:47
|
83 |
+
msgid "Documentation"
|
84 |
+
msgstr "Dokumentacja"
|
85 |
+
|
86 |
+
#: admin/partials/wpvr_documentation.php:161
|
87 |
+
msgid "Duplicate tour support"
|
88 |
+
msgstr "Obsługa zduplikowanych tras"
|
89 |
+
|
90 |
+
#: admin/partials/wpvr_documentation.php:152
|
91 |
+
msgid "Dynamic Icon background color on hotspot"
|
92 |
+
msgstr "Kolor tła ikony dynamicznej w punkcie aktywnym"
|
93 |
+
|
94 |
+
#: admin/partials/wpvr_license.php:22
|
95 |
+
msgid "Enter your license key, save changes and activate."
|
96 |
+
msgstr "Wprowadź swój klucz licencyjny, zapisz zmiany i aktywuj."
|
97 |
+
|
98 |
+
#: admin/partials/wpvr_documentation.php:162
|
99 |
+
msgid "File import & export system"
|
100 |
+
msgstr "System importu i eksportu plików"
|
101 |
+
|
102 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
103 |
+
msgid "For classic editor:"
|
104 |
+
msgstr "W przypadku klasycznego edytora:"
|
105 |
+
|
106 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
107 |
+
msgid "For gutenberg:"
|
108 |
+
msgstr "Dla Gutenberga:"
|
109 |
+
|
110 |
+
#: admin/partials/wpvr_documentation.php:23
|
111 |
+
msgid "General"
|
112 |
+
msgstr "Generał"
|
113 |
+
|
114 |
+
#: admin/partials/wpvr_documentation.php:169
|
115 |
+
msgid "Get Premium Version"
|
116 |
+
msgstr "Uzyskaj wersję Premium"
|
117 |
+
|
118 |
+
#: admin/partials/wpvr_documentation.php:25
|
119 |
+
msgid "Go Premium"
|
120 |
+
msgstr "Przejdź na Premium"
|
121 |
+
|
122 |
+
#: admin/partials/wpvr_documentation.php:165
|
123 |
+
msgid "Google street view embed"
|
124 |
+
msgstr "Widok ulicy Google osadzony"
|
125 |
+
|
126 |
+
#: admin/partials/wpvr_documentation.php:160
|
127 |
+
msgid "Gyroscope support"
|
128 |
+
msgstr "Wsparcie żyroskopu"
|
129 |
+
|
130 |
+
#: elementor/elements/Wpvr-widget.php:133
|
131 |
+
msgid "Height:"
|
132 |
+
msgstr "Wysokość:"
|
133 |
+
|
134 |
+
#: admin/partials/wpvr_documentation.php:159
|
135 |
+
msgid "Hotspot based scene face support"
|
136 |
+
msgstr "Obsługa twarzy opartych na hotspotach"
|
137 |
+
|
138 |
+
#. Author URI of the plugin
|
139 |
+
msgid "http://rextheme.com/"
|
140 |
+
msgstr "http://rextheme.com/"
|
141 |
+
|
142 |
+
#. URI of the plugin
|
143 |
+
msgid "https://rextheme.com/wpvr/"
|
144 |
+
msgstr "https://rextheme.com/wpvr/"
|
145 |
+
|
146 |
+
#: elementor/elements/Wpvr-widget.php:113
|
147 |
+
msgid "ID:"
|
148 |
+
msgstr "ID:"
|
149 |
+
|
150 |
+
#: admin/partials/wpvr_documentation.php:29
|
151 |
+
msgid "Import"
|
152 |
+
msgstr "Import"
|
153 |
+
|
154 |
+
#: admin/partials/wpvr_documentation.php:177
|
155 |
+
msgid "Import tour file: "
|
156 |
+
msgstr "Importuj plik wycieczki:"
|
157 |
+
|
158 |
+
#: admin/partials/wpvr_license.php:18
|
159 |
+
msgid "License Key"
|
160 |
+
msgstr "Klucz licencyjny"
|
161 |
+
|
162 |
+
#: admin/partials/wpvr_documentation.php:105
|
163 |
+
msgid "Make WPVR Popular"
|
164 |
+
msgstr "Uczyń WPVR popularnym"
|
165 |
+
|
166 |
+
#: admin/partials/wpvr_documentation.php:155
|
167 |
+
msgid "Maximum and minimum zoom range"
|
168 |
+
msgstr "Maksymalny i minimalny zakres zoomu"
|
169 |
+
|
170 |
+
#: admin/partials/wpvr_documentation.php:167
|
171 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
172 |
+
msgstr ""
|
173 |
+
"Spersonalizowane wsparcie zarówno na forum wsparcia, jak i na naszym e-mailu "
|
174 |
+
"wsparcia."
|
175 |
+
|
176 |
+
#: admin/partials/wpvr_documentation.php:77
|
177 |
+
msgid "Post a Ticket"
|
178 |
+
msgstr "Opublikuj bilet"
|
179 |
+
|
180 |
+
#: elementor/elements/Wpvr-widget.php:136
|
181 |
+
msgid "Put value in (px)"
|
182 |
+
msgstr "Wpisz wartość w (px)"
|
183 |
+
|
184 |
+
#: elementor/elements/Wpvr-widget.php:143
|
185 |
+
msgid "Radius:"
|
186 |
+
msgstr "Promień:"
|
187 |
+
|
188 |
+
#: admin/partials/wpvr_documentation.php:115
|
189 |
+
msgid "Rate Us! "
|
190 |
+
msgstr "Oceń nas!"
|
191 |
+
|
192 |
+
#. Author of the plugin
|
193 |
+
msgid "Rextheme"
|
194 |
+
msgstr "Rextheme"
|
195 |
+
|
196 |
+
#: admin/partials/wpvr_documentation.php:157
|
197 |
+
msgid "Scene grab control and custom boundary for each scene"
|
198 |
+
msgstr ""
|
199 |
+
"Kontrola przechwytywania scen i niestandardowa granica dla każdej sceny"
|
200 |
+
|
201 |
+
#: admin/partials/wpvr_documentation.php:158
|
202 |
+
msgid "Scene title and author tag support"
|
203 |
+
msgstr "Obsługa tytułu sceny i tagu autora"
|
204 |
+
|
205 |
+
#: admin/partials/wpvr_documentation.php:125
|
206 |
+
msgid "Share On"
|
207 |
+
msgstr "Podziel się na"
|
208 |
+
|
209 |
+
#: admin/partials/wpvr_documentation.php:130
|
210 |
+
msgid "Share on Facebook"
|
211 |
+
msgstr "Udostępnij na Facebooku"
|
212 |
+
|
213 |
+
#: admin/partials/wpvr_documentation.php:132
|
214 |
+
msgid "Share on Google+"
|
215 |
+
msgstr "Udostępnij w Google+"
|
216 |
+
|
217 |
+
#: admin/partials/wpvr_documentation.php:133
|
218 |
+
msgid "Share on LinkedIn"
|
219 |
+
msgstr "Udostępnij na LinkedIn"
|
220 |
+
|
221 |
+
#: admin/partials/wpvr_documentation.php:131
|
222 |
+
msgid "Share on Twitter"
|
223 |
+
msgstr "Podziel się na Twitterze"
|
224 |
+
|
225 |
+
#: admin/partials/wpvr_documentation.php:86
|
226 |
+
msgid "Share Your Thoughts"
|
227 |
+
msgstr "Podziel się swoimi przemyśleniami"
|
228 |
+
|
229 |
+
#: admin/partials/wpvr_documentation.php:96
|
230 |
+
msgid "Suggest"
|
231 |
+
msgstr "Sugerować"
|
232 |
+
|
233 |
+
#: admin/partials/wpvr_documentation.php:67
|
234 |
+
msgid "Support"
|
235 |
+
msgstr "Wsparcie"
|
236 |
+
|
237 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
238 |
+
msgid ""
|
239 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
240 |
+
msgstr ""
|
241 |
+
"Aby użyć tej prezentacji WPVR w swoich postach lub stronach, użyj "
|
242 |
+
"następującego skrótu:"
|
243 |
+
|
244 |
+
#: admin/partials/wpvr_documentation.php:150
|
245 |
+
msgid "Unlimited hotspots"
|
246 |
+
msgstr "Nieograniczone hotspoty"
|
247 |
+
|
248 |
+
#: admin/partials/wpvr_documentation.php:149
|
249 |
+
msgid "Unlimited scenes"
|
250 |
+
msgstr "Nieograniczone sceny"
|
251 |
+
|
252 |
+
#: admin/partials/wpvr_documentation.php:204
|
253 |
+
msgid "Upgrade to Pro"
|
254 |
+
msgstr "Przejść na wersje Pro"
|
255 |
+
|
256 |
+
#: wpvr.php:810
|
257 |
+
msgid "Upgrade to pro"
|
258 |
+
msgstr "Przejść na wersje Pro"
|
259 |
+
|
260 |
+
#: admin/partials/wpvr_documentation.php:24
|
261 |
+
msgid "Video Tutorials"
|
262 |
+
msgstr "Samouczki wideo"
|
263 |
+
|
264 |
+
#: admin/partials/wpvr_documentation.php:57
|
265 |
+
msgid "View Documentation"
|
266 |
+
msgstr "Zobacz dokumentację"
|
267 |
+
|
268 |
+
#: admin/partials/wpvr_documentation.php:147
|
269 |
+
msgid "Why upgrade to Premium Version?"
|
270 |
+
msgstr "Dlaczego warto uaktualnić do wersji Premium?"
|
271 |
+
|
272 |
+
#: elementor/elements/Wpvr-widget.php:123
|
273 |
+
msgid "Width:"
|
274 |
+
msgstr "Szerokość:"
|
275 |
+
|
276 |
+
#. Name of the plugin
|
277 |
+
msgid "WP VR"
|
278 |
+
msgstr "WP VR"
|
279 |
+
|
280 |
+
#. Description of the plugin
|
281 |
+
msgid ""
|
282 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
283 |
+
"panaroma & virtual builder tool for WordPress Website."
|
284 |
+
msgstr ""
|
285 |
+
"WP VR - 360 Panorama i kreator wirtualnych tras dla WordPress jest "
|
286 |
+
"dostosowanym narzędziem do tworzenia panoram i wirtualnych kreacji dla "
|
287 |
+
"witryny WordPress."
|
288 |
+
|
289 |
+
#: elementor/elements/Wpvr-widget.php:43
|
290 |
+
msgid "Wpvr"
|
291 |
+
msgstr "WPVR"
|
292 |
+
|
293 |
+
#: elementor/elements/Wpvr-widget.php:105
|
294 |
+
msgid "Wpvr Setup"
|
295 |
+
msgstr "Konfiguracja WPVR"
|
296 |
+
|
297 |
+
#: admin/partials/wpvr_documentation.php:111
|
298 |
+
msgid ""
|
299 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
300 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
301 |
+
msgstr ""
|
302 |
+
"Twoja ocena i opinie są dla nas ważne. Jeśli jesteś zadowolony z WP VR - 360 "
|
303 |
+
"Panorama i twórcy wirtualnej wycieczki dla WordPress, daj nam ocenę."
|
304 |
+
|
305 |
+
#: admin/partials/wpvr_documentation.php:92
|
306 |
+
msgid ""
|
307 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
308 |
+
msgstr ""
|
309 |
+
"Twoje sugestie są dla nas cenne. Może to pomóc uczynić wpvr jeszcze lepszym."
|
languages/wpvr-ru_RU.mo
ADDED
Binary file
|
languages/wpvr-ru_RU.po
ADDED
@@ -0,0 +1,306 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-13 09:21+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Russian\n"
|
9 |
+
"Language: ru-RU\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
17 |
+
|
18 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
19 |
+
msgid "Activate License"
|
20 |
+
msgstr "Активировать лицензию"
|
21 |
+
|
22 |
+
#: admin/partials/wpvr_documentation.php:53
|
23 |
+
msgid ""
|
24 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
25 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
26 |
+
msgstr ""
|
27 |
+
"Прежде чем начать, вы можете проверить нашу документацию, чтобы ознакомиться "
|
28 |
+
"с WP VR - 360 Panorama и создателем виртуальных туров для WordPress."
|
29 |
+
|
30 |
+
#: admin/partials/wpvr_documentation.php:73
|
31 |
+
msgid ""
|
32 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
33 |
+
"forum. We are to solve your issue."
|
34 |
+
msgstr ""
|
35 |
+
"Не можете найти решение по нашей документации? Просто отправьте заявку на "
|
36 |
+
"форуме поддержки. Мы должны решить вашу проблему."
|
37 |
+
|
38 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
39 |
+
msgid "Check how to use: "
|
40 |
+
msgstr "Проверьте, как использовать:"
|
41 |
+
|
42 |
+
#: admin/partials/wpvr_documentation.php:166
|
43 |
+
msgid "Company logo"
|
44 |
+
msgstr "Логотип компании"
|
45 |
+
|
46 |
+
#: admin/partials/wpvr_documentation.php:153
|
47 |
+
msgid "Compass Switch"
|
48 |
+
msgstr "Компас Переключатель"
|
49 |
+
|
50 |
+
#: admin/partials/wpvr_documentation.php:164
|
51 |
+
msgid "Custom control buttons"
|
52 |
+
msgstr "Пользовательские кнопки управления"
|
53 |
+
|
54 |
+
#: admin/partials/wpvr_documentation.php:163
|
55 |
+
msgid "Custom scene gallery"
|
56 |
+
msgstr "Галерея пользовательских сцен"
|
57 |
+
|
58 |
+
#: admin/partials/wpvr_documentation.php:156
|
59 |
+
msgid "Customize each scene's default face on load"
|
60 |
+
msgstr "Настройка лица каждой сцены по умолчанию при загрузке"
|
61 |
+
|
62 |
+
#: admin/partials/wpvr_documentation.php:151
|
63 |
+
msgid "Customized hotspot icon"
|
64 |
+
msgstr "Индивидуальный значок точки доступа"
|
65 |
+
|
66 |
+
#: admin/partials/wpvr_license.php:34
|
67 |
+
msgid "Deactivate License"
|
68 |
+
msgstr "Деактивировать лицензию"
|
69 |
+
|
70 |
+
#: admin/partials/wpvr_documentation.php:154
|
71 |
+
msgid "Default zoom level"
|
72 |
+
msgstr "Уровень масштабирования по умолчанию"
|
73 |
+
|
74 |
+
#: admin/partials/wpvr_documentation.php:178
|
75 |
+
msgid ""
|
76 |
+
"Do not close or refresh the page during import process. It may take few "
|
77 |
+
"minutes."
|
78 |
+
msgstr ""
|
79 |
+
"Не закрывайте и не обновляйте страницу во время процесса импорта. Это может "
|
80 |
+
"занять несколько минут."
|
81 |
+
|
82 |
+
#: admin/partials/wpvr_documentation.php:47
|
83 |
+
msgid "Documentation"
|
84 |
+
msgstr "Документация"
|
85 |
+
|
86 |
+
#: admin/partials/wpvr_documentation.php:161
|
87 |
+
msgid "Duplicate tour support"
|
88 |
+
msgstr "Двойная поддержка тура"
|
89 |
+
|
90 |
+
#: admin/partials/wpvr_documentation.php:152
|
91 |
+
msgid "Dynamic Icon background color on hotspot"
|
92 |
+
msgstr "Цвет фона динамического значка в точке доступа"
|
93 |
+
|
94 |
+
#: admin/partials/wpvr_license.php:22
|
95 |
+
msgid "Enter your license key, save changes and activate."
|
96 |
+
msgstr "Введите лицензионный ключ, сохраните изменения и активируйте."
|
97 |
+
|
98 |
+
#: admin/partials/wpvr_documentation.php:162
|
99 |
+
msgid "File import & export system"
|
100 |
+
msgstr "Система импорта и экспорта файлов"
|
101 |
+
|
102 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
103 |
+
msgid "For classic editor:"
|
104 |
+
msgstr "Для классического редактора:"
|
105 |
+
|
106 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
107 |
+
msgid "For gutenberg:"
|
108 |
+
msgstr "Для Гутенберга:"
|
109 |
+
|
110 |
+
#: admin/partials/wpvr_documentation.php:23
|
111 |
+
msgid "General"
|
112 |
+
msgstr "генеральный"
|
113 |
+
|
114 |
+
#: admin/partials/wpvr_documentation.php:169
|
115 |
+
msgid "Get Premium Version"
|
116 |
+
msgstr "Получить Премиум версию"
|
117 |
+
|
118 |
+
#: admin/partials/wpvr_documentation.php:25
|
119 |
+
msgid "Go Premium"
|
120 |
+
msgstr "Премиум"
|
121 |
+
|
122 |
+
#: admin/partials/wpvr_documentation.php:165
|
123 |
+
msgid "Google street view embed"
|
124 |
+
msgstr "Google Street View Embed"
|
125 |
+
|
126 |
+
#: admin/partials/wpvr_documentation.php:160
|
127 |
+
msgid "Gyroscope support"
|
128 |
+
msgstr "Поддержка гироскопа"
|
129 |
+
|
130 |
+
#: elementor/elements/Wpvr-widget.php:133
|
131 |
+
msgid "Height:"
|
132 |
+
msgstr "Рост:"
|
133 |
+
|
134 |
+
#: admin/partials/wpvr_documentation.php:159
|
135 |
+
msgid "Hotspot based scene face support"
|
136 |
+
msgstr "Поддержка лица на основе Hotspot"
|
137 |
+
|
138 |
+
#. Author URI of the plugin
|
139 |
+
msgid "http://rextheme.com/"
|
140 |
+
msgstr "http://rextheme.com/"
|
141 |
+
|
142 |
+
#. URI of the plugin
|
143 |
+
msgid "https://rextheme.com/wpvr/"
|
144 |
+
msgstr "https://rextheme.com/wpvr/"
|
145 |
+
|
146 |
+
#: elementor/elements/Wpvr-widget.php:113
|
147 |
+
msgid "ID:"
|
148 |
+
msgstr "МНЕ БЫ:"
|
149 |
+
|
150 |
+
#: admin/partials/wpvr_documentation.php:29
|
151 |
+
msgid "Import"
|
152 |
+
msgstr "импорт"
|
153 |
+
|
154 |
+
#: admin/partials/wpvr_documentation.php:177
|
155 |
+
msgid "Import tour file: "
|
156 |
+
msgstr "Импортировать файл тура:"
|
157 |
+
|
158 |
+
#: admin/partials/wpvr_license.php:18
|
159 |
+
msgid "License Key"
|
160 |
+
msgstr "Лицензионный ключ"
|
161 |
+
|
162 |
+
#: admin/partials/wpvr_documentation.php:105
|
163 |
+
msgid "Make WPVR Popular"
|
164 |
+
msgstr "Сделайте WPVR популярным"
|
165 |
+
|
166 |
+
#: admin/partials/wpvr_documentation.php:155
|
167 |
+
msgid "Maximum and minimum zoom range"
|
168 |
+
msgstr "Максимальный и минимальный диапазон масштабирования"
|
169 |
+
|
170 |
+
#: admin/partials/wpvr_documentation.php:167
|
171 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
172 |
+
msgstr "Персональная поддержка на форуме поддержки и по электронной почте."
|
173 |
+
|
174 |
+
#: admin/partials/wpvr_documentation.php:77
|
175 |
+
msgid "Post a Ticket"
|
176 |
+
msgstr "Разместить билет"
|
177 |
+
|
178 |
+
#: elementor/elements/Wpvr-widget.php:136
|
179 |
+
msgid "Put value in (px)"
|
180 |
+
msgstr "Поместите значение в (px)"
|
181 |
+
|
182 |
+
#: elementor/elements/Wpvr-widget.php:143
|
183 |
+
msgid "Radius:"
|
184 |
+
msgstr "Радиус:"
|
185 |
+
|
186 |
+
#: admin/partials/wpvr_documentation.php:115
|
187 |
+
msgid "Rate Us! "
|
188 |
+
msgstr "Оцените нас!"
|
189 |
+
|
190 |
+
#. Author of the plugin
|
191 |
+
msgid "Rextheme"
|
192 |
+
msgstr "Rextheme"
|
193 |
+
|
194 |
+
#: admin/partials/wpvr_documentation.php:157
|
195 |
+
msgid "Scene grab control and custom boundary for each scene"
|
196 |
+
msgstr "Управление захватом сцены и пользовательские границы для каждой сцены"
|
197 |
+
|
198 |
+
#: admin/partials/wpvr_documentation.php:158
|
199 |
+
msgid "Scene title and author tag support"
|
200 |
+
msgstr "Поддержка названия и тега автора"
|
201 |
+
|
202 |
+
#: admin/partials/wpvr_documentation.php:125
|
203 |
+
msgid "Share On"
|
204 |
+
msgstr "Поделись"
|
205 |
+
|
206 |
+
#: admin/partials/wpvr_documentation.php:130
|
207 |
+
msgid "Share on Facebook"
|
208 |
+
msgstr "Поделиться через фейсбук"
|
209 |
+
|
210 |
+
#: admin/partials/wpvr_documentation.php:132
|
211 |
+
msgid "Share on Google+"
|
212 |
+
msgstr "Поделиться в Google+"
|
213 |
+
|
214 |
+
#: admin/partials/wpvr_documentation.php:133
|
215 |
+
msgid "Share on LinkedIn"
|
216 |
+
msgstr "Поделиться на LinkedIn"
|
217 |
+
|
218 |
+
#: admin/partials/wpvr_documentation.php:131
|
219 |
+
msgid "Share on Twitter"
|
220 |
+
msgstr "Поделиться в Twitter"
|
221 |
+
|
222 |
+
#: admin/partials/wpvr_documentation.php:86
|
223 |
+
msgid "Share Your Thoughts"
|
224 |
+
msgstr "Поделитесь своими мыслями"
|
225 |
+
|
226 |
+
#: admin/partials/wpvr_documentation.php:96
|
227 |
+
msgid "Suggest"
|
228 |
+
msgstr "Предложить"
|
229 |
+
|
230 |
+
#: admin/partials/wpvr_documentation.php:67
|
231 |
+
msgid "Support"
|
232 |
+
msgstr "Поддержка"
|
233 |
+
|
234 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
235 |
+
msgid ""
|
236 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
237 |
+
msgstr ""
|
238 |
+
"Чтобы использовать этот тур Wpvr в своих сообщениях или страницах, "
|
239 |
+
"используйте следующий шорткод:"
|
240 |
+
|
241 |
+
#: admin/partials/wpvr_documentation.php:150
|
242 |
+
msgid "Unlimited hotspots"
|
243 |
+
msgstr "Неограниченные горячие точки"
|
244 |
+
|
245 |
+
#: admin/partials/wpvr_documentation.php:149
|
246 |
+
msgid "Unlimited scenes"
|
247 |
+
msgstr "Неограниченные сцены"
|
248 |
+
|
249 |
+
#: admin/partials/wpvr_documentation.php:204
|
250 |
+
msgid "Upgrade to Pro"
|
251 |
+
msgstr "Обновление до Pro"
|
252 |
+
|
253 |
+
#: wpvr.php:810
|
254 |
+
msgid "Upgrade to pro"
|
255 |
+
msgstr "Обновление до Pro"
|
256 |
+
|
257 |
+
#: admin/partials/wpvr_documentation.php:24
|
258 |
+
msgid "Video Tutorials"
|
259 |
+
msgstr "Видео уроки"
|
260 |
+
|
261 |
+
#: admin/partials/wpvr_documentation.php:57
|
262 |
+
msgid "View Documentation"
|
263 |
+
msgstr "Посмотреть документацию"
|
264 |
+
|
265 |
+
#: admin/partials/wpvr_documentation.php:147
|
266 |
+
msgid "Why upgrade to Premium Version?"
|
267 |
+
msgstr "Зачем обновляться до Premium версии?"
|
268 |
+
|
269 |
+
#: elementor/elements/Wpvr-widget.php:123
|
270 |
+
msgid "Width:"
|
271 |
+
msgstr "Ширина:"
|
272 |
+
|
273 |
+
#. Name of the plugin
|
274 |
+
msgid "WP VR"
|
275 |
+
msgstr "WP VR"
|
276 |
+
|
277 |
+
#. Description of the plugin
|
278 |
+
msgid ""
|
279 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
280 |
+
"panaroma & virtual builder tool for WordPress Website."
|
281 |
+
msgstr ""
|
282 |
+
"WP VR - 360 Создатель панорамы и виртуальных туров для WordPress - "
|
283 |
+
"настраиваемый инструмент для создания панорамы и виртуальных построителей "
|
284 |
+
"для веб-сайта WordPress."
|
285 |
+
|
286 |
+
#: elementor/elements/Wpvr-widget.php:43
|
287 |
+
msgid "Wpvr"
|
288 |
+
msgstr "WPVR"
|
289 |
+
|
290 |
+
#: elementor/elements/Wpvr-widget.php:105
|
291 |
+
msgid "Wpvr Setup"
|
292 |
+
msgstr "Настройка WPVR"
|
293 |
+
|
294 |
+
#: admin/partials/wpvr_documentation.php:111
|
295 |
+
msgid ""
|
296 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
297 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
298 |
+
msgstr ""
|
299 |
+
"Ваш рейтинг и отзывы важны для нас. Если вы довольны WP VR - 360 Panorama и "
|
300 |
+
"создателем виртуальных туров для WordPress, дайте нам оценку."
|
301 |
+
|
302 |
+
#: admin/partials/wpvr_documentation.php:92
|
303 |
+
msgid ""
|
304 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
305 |
+
msgstr ""
|
306 |
+
"Ваши предложения ценны для нас. Это может помочь сделать WPVR еще лучше."
|
languages/wpvr-sv_SE.mo
ADDED
Binary file
|
languages/wpvr-sv_SE.po
ADDED
@@ -0,0 +1,305 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP VR\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-12-11 10:17+0000\n"
|
6 |
+
"PO-Revision-Date: 2019-12-13 09:48+0000\n"
|
7 |
+
"Last-Translator: devadmin <tipu@coderex.co>\n"
|
8 |
+
"Language-Team: Swedish\n"
|
9 |
+
"Language: sv-SE\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Loco https://localise.biz/\n"
|
15 |
+
"X-Loco-Version: 2.3.1; wp-5.2.5"
|
16 |
+
|
17 |
+
#: admin/partials/wpvr_license.php:28 admin/partials/wpvr_license.php:38
|
18 |
+
msgid "Activate License"
|
19 |
+
msgstr "Aktivera licens"
|
20 |
+
|
21 |
+
#: admin/partials/wpvr_documentation.php:53
|
22 |
+
msgid ""
|
23 |
+
"Before You start, you can check our Documentation to get familiar with WP VR "
|
24 |
+
"- 360 Panorama and virtual tour creator for WordPress."
|
25 |
+
msgstr ""
|
26 |
+
"Innan du börjar kan du kontrollera vår dokumentation för att bekanta dig med "
|
27 |
+
"WP VR - 360 Panorama och virtuell turneringsskapare för WordPress."
|
28 |
+
|
29 |
+
#: admin/partials/wpvr_documentation.php:73
|
30 |
+
msgid ""
|
31 |
+
"Can't find solution on with our documentation? Just Post a ticket on Support "
|
32 |
+
"forum. We are to solve your issue."
|
33 |
+
msgstr ""
|
34 |
+
"Kan du inte hitta lösningen med vår dokumentation? Lägg bara en biljett på "
|
35 |
+
"supportforum. Vi ska lösa ditt problem."
|
36 |
+
|
37 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:29
|
38 |
+
msgid "Check how to use: "
|
39 |
+
msgstr "Kontrollera hur du använder:"
|
40 |
+
|
41 |
+
#: admin/partials/wpvr_documentation.php:166
|
42 |
+
msgid "Company logo"
|
43 |
+
msgstr "Företagslogotyp"
|
44 |
+
|
45 |
+
#: admin/partials/wpvr_documentation.php:153
|
46 |
+
msgid "Compass Switch"
|
47 |
+
msgstr "Kompassomkopplare"
|
48 |
+
|
49 |
+
#: admin/partials/wpvr_documentation.php:164
|
50 |
+
msgid "Custom control buttons"
|
51 |
+
msgstr "Anpassade kontrollknappar"
|
52 |
+
|
53 |
+
#: admin/partials/wpvr_documentation.php:163
|
54 |
+
msgid "Custom scene gallery"
|
55 |
+
msgstr "Anpassad scengalleri"
|
56 |
+
|
57 |
+
#: admin/partials/wpvr_documentation.php:156
|
58 |
+
msgid "Customize each scene's default face on load"
|
59 |
+
msgstr "Anpassa varje scens standardytan vid belastning"
|
60 |
+
|
61 |
+
#: admin/partials/wpvr_documentation.php:151
|
62 |
+
msgid "Customized hotspot icon"
|
63 |
+
msgstr "Anpassad hotspot-ikon"
|
64 |
+
|
65 |
+
#: admin/partials/wpvr_license.php:34
|
66 |
+
msgid "Deactivate License"
|
67 |
+
msgstr "Inaktivera licens"
|
68 |
+
|
69 |
+
#: admin/partials/wpvr_documentation.php:154
|
70 |
+
msgid "Default zoom level"
|
71 |
+
msgstr "Standard zoomnivå"
|
72 |
+
|
73 |
+
#: admin/partials/wpvr_documentation.php:178
|
74 |
+
msgid ""
|
75 |
+
"Do not close or refresh the page during import process. It may take few "
|
76 |
+
"minutes."
|
77 |
+
msgstr ""
|
78 |
+
"Stäng inte eller uppdatera sidan under importprocessen. Det kan ta några "
|
79 |
+
"minuter."
|
80 |
+
|
81 |
+
#: admin/partials/wpvr_documentation.php:47
|
82 |
+
msgid "Documentation"
|
83 |
+
msgstr "Dokumentation"
|
84 |
+
|
85 |
+
#: admin/partials/wpvr_documentation.php:161
|
86 |
+
msgid "Duplicate tour support"
|
87 |
+
msgstr "Duplicera turnestöd"
|
88 |
+
|
89 |
+
#: admin/partials/wpvr_documentation.php:152
|
90 |
+
msgid "Dynamic Icon background color on hotspot"
|
91 |
+
msgstr "Dynamisk ikonbakgrundsfärg på hotspot"
|
92 |
+
|
93 |
+
#: admin/partials/wpvr_license.php:22
|
94 |
+
msgid "Enter your license key, save changes and activate."
|
95 |
+
msgstr "Ange din licensnyckel, spara ändringar och aktivera."
|
96 |
+
|
97 |
+
#: admin/partials/wpvr_documentation.php:162
|
98 |
+
msgid "File import & export system"
|
99 |
+
msgstr "File import & export system"
|
100 |
+
|
101 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:24
|
102 |
+
msgid "For classic editor:"
|
103 |
+
msgstr "För klassisk redaktör:"
|
104 |
+
|
105 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:27
|
106 |
+
msgid "For gutenberg:"
|
107 |
+
msgstr "För gutenberg:"
|
108 |
+
|
109 |
+
#: admin/partials/wpvr_documentation.php:23
|
110 |
+
msgid "General"
|
111 |
+
msgstr "Allmän"
|
112 |
+
|
113 |
+
#: admin/partials/wpvr_documentation.php:169
|
114 |
+
msgid "Get Premium Version"
|
115 |
+
msgstr "Skaffa premiumversion"
|
116 |
+
|
117 |
+
#: admin/partials/wpvr_documentation.php:25
|
118 |
+
msgid "Go Premium"
|
119 |
+
msgstr "Go Premium"
|
120 |
+
|
121 |
+
#: admin/partials/wpvr_documentation.php:165
|
122 |
+
msgid "Google street view embed"
|
123 |
+
msgstr "Inbäddning av Google Street View"
|
124 |
+
|
125 |
+
#: admin/partials/wpvr_documentation.php:160
|
126 |
+
msgid "Gyroscope support"
|
127 |
+
msgstr "Gyroskopstöd"
|
128 |
+
|
129 |
+
#: elementor/elements/Wpvr-widget.php:133
|
130 |
+
msgid "Height:"
|
131 |
+
msgstr "Höjd:"
|
132 |
+
|
133 |
+
#: admin/partials/wpvr_documentation.php:159
|
134 |
+
msgid "Hotspot based scene face support"
|
135 |
+
msgstr "Hotspot-baserad scen ansiktsstöd"
|
136 |
+
|
137 |
+
#. Author URI of the plugin
|
138 |
+
msgid "http://rextheme.com/"
|
139 |
+
msgstr "http://rextheme.com/"
|
140 |
+
|
141 |
+
#. URI of the plugin
|
142 |
+
msgid "https://rextheme.com/wpvr/"
|
143 |
+
msgstr "https://rextheme.com/wpvr/"
|
144 |
+
|
145 |
+
#: elementor/elements/Wpvr-widget.php:113
|
146 |
+
msgid "ID:"
|
147 |
+
msgstr "ID:"
|
148 |
+
|
149 |
+
#: admin/partials/wpvr_documentation.php:29
|
150 |
+
msgid "Import"
|
151 |
+
msgstr "Importera"
|
152 |
+
|
153 |
+
#: admin/partials/wpvr_documentation.php:177
|
154 |
+
msgid "Import tour file: "
|
155 |
+
msgstr "Importera turnéfil:"
|
156 |
+
|
157 |
+
#: admin/partials/wpvr_license.php:18
|
158 |
+
msgid "License Key"
|
159 |
+
msgstr "Licensnyckel"
|
160 |
+
|
161 |
+
#: admin/partials/wpvr_documentation.php:105
|
162 |
+
msgid "Make WPVR Popular"
|
163 |
+
msgstr "Gör WPVR populär"
|
164 |
+
|
165 |
+
#: admin/partials/wpvr_documentation.php:155
|
166 |
+
msgid "Maximum and minimum zoom range"
|
167 |
+
msgstr "Maximalt och minimum zoomintervall"
|
168 |
+
|
169 |
+
#: admin/partials/wpvr_documentation.php:167
|
170 |
+
msgid "Personalized support on both support forum and our support e-mail."
|
171 |
+
msgstr "Personligt stöd på både supportforum och vårt supportmail."
|
172 |
+
|
173 |
+
#: admin/partials/wpvr_documentation.php:77
|
174 |
+
msgid "Post a Ticket"
|
175 |
+
msgstr "Lägg upp en biljett"
|
176 |
+
|
177 |
+
#: elementor/elements/Wpvr-widget.php:136
|
178 |
+
msgid "Put value in (px)"
|
179 |
+
msgstr "Sätt värde i (px)"
|
180 |
+
|
181 |
+
#: elementor/elements/Wpvr-widget.php:143
|
182 |
+
msgid "Radius:"
|
183 |
+
msgstr "Radie:"
|
184 |
+
|
185 |
+
#: admin/partials/wpvr_documentation.php:115
|
186 |
+
msgid "Rate Us! "
|
187 |
+
msgstr "Gradera oss!"
|
188 |
+
|
189 |
+
#. Author of the plugin
|
190 |
+
msgid "Rextheme"
|
191 |
+
msgstr "Rextheme"
|
192 |
+
|
193 |
+
#: admin/partials/wpvr_documentation.php:157
|
194 |
+
msgid "Scene grab control and custom boundary for each scene"
|
195 |
+
msgstr "Scengreppkontroll och anpassad gräns för varje scen"
|
196 |
+
|
197 |
+
#: admin/partials/wpvr_documentation.php:158
|
198 |
+
msgid "Scene title and author tag support"
|
199 |
+
msgstr "Stöd för scentitel och författarmärke"
|
200 |
+
|
201 |
+
#: admin/partials/wpvr_documentation.php:125
|
202 |
+
msgid "Share On"
|
203 |
+
msgstr "Dela på"
|
204 |
+
|
205 |
+
#: admin/partials/wpvr_documentation.php:130
|
206 |
+
msgid "Share on Facebook"
|
207 |
+
msgstr "Dela på Facebook"
|
208 |
+
|
209 |
+
#: admin/partials/wpvr_documentation.php:132
|
210 |
+
msgid "Share on Google+"
|
211 |
+
msgstr "Dela på Google+"
|
212 |
+
|
213 |
+
#: admin/partials/wpvr_documentation.php:133
|
214 |
+
msgid "Share on LinkedIn"
|
215 |
+
msgstr "Dela på LinkedIn"
|
216 |
+
|
217 |
+
#: admin/partials/wpvr_documentation.php:131
|
218 |
+
msgid "Share on Twitter"
|
219 |
+
msgstr "Dela på Twitter"
|
220 |
+
|
221 |
+
#: admin/partials/wpvr_documentation.php:86
|
222 |
+
msgid "Share Your Thoughts"
|
223 |
+
msgstr "Dela dina tankar"
|
224 |
+
|
225 |
+
#: admin/partials/wpvr_documentation.php:96
|
226 |
+
msgid "Suggest"
|
227 |
+
msgstr "Föreslå"
|
228 |
+
|
229 |
+
#: admin/partials/wpvr_documentation.php:67
|
230 |
+
msgid "Support"
|
231 |
+
msgstr "Stöd"
|
232 |
+
|
233 |
+
#: admin/partials/wpvr-meta-box-shortcode-display.php:25
|
234 |
+
msgid ""
|
235 |
+
"To use this Wpvr tour in your posts or pages use the following shortcode:"
|
236 |
+
msgstr ""
|
237 |
+
"För att använda denna WPVR-turné i dina inlägg eller sidor använder du "
|
238 |
+
"följande kortkod:"
|
239 |
+
|
240 |
+
#: admin/partials/wpvr_documentation.php:150
|
241 |
+
msgid "Unlimited hotspots"
|
242 |
+
msgstr "Obegränsade hotspots"
|
243 |
+
|
244 |
+
#: admin/partials/wpvr_documentation.php:149
|
245 |
+
msgid "Unlimited scenes"
|
246 |
+
msgstr "Obegränsade scener"
|
247 |
+
|
248 |
+
#: admin/partials/wpvr_documentation.php:204
|
249 |
+
msgid "Upgrade to Pro"
|
250 |
+
msgstr "Uppgradera till PRO"
|
251 |
+
|
252 |
+
#: wpvr.php:810
|
253 |
+
msgid "Upgrade to pro"
|
254 |
+
msgstr "Uppgradera till PRO"
|
255 |
+
|
256 |
+
#: admin/partials/wpvr_documentation.php:24
|
257 |
+
msgid "Video Tutorials"
|
258 |
+
msgstr "Videohandledning"
|
259 |
+
|
260 |
+
#: admin/partials/wpvr_documentation.php:57
|
261 |
+
msgid "View Documentation"
|
262 |
+
msgstr "Visa dokumentation"
|
263 |
+
|
264 |
+
#: admin/partials/wpvr_documentation.php:147
|
265 |
+
msgid "Why upgrade to Premium Version?"
|
266 |
+
msgstr "Varför uppgradera till premiumversion?"
|
267 |
+
|
268 |
+
#: elementor/elements/Wpvr-widget.php:123
|
269 |
+
msgid "Width:"
|
270 |
+
msgstr "Bredd:"
|
271 |
+
|
272 |
+
#. Name of the plugin
|
273 |
+
msgid "WP VR"
|
274 |
+
msgstr "WP VR"
|
275 |
+
|
276 |
+
#. Description of the plugin
|
277 |
+
msgid ""
|
278 |
+
"WP VR - 360 Panorama and virtual tour creator for WordPress is a customized "
|
279 |
+
"panaroma & virtual builder tool for WordPress Website."
|
280 |
+
msgstr ""
|
281 |
+
"WP VR - 360 Panorama och virtuell turneringsskapare för WordPress är ett "
|
282 |
+
"anpassat panorama & virtuellt byggareverktyg för WordPress webbplats."
|
283 |
+
|
284 |
+
#: elementor/elements/Wpvr-widget.php:43
|
285 |
+
msgid "Wpvr"
|
286 |
+
msgstr "WPVR"
|
287 |
+
|
288 |
+
#: elementor/elements/Wpvr-widget.php:105
|
289 |
+
msgid "Wpvr Setup"
|
290 |
+
msgstr "WPVR-inställning"
|
291 |
+
|
292 |
+
#: admin/partials/wpvr_documentation.php:111
|
293 |
+
msgid ""
|
294 |
+
"Your rating and feedback matters to us. If you are happy with WP VR - 360 "
|
295 |
+
"Panorama and virtual tour creator for WordPress give us a rating."
|
296 |
+
msgstr ""
|
297 |
+
"Ditt betyg och feedback är viktigt för oss. Om du är nöjd med WP VR - 360 "
|
298 |
+
"Panorama och en virtuell turnéskapare för WordPress ge oss ett betyg."
|
299 |
+
|
300 |
+
#: admin/partials/wpvr_documentation.php:92
|
301 |
+
msgid ""
|
302 |
+
"Your suggestions are valubale to us. It can help to make wpvr even better."
|
303 |
+
msgstr ""
|
304 |
+
"Dina förslag är värdefulla för oss. Det kan hjälpa till att göra wpvr ännu "
|
305 |
+
"bättre."
|
public/class-wpvr-public.php
CHANGED
@@ -291,10 +291,26 @@ class Wpvr_Public {
|
|
291 |
$scene_ititle = sanitize_text_field($panoscenes["scene-ititle"]);
|
292 |
}
|
293 |
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
|
299 |
$default_scene_pitch = null;
|
300 |
if (isset($panoscenes["scene-pitch"])) {
|
@@ -414,7 +430,7 @@ class Wpvr_Public {
|
|
414 |
}
|
415 |
|
416 |
$scene_info = array();
|
417 |
-
$scene_info = array("type"=>$panoscenes["scene-type"],"panorama"=>$panoscenes["scene-attachment-url"],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author,"hotSpots"=>$hotspots);
|
418 |
|
419 |
if (isset($panoscenes["ptyscene"])) {
|
420 |
if ($panoscenes["ptyscene"] == "off") {
|
@@ -430,6 +446,18 @@ class Wpvr_Public {
|
|
430 |
unset($scene_info['author']);
|
431 |
}
|
432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
if (isset($panoscenes["cvgscene"])) {
|
434 |
if ($panoscenes["cvgscene"] == "off") {
|
435 |
unset($scene_info['maxPitch']);
|
291 |
$scene_ititle = sanitize_text_field($panoscenes["scene-ititle"]);
|
292 |
}
|
293 |
|
294 |
+
$scene_author = '';
|
295 |
+
if (isset($panoscenes["scene-author"])) {
|
296 |
+
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
297 |
+
}
|
298 |
+
|
299 |
+
$scene_vaov = 180;
|
300 |
+
if (isset($panoscenes["scene-vaov"])) {
|
301 |
+
$scene_vaov = (float)$panoscenes["scene-vaov"];
|
302 |
+
}
|
303 |
+
|
304 |
+
$scene_haov = 360;
|
305 |
+
if (isset($panoscenes["scene-haov"])) {
|
306 |
+
$scene_haov = (float)$panoscenes["scene-haov"];
|
307 |
+
}
|
308 |
+
|
309 |
+
|
310 |
+
$scene_vertical_offset = 0;
|
311 |
+
if (isset($panoscenes["scene-vertical-offset"])) {
|
312 |
+
$scene_vertical_offset = (float)$panoscenes["scene-vertical-offset"];
|
313 |
+
}
|
314 |
|
315 |
$default_scene_pitch = null;
|
316 |
if (isset($panoscenes["scene-pitch"])) {
|
430 |
}
|
431 |
|
432 |
$scene_info = array();
|
433 |
+
$scene_info = array("type"=>$panoscenes["scene-type"],"panorama"=>$panoscenes["scene-attachment-url"],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author, "vaov"=>$scene_vaov, "haov"=>$scene_haov, "vOffset"=>$scene_vertical_offset, "hotSpots"=>$hotspots);
|
434 |
|
435 |
if (isset($panoscenes["ptyscene"])) {
|
436 |
if ($panoscenes["ptyscene"] == "off") {
|
446 |
unset($scene_info['author']);
|
447 |
}
|
448 |
|
449 |
+
if (empty($scene_vaov)) {
|
450 |
+
unset($scene_info['vaov']);
|
451 |
+
}
|
452 |
+
|
453 |
+
if (empty($scene_haov)) {
|
454 |
+
unset($scene_info['haov']);
|
455 |
+
}
|
456 |
+
|
457 |
+
if (empty($scene_vertical_offset)) {
|
458 |
+
unset($scene_info['vOffset']);
|
459 |
+
}
|
460 |
+
|
461 |
if (isset($panoscenes["cvgscene"])) {
|
462 |
if ($panoscenes["cvgscene"] == "off") {
|
463 |
unset($scene_info['maxPitch']);
|
wpvr.php
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
* Plugin Name: WP VR
|
17 |
* Plugin URI: https://rextheme.com/wpvr/
|
18 |
* Description: WP VR - 360 Panorama and virtual tour creator for WordPress is a customized panaroma & virtual builder tool for WordPress Website.
|
19 |
-
* Version: 3.
|
20 |
* Author: Rextheme
|
21 |
* Author URI: http://rextheme.com/
|
22 |
* License: GPL-2.0+
|
@@ -324,6 +324,22 @@ function wpvr_block_render( $attributes ) {
|
|
324 |
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
325 |
}
|
326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
$default_scene_pitch = null;
|
328 |
if (isset($panoscenes["scene-pitch"])) {
|
329 |
$default_scene_pitch = (float)$panoscenes["scene-pitch"];
|
@@ -443,7 +459,7 @@ function wpvr_block_render( $attributes ) {
|
|
443 |
}
|
444 |
|
445 |
$scene_info = array();
|
446 |
-
$scene_info = array('type'=>$panoscenes['scene-type'],'panorama'=>$panoscenes['scene-attachment-url'],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author,'hotSpots'=>$hotspots);
|
447 |
|
448 |
if (isset($panoscenes["ptyscene"])) {
|
449 |
if ($panoscenes["ptyscene"] == "off") {
|
@@ -458,6 +474,18 @@ function wpvr_block_render( $attributes ) {
|
|
458 |
unset($scene_info['author']);
|
459 |
}
|
460 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
if (isset($panoscenes["cvgscene"])) {
|
462 |
if ($panoscenes["cvgscene"] == "off") {
|
463 |
unset($scene_info['maxPitch']);
|
16 |
* Plugin Name: WP VR
|
17 |
* Plugin URI: https://rextheme.com/wpvr/
|
18 |
* Description: WP VR - 360 Panorama and virtual tour creator for WordPress is a customized panaroma & virtual builder tool for WordPress Website.
|
19 |
+
* Version: 3.7.0
|
20 |
* Author: Rextheme
|
21 |
* Author URI: http://rextheme.com/
|
22 |
* License: GPL-2.0+
|
324 |
$scene_author = sanitize_text_field($panoscenes["scene-author"]);
|
325 |
}
|
326 |
|
327 |
+
$scene_vaov = 180;
|
328 |
+
if (isset($panoscenes["scene-vaov"])) {
|
329 |
+
$scene_vaov = (float)$panoscenes["scene-vaov"];
|
330 |
+
}
|
331 |
+
|
332 |
+
$scene_haov = 360;
|
333 |
+
if (isset($panoscenes["scene-haov"])) {
|
334 |
+
$scene_haov = (float)$panoscenes["scene-haov"];
|
335 |
+
}
|
336 |
+
|
337 |
+
|
338 |
+
$scene_vertical_offset = 0;
|
339 |
+
if (isset($panoscenes["scene-vertical-offset"])) {
|
340 |
+
$scene_vertical_offset = (float)$panoscenes["scene-vertical-offset"];
|
341 |
+
}
|
342 |
+
|
343 |
$default_scene_pitch = null;
|
344 |
if (isset($panoscenes["scene-pitch"])) {
|
345 |
$default_scene_pitch = (float)$panoscenes["scene-pitch"];
|
459 |
}
|
460 |
|
461 |
$scene_info = array();
|
462 |
+
$scene_info = array('type'=>$panoscenes['scene-type'],'panorama'=>$panoscenes['scene-attachment-url'],"pitch"=>$default_scene_pitch,"maxPitch"=>$scene_max_pitch,"minPitch"=>$scene_min_pitch,"maxYaw"=>$scene_max_yaw,"minYaw"=>$scene_min_yaw,"yaw"=>$default_scene_yaw,"hfov"=>$default_zoom,"maxHfov"=>$max_zoom,"minHfov"=>$min_zoom,"title"=>$scene_ititle,"author"=>$scene_author, "vaov"=>$scene_vaov, "haov"=>$scene_haov, "vOffset"=>$scene_vertical_offset, 'hotSpots'=>$hotspots);
|
463 |
|
464 |
if (isset($panoscenes["ptyscene"])) {
|
465 |
if ($panoscenes["ptyscene"] == "off") {
|
474 |
unset($scene_info['author']);
|
475 |
}
|
476 |
|
477 |
+
if (empty($scene_vaov)) {
|
478 |
+
unset($scene_info['vaov']);
|
479 |
+
}
|
480 |
+
|
481 |
+
if (empty($scene_haov)) {
|
482 |
+
unset($scene_info['haov']);
|
483 |
+
}
|
484 |
+
|
485 |
+
if (empty($scene_vertical_offset)) {
|
486 |
+
unset($scene_info['vOffset']);
|
487 |
+
}
|
488 |
+
|
489 |
if (isset($panoscenes["cvgscene"])) {
|
490 |
if ($panoscenes["cvgscene"] == "off") {
|
491 |
unset($scene_info['maxPitch']);
|