WP VR – 360 Panorama and virtual tour creator for WordPress - Version 3.7.0

Version Description

  • Partial Panorama for pro version

=

Download this release

Release Info

Developer rextheme
Plugin Icon 128x128 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 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.6.0
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 @@