Version Notes
Fixed:
- Configuration missing option in package 1.0.1,
- New version notification now turns off after update,
- "Edit on SUN" button now links correctly.
Download this release
Release Info
Developer | Développeurs EnvoiMoinsCher.com |
Extension | Orbitvu_Sun |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf +0 -0
- app/code/community/Orbitvu/Sun/Block/Html5.php +51 -0
- app/code/community/Orbitvu/Sun/etc/config.xml +1 -1
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.0.php +0 -1
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.1.php +23 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.0-1.0.1.php +17 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.0-1.0.2.php +17 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.1-1.0.2.php +17 -0
- app/design/adminhtml/default/default/template/sun/orbitvu.phtml +7 -2
- app/locale/de_DE/Orbitvu_Sun.csv +0 -138
- app/locale/es_ES/Orbitvu_Sun.csv +0 -138
- app/locale/pl_PL/Orbitvu_Sun.csv +0 -138
- package.xml +9 -11
ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf
DELETED
Binary file
|
app/code/community/Orbitvu/Sun/Block/Html5.php
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Orbitvu
|
4 |
+
* @package Orbitvu_Sun
|
5 |
+
* @copyright Copyright (C) 2014 Orbitvu (http://www.orbitvu.com)
|
6 |
+
* @license http://www.orbitvu.com/plugins/license
|
7 |
+
* @version 1.0.0
|
8 |
+
*/
|
9 |
+
|
10 |
+
class Orbitvu_Sun_Block_Html5
|
11 |
+
{
|
12 |
+
|
13 |
+
/*
|
14 |
+
* Options list
|
15 |
+
*/
|
16 |
+
public function OrbitvuHtml5Options() {
|
17 |
+
return array(
|
18 |
+
'yes' => Mage::helper('adminhtml')->__('Always use HTML5'),
|
19 |
+
'no' => Mage::helper('adminhtml')->__('Use Flash if available, otherwise use HTML5')
|
20 |
+
);
|
21 |
+
}
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Options getter
|
25 |
+
*
|
26 |
+
* @return array
|
27 |
+
*/
|
28 |
+
public function toOptionArray() {
|
29 |
+
$array = $this->OrbitvuHtml5Options();
|
30 |
+
|
31 |
+
$ret = array();
|
32 |
+
foreach ($array as $key => $value) {
|
33 |
+
$ret[] = array(
|
34 |
+
'value' => $key,
|
35 |
+
'label' => $value
|
36 |
+
);
|
37 |
+
}
|
38 |
+
|
39 |
+
return $ret;
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Get options in "key-value" format
|
44 |
+
*
|
45 |
+
* @return array
|
46 |
+
*/
|
47 |
+
public function toArray() {
|
48 |
+
return $this->OrbitvuHtml5Options();
|
49 |
+
}
|
50 |
+
}
|
51 |
+
?>
|
app/code/community/Orbitvu/Sun/etc/config.xml
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
<config>
|
10 |
<modules>
|
11 |
<Orbitvu_Sun>
|
12 |
-
<version>1.0.
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
9 |
<config>
|
10 |
<modules>
|
11 |
<Orbitvu_Sun>
|
12 |
+
<version>1.0.2</version>
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.0.php
CHANGED
@@ -9,7 +9,6 @@
|
|
9 |
/*
|
10 |
* Start installation
|
11 |
*/
|
12 |
-
//$prefix = Mage::getConfig()->getTablePrefix();
|
13 |
|
14 |
$installer = $this;
|
15 |
$installer->startSetup();
|
9 |
/*
|
10 |
* Start installation
|
11 |
*/
|
|
|
12 |
|
13 |
$installer = $this;
|
14 |
$installer->startSetup();
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.1.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$inc = Mage::getBaseDir('app').'/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php';
|
17 |
+
include_once($inc);
|
18 |
+
|
19 |
+
$_Orbitvu = new OrbitvuAdmin(false);
|
20 |
+
$_Orbitvu->Install();
|
21 |
+
|
22 |
+
$installer->endSetup();
|
23 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.0-1.0.1.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$installer->endSetup();
|
17 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.0-1.0.2.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$installer->endSetup();
|
17 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.1-1.0.2.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$installer->endSetup();
|
17 |
+
?>
|
app/design/adminhtml/default/default/template/sun/orbitvu.phtml
CHANGED
@@ -226,7 +226,7 @@ if ($orbitvu_demo) {
|
|
226 |
*/
|
227 |
//-------------------------------------------------------------------------------------------------------
|
228 |
if ($up = $_Orbitvu->CheckForUpdates()) {
|
229 |
-
$_messages[] = array('notice', $this->__('Version').' '.$up->new_version.' '.$this->__('of Orbitvu extension is out!').' <button type="button" class="orbitvu-button scalable"><a href="http://orbitvu.
|
230 |
}
|
231 |
//-------------------------------------------------
|
232 |
|
@@ -783,7 +783,12 @@ else { ?>
|
|
783 |
|
784 |
<button type="button" class="orbitvu-button orbitvu-button-sync scalable" onclick="SynchronizeSunItems();"><span><span></span><?=$this->__('Synchronize with SUN')?></span></button>
|
785 |
|
786 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
787 |
<?php } ?> </div>
|
788 |
</div>
|
789 |
|
226 |
*/
|
227 |
//-------------------------------------------------------------------------------------------------------
|
228 |
if ($up = $_Orbitvu->CheckForUpdates()) {
|
229 |
+
$_messages[] = array('notice', $this->__('Version').' '.$up->new_version.' '.$this->__('of Orbitvu extension is out!').' <button type="button" class="orbitvu-button scalable"><a href="http://www.magentocommerce.com/magento-connect/orbitvu-sun-product-teleporting-image-gallery.html" target="_blank" style="color: white; text-decoration: none;"><span style="float: left; width: 16px !important; height: 16px !important; margin: 0 5px 0 0; padding: 0; background-image: url('.Mage::getBaseUrl('media').'orbitvu/white.png'.'); background-repeat: no-repeat; background-position: -64px -108px;"></span><span>'.$this->__('Upgrade now from').' '.$up->version.' '.$this->__('to').' '.$up->new_version.'</span></span></span></a></button>');
|
230 |
}
|
231 |
//-------------------------------------------------
|
232 |
|
783 |
|
784 |
<button type="button" class="orbitvu-button orbitvu-button-sync scalable" onclick="SynchronizeSunItems();"><span><span></span><?=$this->__('Synchronize with SUN')?></span></button>
|
785 |
|
786 |
+
<?php
|
787 |
+
$presentation_sun = $_Orbitvu->GetPresentationsList(array('id' => $presentations['orbitvu_id']));
|
788 |
+
$presentation_sun = $presentation_sun->results[0];
|
789 |
+
?>
|
790 |
+
|
791 |
+
<?php if ($orbitvu_connected && !$orbitvu_demo && isset($presentation_sun->edit_url)) { ?><button type="button" class="orbitvu-button orbitvu-button-edit scalable"><span><span></span><a href="<?=$presentation_sun->edit_url?>" target="_blank" style="color: white; text-decoration: none;"><?=$this->__('Edit on SUN')?></a></span></button> <?php } else { ?><button type="button" class="orbitvu-button-edit scalable disabled orbitvu-button-disabled" disabled="disabled"><span style="padding-left: 0; background: none;"><span></span><?=$this->__('Edit on SUN')?></span></button>
|
792 |
<?php } ?> </div>
|
793 |
</div>
|
794 |
|
app/locale/de_DE/Orbitvu_Sun.csv
DELETED
@@ -1,138 +0,0 @@
|
|
1 |
-
Orbitvu,Orbitvu
|
2 |
-
Error!,Error!
|
3 |
-
OK,OK
|
4 |
-
Your account was created!,Your account was created!
|
5 |
-
Now you have your own account on Orbitvu SUN.<br />We sent your an email with details.,Orbitvu SUN account has been created for you.<br />Shortly you\'ll receive confirmation email.
|
6 |
-
Your trial License Key was created and it\'s now in use.,Your trial License Key was created and it\'s now in use.
|
7 |
-
Update your key,Update your key
|
8 |
-
Contact Orbitvu,Contact Orbitvu
|
9 |
-
License Key is not valid,License Key is not valid
|
10 |
-
Your Orbitvu extension License Key is not valid. Please update your Key. Orbitvu extension functionality is now limited.,Your Orbitvu extension License Key is not valid. Please enter valid License Key. Orbitvu extension functionality is now limited.
|
11 |
-
Orbitvu Extension Wizard,Orbitvu SUN Product Teleporting Extension Wizard
|
12 |
-
"You need a <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use the extension.","You need a <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use the extension."
|
13 |
-
Choose an option:,Choose an option:
|
14 |
-
Enter License Key,Enter License Key
|
15 |
-
Link Orbitvu SUN presentations to all products matched with SKU or name.,Link Orbitvu SUN presentations to all products matched with SKU or name.
|
16 |
-
Link Orbitvu SUN presentations,Link Orbitvu SUN presentations
|
17 |
-
Do you really want to link Orbitvu SUN presentations to all products matched with SKU or name?,Do you really want to link Orbitvu SUN presentations to all products matched with SKU or name?
|
18 |
-
This operation will only be applied to not yet linked products.,This operation will only be applied to not yet linked products.
|
19 |
-
Orbitvu Configuration,Orbitvu Configuration
|
20 |
-
close,close
|
21 |
-
Try extension with DEMO account,Try extension with DEMO account
|
22 |
-
You get access to predefined set of 360° presentations.,You get access to predefined set of 360° presentations.
|
23 |
-
Register Orbitvu SUN FREE trial account,Register Orbitvu SUN FREE trial account
|
24 |
-
Create and customize your own presentations.,Create and customize your own presentations.
|
25 |
-
Enter License Key,Enter License Key
|
26 |
-
Connect to your Orbitvu SUN account.,Connect to your Orbitvu SUN account.
|
27 |
-
Creating new account is free. Just enter your e-mail address,Creating new account is free. Just enter your e-mail address
|
28 |
-
We will send you the password and generate trial License Key automaticaly.,We will send you the password and generate trial License Key automaticaly.
|
29 |
-
Linked,Linked
|
30 |
-
Orbittour,Orbittour
|
31 |
-
360°,360°
|
32 |
-
360°,360°
|
33 |
-
2D,2D
|
34 |
-
Unlinked,Unlinked
|
35 |
-
Not linked,Not linked
|
36 |
-
No delay,No delay
|
37 |
-
"0,1 second","0,1 second"
|
38 |
-
"0,2 second","0,2 second"
|
39 |
-
"0,3 second","0,3 second"
|
40 |
-
"0,4 second","0,4 second"
|
41 |
-
half a second,half a second
|
42 |
-
Always use HTML5,Always use HTML5
|
43 |
-
"Use Flash if available, otherwise use HTML5","Use Flash if available, otherwise use HTML5"
|
44 |
-
"You need <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use Orbitvu extension.","You need <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use Orbitvu extension."
|
45 |
-
Register,Register
|
46 |
-
trial account or,trial account or
|
47 |
-
use DEMO License Key,use DEMO License Key
|
48 |
-
Views to the right,Views to the right
|
49 |
-
Views at the bottom,Views at the bottom
|
50 |
-
No views,No views
|
51 |
-
Use Orbitvu SUN setting,Use Orbitvu SUN setting
|
52 |
-
"Enable, if remote SKU is empty","Enable, if remote SKU is empty"
|
53 |
-
Auto-rotation,Auto-rotation
|
54 |
-
Play button enables rotation,Play button enables rotation
|
55 |
-
No teaser (static presentation),No teaser (static presentation)
|
56 |
-
Quick single rotation (make sense only if 360 presentation is your first gallery item),Quick single rotation (makes sense only if 360 presentation is your first gallery item)
|
57 |
-
Slow single rotation (make sense only if 360 presentation is your first gallery item),Slow single rotation (makes sense only if 360 presentation is your first gallery item)
|
58 |
-
Use Orbitvu SUN setting,Use Orbitvu SUN setting
|
59 |
-
Orbitvu SUN Synchronization,Orbitvu SUN Synchronization
|
60 |
-
Orbitvu SUN connection settings,Orbitvu SUN connection settings
|
61 |
-
License Key,License Key
|
62 |
-
Orbitvu SUN integration,Orbitvu SUN integration
|
63 |
-
Link Orbitvu SUN presentations to products automatically,Link Orbitvu SUN presentations to products automatically
|
64 |
-
Matching (by SKU or name) Orbitvu SUN presentation will be linked to new products immediately. Once a day we will check for changes at Orbitvu SUN and link matching presentations to products.,Matching (by SKU or name) Orbitvu SUN presentation will be linked to new products immediately. Once a day we will check for changes at Orbitvu SUN and link matching presentations to products.
|
65 |
-
Update presentation SKU on Orbitvu SUN automatically,Automatically update presentation SKU on Orbitvu SUN
|
66 |
-
Automatically update empty Presentation's SKU on Orbitvu SUN server when such Presentation is linked to Product.,Automatically update empty Presentation's SKU on Orbitvu SUN server when such Presentation is linked to Product.
|
67 |
-
Select what type of presentation content will be visible in store by default,Select what type of presentation content will be visible in store by default
|
68 |
-
Product view - gallery behavior,Product view - gallery behavior
|
69 |
-
Mouse over mode,Mouse over mode
|
70 |
-
Change presentation items in gallery with just mouse over instead of click.,Change presentation items in gallery with just mouse over instead of click.
|
71 |
-
360° Presentation teaser,360° Presentation teaser
|
72 |
-
HTML5 or Flash mode,HTML5 or Flash mode
|
73 |
-
Orbittour views visibility,Orbittour views visibility
|
74 |
-
Product view - gallery layout (edit only if you know what are you doing!),Product view - gallery layout (edit only if you know what you are doing!)
|
75 |
-
Gallery width,Gallery width
|
76 |
-
Enter <strong>100%</strong> if you wan't to have responsive gallery layout (recommended),Enter <strong>100%</strong> if you want to have responsive gallery layout (recommended)
|
77 |
-
Gallery preview maximum width,Gallery maximum width
|
78 |
-
Recommended: Your layout proportion to gallery preview maximum height eg. <strong>600px</strong>,Recommended: Your layout proportion to gallery maximum height eg. <strong>600px</strong>
|
79 |
-
Gallery preview maximum height,Gallery maximum height
|
80 |
-
Recommended: <strong>300px</strong>,Recommended: <strong>300px</strong>
|
81 |
-
Gallery border color,Gallery border color
|
82 |
-
Recommended: <strong>#ccc</strong><br />Enter <strong>transparent</strong> if you don't want borders,Recommended: <strong>#ccc</strong><br />Enter <strong>transparent</strong> if you don't want borders
|
83 |
-
Internal zoom image width,Internal zoom image width
|
84 |
-
Recommended: <strong>1024px</strong>,Recommended: <strong>1024px</strong>
|
85 |
-
Internal zoom image height,Internal zoom image height
|
86 |
-
Recommended: <strong>768px</strong>,Recommended: <strong>768px</strong>
|
87 |
-
Thumbnail width,Thumbnail width
|
88 |
-
Recommended: <strong>75px</strong>,Recommended: <strong>75px</strong>
|
89 |
-
Thumbnail height,Thumbnail height
|
90 |
-
Recommended: <strong>50px</strong>,Recommended: <strong>50px</strong>
|
91 |
-
Thumbnail margin,Thumbnail margin
|
92 |
-
Recommended: <strong>3px</strong>,Recommended: <strong>3px</strong>
|
93 |
-
Button prev/next width,Button prev/next width
|
94 |
-
Recommended: <strong>30px</strong>,Recommended: <strong>30px</strong>
|
95 |
-
Button prev/next height,Button prev/next height
|
96 |
-
Recommended: <strong>53px</strong>,Recommended: <strong>53px</strong>
|
97 |
-
Button prev/next opacity,Button prev/next opacity
|
98 |
-
"1 = 100% (recommended), 0.5 = 50%, 0 = 0%","1 = 100% (recommended), 0.5 = 50%, 0 = 0%"
|
99 |
-
SKU,SKU
|
100 |
-
One of your presentations already has this SKU assigned. SKU need to be unique. Modify SKU on your SUN Server and try again.,This SKU is already in use by one of Orbitvu SUN presentations. Modify SKU on Orbitvu SUN and try again.
|
101 |
-
Your Orbitvu extension License Key is not valid. Please update your Key. Orbitvu extension functionality is now limited.,Your Orbitvu extension License Key is not valid. Please enter valid License Key. Orbitvu extension functionality is now limited.
|
102 |
-
Update your key,Update your License Key
|
103 |
-
Orbitvu extension is connected to DEMO account. Register Orbitvu SUN FREE trial account to create your own presentations.,Orbitvu extension uses DEMO account License Key. Register Orbitvu SUN FREE trial account to create your own presentations.
|
104 |
-
Get free trial,Get free trial
|
105 |
-
Version,Version
|
106 |
-
of Orbitvu extension is out!,of Orbitvu extension is out!
|
107 |
-
Upgrade now from,Upgrade now from
|
108 |
-
to,to
|
109 |
-
Your presentation has been unlinked. You can select a new one below.,Your presentation has been unlinked. You can select a new one below.
|
110 |
-
We used your product\'s SKU:,We used your product\'s SKU:
|
111 |
-
and name:,and name:
|
112 |
-
to match one of your SUN presentations.,to match one of your Orbitvu SUN presentations.
|
113 |
-
Link this presentation,Link this presentation
|
114 |
-
Select another one,Select another one
|
115 |
-
Confirm linking matched presentation,Confirm linking matched presentation
|
116 |
-
Select presentation from your Orbitvu SUN account to link with product,Select presentation from your Orbitvu SUN account to link with product
|
117 |
-
Page:,Page:
|
118 |
-
of,of
|
119 |
-
Per page:,Per page:
|
120 |
-
Total:,Total:
|
121 |
-
Date,Date
|
122 |
-
Name,Name
|
123 |
-
Enter presentation name or SKU...,Enter presentation name or SKU...
|
124 |
-
Search,Search
|
125 |
-
Reset,Reset
|
126 |
-
Do you really want to link this presentation with current product?,Do you really want to link this presentation with current product?
|
127 |
-
Orbitvu SUN presentation linked to current product,Orbitvu SUN presentation linked to current product
|
128 |
-
o you really want to update this presentation SKU on your Orbitvu SUN account?,Do you really want to update this presentation SKU on Orbitvu SUN?
|
129 |
-
Product\'s SKU:,Product\'s SKU:
|
130 |
-
. Presentation\'s SKU from Orbitvu SUN:,. Presentation\'s SKU from Orbitvu SUN:
|
131 |
-
"Click ""Update SKU on SUN"" button below to update your presentation\'s SKU on Orbitvu SUN with:","Click ""Update SKU on SUN"" button below to update your presentation\'s SKU on Orbitvu SUN with:"
|
132 |
-
We can\'t change your SUN Presentation SKU. One of your presentations already has this product SKU assigned. SKU need to be unique. Modify SKU on your SUN Server.,We can\'t change your Orbitvu SUN Presentation SKU because it is already in use by another presentation. SKU needs to be unique. Modify Presentation SKU on Orbitvu SUN Server to resolve the problem.
|
133 |
-
Do you really want to unlink this presentation?,Do you really want to unlink this presentation?
|
134 |
-
Unlink this presentation,Unlink this presentation
|
135 |
-
Edit on SUN,Edit on SUN
|
136 |
-
Drag & move item,Drag & move item
|
137 |
-
Hide item,Hide item
|
138 |
-
Show item,Show item
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/es_ES/Orbitvu_Sun.csv
DELETED
@@ -1,138 +0,0 @@
|
|
1 |
-
Orbitvu,Orbitvu
|
2 |
-
Error!,Error!
|
3 |
-
OK,OK
|
4 |
-
Your account was created!,Your account was created!
|
5 |
-
Now you have your own account on Orbitvu SUN.<br />We sent your an email with details.,Orbitvu SUN account has been created for you.<br />Shortly you\'ll receive confirmation email.
|
6 |
-
Your trial License Key was created and it\'s now in use.,Your trial License Key was created and it\'s now in use.
|
7 |
-
Update your key,Update your key
|
8 |
-
Contact Orbitvu,Contact Orbitvu
|
9 |
-
License Key is not valid,License Key is not valid
|
10 |
-
Your Orbitvu extension License Key is not valid. Please update your Key. Orbitvu extension functionality is now limited.,Your Orbitvu extension License Key is not valid. Please enter valid License Key. Orbitvu extension functionality is now limited.
|
11 |
-
Orbitvu Extension Wizard,Orbitvu SUN Product Teleporting Extension Wizard
|
12 |
-
"You need a <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use the extension.","You need a <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use the extension."
|
13 |
-
Choose an option:,Choose an option:
|
14 |
-
Enter License Key,Enter License Key
|
15 |
-
Link Orbitvu SUN presentations to all products matched with SKU or name.,Link Orbitvu SUN presentations to all products matched with SKU or name.
|
16 |
-
Link Orbitvu SUN presentations,Link Orbitvu SUN presentations
|
17 |
-
Do you really want to link Orbitvu SUN presentations to all products matched with SKU or name?,Do you really want to link Orbitvu SUN presentations to all products matched with SKU or name?
|
18 |
-
This operation will only be applied to not yet linked products.,This operation will only be applied to not yet linked products.
|
19 |
-
Orbitvu Configuration,Orbitvu Configuration
|
20 |
-
close,close
|
21 |
-
Try extension with DEMO account,Try extension with DEMO account
|
22 |
-
You get access to predefined set of 360° presentations.,You get access to predefined set of 360° presentations.
|
23 |
-
Register Orbitvu SUN FREE trial account,Register Orbitvu SUN FREE trial account
|
24 |
-
Create and customize your own presentations.,Create and customize your own presentations.
|
25 |
-
Enter License Key,Enter License Key
|
26 |
-
Connect to your Orbitvu SUN account.,Connect to your Orbitvu SUN account.
|
27 |
-
Creating new account is free. Just enter your e-mail address,Creating new account is free. Just enter your e-mail address
|
28 |
-
We will send you the password and generate trial License Key automaticaly.,We will send you the password and generate trial License Key automaticaly.
|
29 |
-
Linked,Linked
|
30 |
-
Orbittour,Orbittour
|
31 |
-
360°,360°
|
32 |
-
360°,360°
|
33 |
-
2D,2D
|
34 |
-
Unlinked,Unlinked
|
35 |
-
Not linked,Not linked
|
36 |
-
No delay,No delay
|
37 |
-
"0,1 second","0,1 second"
|
38 |
-
"0,2 second","0,2 second"
|
39 |
-
"0,3 second","0,3 second"
|
40 |
-
"0,4 second","0,4 second"
|
41 |
-
half a second,half a second
|
42 |
-
Always use HTML5,Always use HTML5
|
43 |
-
"Use Flash if available, otherwise use HTML5","Use Flash if available, otherwise use HTML5"
|
44 |
-
"You need <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use Orbitvu extension.","You need <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use Orbitvu extension."
|
45 |
-
Register,Register
|
46 |
-
trial account or,trial account or
|
47 |
-
use DEMO License Key,use DEMO License Key
|
48 |
-
Views to the right,Views to the right
|
49 |
-
Views at the bottom,Views at the bottom
|
50 |
-
No views,No views
|
51 |
-
Use Orbitvu SUN setting,Use Orbitvu SUN setting
|
52 |
-
"Enable, if remote SKU is empty","Enable, if remote SKU is empty"
|
53 |
-
Auto-rotation,Auto-rotation
|
54 |
-
Play button enables rotation,Play button enables rotation
|
55 |
-
No teaser (static presentation),No teaser (static presentation)
|
56 |
-
Quick single rotation (make sense only if 360 presentation is your first gallery item),Quick single rotation (makes sense only if 360 presentation is your first gallery item)
|
57 |
-
Slow single rotation (make sense only if 360 presentation is your first gallery item),Slow single rotation (makes sense only if 360 presentation is your first gallery item)
|
58 |
-
Use Orbitvu SUN setting,Use Orbitvu SUN setting
|
59 |
-
Orbitvu SUN Synchronization,Orbitvu SUN Synchronization
|
60 |
-
Orbitvu SUN connection settings,Orbitvu SUN connection settings
|
61 |
-
License Key,License Key
|
62 |
-
Orbitvu SUN integration,Orbitvu SUN integration
|
63 |
-
Link Orbitvu SUN presentations to products automatically,Link Orbitvu SUN presentations to products automatically
|
64 |
-
Matching (by SKU or name) Orbitvu SUN presentation will be linked to new products immediately. Once a day we will check for changes at Orbitvu SUN and link matching presentations to products.,Matching (by SKU or name) Orbitvu SUN presentation will be linked to new products immediately. Once a day we will check for changes at Orbitvu SUN and link matching presentations to products.
|
65 |
-
Update presentation SKU on Orbitvu SUN automatically,Automatically update presentation SKU on Orbitvu SUN
|
66 |
-
Automatically update empty Presentation's SKU on Orbitvu SUN server when such Presentation is linked to Product.,Automatically update empty Presentation's SKU on Orbitvu SUN server when such Presentation is linked to Product.
|
67 |
-
Select what type of presentation content will be visible in store by default,Select what type of presentation content will be visible in store by default
|
68 |
-
Product view - gallery behavior,Product view - gallery behavior
|
69 |
-
Mouse over mode,Mouse over mode
|
70 |
-
Change presentation items in gallery with just mouse over instead of click.,Change presentation items in gallery with just mouse over instead of click.
|
71 |
-
360° Presentation teaser,360° Presentation teaser
|
72 |
-
HTML5 or Flash mode,HTML5 or Flash mode
|
73 |
-
Orbittour views visibility,Orbittour views visibility
|
74 |
-
Product view - gallery layout (edit only if you know what are you doing!),Product view - gallery layout (edit only if you know what you are doing!)
|
75 |
-
Gallery width,Gallery width
|
76 |
-
Enter <strong>100%</strong> if you wan't to have responsive gallery layout (recommended),Enter <strong>100%</strong> if you want to have responsive gallery layout (recommended)
|
77 |
-
Gallery preview maximum width,Gallery maximum width
|
78 |
-
Recommended: Your layout proportion to gallery preview maximum height eg. <strong>600px</strong>,Recommended: Your layout proportion to gallery maximum height eg. <strong>600px</strong>
|
79 |
-
Gallery preview maximum height,Gallery maximum height
|
80 |
-
Recommended: <strong>300px</strong>,Recommended: <strong>300px</strong>
|
81 |
-
Gallery border color,Gallery border color
|
82 |
-
Recommended: <strong>#ccc</strong><br />Enter <strong>transparent</strong> if you don't want borders,Recommended: <strong>#ccc</strong><br />Enter <strong>transparent</strong> if you don't want borders
|
83 |
-
Internal zoom image width,Internal zoom image width
|
84 |
-
Recommended: <strong>1024px</strong>,Recommended: <strong>1024px</strong>
|
85 |
-
Internal zoom image height,Internal zoom image height
|
86 |
-
Recommended: <strong>768px</strong>,Recommended: <strong>768px</strong>
|
87 |
-
Thumbnail width,Thumbnail width
|
88 |
-
Recommended: <strong>75px</strong>,Recommended: <strong>75px</strong>
|
89 |
-
Thumbnail height,Thumbnail height
|
90 |
-
Recommended: <strong>50px</strong>,Recommended: <strong>50px</strong>
|
91 |
-
Thumbnail margin,Thumbnail margin
|
92 |
-
Recommended: <strong>3px</strong>,Recommended: <strong>3px</strong>
|
93 |
-
Button prev/next width,Button prev/next width
|
94 |
-
Recommended: <strong>30px</strong>,Recommended: <strong>30px</strong>
|
95 |
-
Button prev/next height,Button prev/next height
|
96 |
-
Recommended: <strong>53px</strong>,Recommended: <strong>53px</strong>
|
97 |
-
Button prev/next opacity,Button prev/next opacity
|
98 |
-
"1 = 100% (recommended), 0.5 = 50%, 0 = 0%","1 = 100% (recommended), 0.5 = 50%, 0 = 0%"
|
99 |
-
SKU,SKU
|
100 |
-
One of your presentations already has this SKU assigned. SKU need to be unique. Modify SKU on your SUN Server and try again.,This SKU is already in use by one of Orbitvu SUN presentations. Modify SKU on Orbitvu SUN and try again.
|
101 |
-
Your Orbitvu extension License Key is not valid. Please update your Key. Orbitvu extension functionality is now limited.,Your Orbitvu extension License Key is not valid. Please enter valid License Key. Orbitvu extension functionality is now limited.
|
102 |
-
Update your key,Update your License Key
|
103 |
-
Orbitvu extension is connected to DEMO account. Register Orbitvu SUN FREE trial account to create your own presentations.,Orbitvu extension uses DEMO account License Key. Register Orbitvu SUN FREE trial account to create your own presentations.
|
104 |
-
Get free trial,Get free trial
|
105 |
-
Version,Version
|
106 |
-
of Orbitvu extension is out!,of Orbitvu extension is out!
|
107 |
-
Upgrade now from,Upgrade now from
|
108 |
-
to,to
|
109 |
-
Your presentation has been unlinked. You can select a new one below.,Your presentation has been unlinked. You can select a new one below.
|
110 |
-
We used your product\'s SKU:,We used your product\'s SKU:
|
111 |
-
and name:,and name:
|
112 |
-
to match one of your SUN presentations.,to match one of your Orbitvu SUN presentations.
|
113 |
-
Link this presentation,Link this presentation
|
114 |
-
Select another one,Select another one
|
115 |
-
Confirm linking matched presentation,Confirm linking matched presentation
|
116 |
-
Select presentation from your Orbitvu SUN account to link with product,Select presentation from your Orbitvu SUN account to link with product
|
117 |
-
Page:,Page:
|
118 |
-
of,of
|
119 |
-
Per page:,Per page:
|
120 |
-
Total:,Total:
|
121 |
-
Date,Date
|
122 |
-
Name,Name
|
123 |
-
Enter presentation name or SKU...,Enter presentation name or SKU...
|
124 |
-
Search,Search
|
125 |
-
Reset,Reset
|
126 |
-
Do you really want to link this presentation with current product?,Do you really want to link this presentation with current product?
|
127 |
-
Orbitvu SUN presentation linked to current product,Orbitvu SUN presentation linked to current product
|
128 |
-
o you really want to update this presentation SKU on your Orbitvu SUN account?,Do you really want to update this presentation SKU on Orbitvu SUN?
|
129 |
-
Product\'s SKU:,Product\'s SKU:
|
130 |
-
. Presentation\'s SKU from Orbitvu SUN:,. Presentation\'s SKU from Orbitvu SUN:
|
131 |
-
"Click ""Update SKU on SUN"" button below to update your presentation\'s SKU on Orbitvu SUN with:","Click ""Update SKU on SUN"" button below to update your presentation\'s SKU on Orbitvu SUN with:"
|
132 |
-
We can\'t change your SUN Presentation SKU. One of your presentations already has this product SKU assigned. SKU need to be unique. Modify SKU on your SUN Server.,We can\'t change your Orbitvu SUN Presentation SKU because it is already in use by another presentation. SKU needs to be unique. Modify Presentation SKU on Orbitvu SUN Server to resolve the problem.
|
133 |
-
Do you really want to unlink this presentation?,Do you really want to unlink this presentation?
|
134 |
-
Unlink this presentation,Unlink this presentation
|
135 |
-
Edit on SUN,Edit on SUN
|
136 |
-
Drag & move item,Drag & move item
|
137 |
-
Hide item,Hide item
|
138 |
-
Show item,Show item
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/pl_PL/Orbitvu_Sun.csv
DELETED
@@ -1,138 +0,0 @@
|
|
1 |
-
Orbitvu,Orbitvu
|
2 |
-
Error!,Error!
|
3 |
-
OK,OK
|
4 |
-
Your account was created!,Your account was created!
|
5 |
-
Now you have your own account on Orbitvu SUN.<br />We sent your an email with details.,Orbitvu SUN account has been created for you.<br />Shortly you\'ll receive confirmation email.
|
6 |
-
Your trial License Key was created and it\'s now in use.,Your trial License Key was created and it\'s now in use.
|
7 |
-
Update your key,Update your key
|
8 |
-
Contact Orbitvu,Contact Orbitvu
|
9 |
-
License Key is not valid,License Key is not valid
|
10 |
-
Your Orbitvu extension License Key is not valid. Please update your Key. Orbitvu extension functionality is now limited.,Your Orbitvu extension License Key is not valid. Please enter valid License Key. Orbitvu extension functionality is now limited.
|
11 |
-
Orbitvu Extension Wizard,Orbitvu SUN Product Teleporting Extension Wizard
|
12 |
-
"You need a <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use the extension.","You need a <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use the extension."
|
13 |
-
Choose an option:,Choose an option:
|
14 |
-
Enter License Key,Enter License Key
|
15 |
-
Link Orbitvu SUN presentations to all products matched with SKU or name.,Link Orbitvu SUN presentations to all products matched with SKU or name.
|
16 |
-
Link Orbitvu SUN presentations,Link Orbitvu SUN presentations
|
17 |
-
Do you really want to link Orbitvu SUN presentations to all products matched with SKU or name?,Do you really want to link Orbitvu SUN presentations to all products matched with SKU or name?
|
18 |
-
This operation will only be applied to not yet linked products.,This operation will only be applied to not yet linked products.
|
19 |
-
Orbitvu Configuration,Orbitvu Configuration
|
20 |
-
close,close
|
21 |
-
Try extension with DEMO account,Try extension with DEMO account
|
22 |
-
You get access to predefined set of 360° presentations.,You get access to predefined set of 360° presentations.
|
23 |
-
Register Orbitvu SUN FREE trial account,Register Orbitvu SUN FREE trial account
|
24 |
-
Create and customize your own presentations.,Create and customize your own presentations.
|
25 |
-
Enter License Key,Enter License Key
|
26 |
-
Connect to your Orbitvu SUN account.,Connect to your Orbitvu SUN account.
|
27 |
-
Creating new account is free. Just enter your e-mail address,Creating new account is free. Just enter your e-mail address
|
28 |
-
We will send you the password and generate trial License Key automaticaly.,We will send you the password and generate trial License Key automaticaly.
|
29 |
-
Linked,Linked
|
30 |
-
Orbittour,Orbittour
|
31 |
-
360°,360°
|
32 |
-
360°,360°
|
33 |
-
2D,2D
|
34 |
-
Unlinked,Unlinked
|
35 |
-
Not linked,Not linked
|
36 |
-
No delay,No delay
|
37 |
-
"0,1 second","0,1 second"
|
38 |
-
"0,2 second","0,2 second"
|
39 |
-
"0,3 second","0,3 second"
|
40 |
-
"0,4 second","0,4 second"
|
41 |
-
half a second,half a second
|
42 |
-
Always use HTML5,Always use HTML5
|
43 |
-
"Use Flash if available, otherwise use HTML5","Use Flash if available, otherwise use HTML5"
|
44 |
-
"You need <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use Orbitvu extension.","You need <a href=""http://orbitvu.co"" target=""_blank"">Orbitvu SUN</a> account and License Key to use Orbitvu extension."
|
45 |
-
Register,Register
|
46 |
-
trial account or,trial account or
|
47 |
-
use DEMO License Key,use DEMO License Key
|
48 |
-
Views to the right,Views to the right
|
49 |
-
Views at the bottom,Views at the bottom
|
50 |
-
No views,No views
|
51 |
-
Use Orbitvu SUN setting,Use Orbitvu SUN setting
|
52 |
-
"Enable, if remote SKU is empty","Enable, if remote SKU is empty"
|
53 |
-
Auto-rotation,Auto-rotation
|
54 |
-
Play button enables rotation,Play button enables rotation
|
55 |
-
No teaser (static presentation),No teaser (static presentation)
|
56 |
-
Quick single rotation (make sense only if 360 presentation is your first gallery item),Quick single rotation (makes sense only if 360 presentation is your first gallery item)
|
57 |
-
Slow single rotation (make sense only if 360 presentation is your first gallery item),Slow single rotation (makes sense only if 360 presentation is your first gallery item)
|
58 |
-
Use Orbitvu SUN setting,Use Orbitvu SUN setting
|
59 |
-
Orbitvu SUN Synchronization,Orbitvu SUN Synchronization
|
60 |
-
Orbitvu SUN connection settings,Orbitvu SUN connection settings
|
61 |
-
License Key,License Key
|
62 |
-
Orbitvu SUN integration,Orbitvu SUN integration
|
63 |
-
Link Orbitvu SUN presentations to products automatically,Link Orbitvu SUN presentations to products automatically
|
64 |
-
Matching (by SKU or name) Orbitvu SUN presentation will be linked to new products immediately. Once a day we will check for changes at Orbitvu SUN and link matching presentations to products.,Matching (by SKU or name) Orbitvu SUN presentation will be linked to new products immediately. Once a day we will check for changes at Orbitvu SUN and link matching presentations to products.
|
65 |
-
Update presentation SKU on Orbitvu SUN automatically,Automatically update presentation SKU on Orbitvu SUN
|
66 |
-
Automatically update empty Presentation's SKU on Orbitvu SUN server when such Presentation is linked to Product.,Automatically update empty Presentation's SKU on Orbitvu SUN server when such Presentation is linked to Product.
|
67 |
-
Select what type of presentation content will be visible in store by default,Select what type of presentation content will be visible in store by default
|
68 |
-
Product view - gallery behavior,Product view - gallery behavior
|
69 |
-
Mouse over mode,Mouse over mode
|
70 |
-
Change presentation items in gallery with just mouse over instead of click.,Change presentation items in gallery with just mouse over instead of click.
|
71 |
-
360° Presentation teaser,360° Presentation teaser
|
72 |
-
HTML5 or Flash mode,HTML5 or Flash mode
|
73 |
-
Orbittour views visibility,Orbittour views visibility
|
74 |
-
Product view - gallery layout (edit only if you know what are you doing!),Product view - gallery layout (edit only if you know what you are doing!)
|
75 |
-
Gallery width,Gallery width
|
76 |
-
Enter <strong>100%</strong> if you wan't to have responsive gallery layout (recommended),Enter <strong>100%</strong> if you want to have responsive gallery layout (recommended)
|
77 |
-
Gallery preview maximum width,Gallery maximum width
|
78 |
-
Recommended: Your layout proportion to gallery preview maximum height eg. <strong>600px</strong>,Recommended: Your layout proportion to gallery maximum height eg. <strong>600px</strong>
|
79 |
-
Gallery preview maximum height,Gallery maximum height
|
80 |
-
Recommended: <strong>300px</strong>,Recommended: <strong>300px</strong>
|
81 |
-
Gallery border color,Gallery border color
|
82 |
-
Recommended: <strong>#ccc</strong><br />Enter <strong>transparent</strong> if you don't want borders,Recommended: <strong>#ccc</strong><br />Enter <strong>transparent</strong> if you don't want borders
|
83 |
-
Internal zoom image width,Internal zoom image width
|
84 |
-
Recommended: <strong>1024px</strong>,Recommended: <strong>1024px</strong>
|
85 |
-
Internal zoom image height,Internal zoom image height
|
86 |
-
Recommended: <strong>768px</strong>,Recommended: <strong>768px</strong>
|
87 |
-
Thumbnail width,Thumbnail width
|
88 |
-
Recommended: <strong>75px</strong>,Recommended: <strong>75px</strong>
|
89 |
-
Thumbnail height,Thumbnail height
|
90 |
-
Recommended: <strong>50px</strong>,Recommended: <strong>50px</strong>
|
91 |
-
Thumbnail margin,Thumbnail margin
|
92 |
-
Recommended: <strong>3px</strong>,Recommended: <strong>3px</strong>
|
93 |
-
Button prev/next width,Button prev/next width
|
94 |
-
Recommended: <strong>30px</strong>,Recommended: <strong>30px</strong>
|
95 |
-
Button prev/next height,Button prev/next height
|
96 |
-
Recommended: <strong>53px</strong>,Recommended: <strong>53px</strong>
|
97 |
-
Button prev/next opacity,Button prev/next opacity
|
98 |
-
"1 = 100% (recommended), 0.5 = 50%, 0 = 0%","1 = 100% (recommended), 0.5 = 50%, 0 = 0%"
|
99 |
-
SKU,SKU
|
100 |
-
One of your presentations already has this SKU assigned. SKU need to be unique. Modify SKU on your SUN Server and try again.,This SKU is already in use by one of Orbitvu SUN presentations. Modify SKU on Orbitvu SUN and try again.
|
101 |
-
Your Orbitvu extension License Key is not valid. Please update your Key. Orbitvu extension functionality is now limited.,Your Orbitvu extension License Key is not valid. Please enter valid License Key. Orbitvu extension functionality is now limited.
|
102 |
-
Update your key,Update your License Key
|
103 |
-
Orbitvu extension is connected to DEMO account. Register Orbitvu SUN FREE trial account to create your own presentations.,Orbitvu extension uses DEMO account License Key. Register Orbitvu SUN FREE trial account to create your own presentations.
|
104 |
-
Get free trial,Get free trial
|
105 |
-
Version,Version
|
106 |
-
of Orbitvu extension is out!,of Orbitvu extension is out!
|
107 |
-
Upgrade now from,Upgrade now from
|
108 |
-
to,to
|
109 |
-
Your presentation has been unlinked. You can select a new one below.,Your presentation has been unlinked. You can select a new one below.
|
110 |
-
We used your product\'s SKU:,We used your product\'s SKU:
|
111 |
-
and name:,and name:
|
112 |
-
to match one of your SUN presentations.,to match one of your Orbitvu SUN presentations.
|
113 |
-
Link this presentation,Link this presentation
|
114 |
-
Select another one,Select another one
|
115 |
-
Confirm linking matched presentation,Confirm linking matched presentation
|
116 |
-
Select presentation from your Orbitvu SUN account to link with product,Select presentation from your Orbitvu SUN account to link with product
|
117 |
-
Page:,Page:
|
118 |
-
of,of
|
119 |
-
Per page:,Per page:
|
120 |
-
Total:,Total:
|
121 |
-
Date,Date
|
122 |
-
Name,Name
|
123 |
-
Enter presentation name or SKU...,Enter presentation name or SKU...
|
124 |
-
Search,Search
|
125 |
-
Reset,Reset
|
126 |
-
Do you really want to link this presentation with current product?,Do you really want to link this presentation with current product?
|
127 |
-
Orbitvu SUN presentation linked to current product,Orbitvu SUN presentation linked to current product
|
128 |
-
o you really want to update this presentation SKU on your Orbitvu SUN account?,Do you really want to update this presentation SKU on Orbitvu SUN?
|
129 |
-
Product\'s SKU:,Product\'s SKU:
|
130 |
-
. Presentation\'s SKU from Orbitvu SUN:,. Presentation\'s SKU from Orbitvu SUN:
|
131 |
-
"Click ""Update SKU on SUN"" button below to update your presentation\'s SKU on Orbitvu SUN with:","Click ""Update SKU on SUN"" button below to update your presentation\'s SKU on Orbitvu SUN with:"
|
132 |
-
We can\'t change your SUN Presentation SKU. One of your presentations already has this product SKU assigned. SKU need to be unique. Modify SKU on your SUN Server.,We can\'t change your Orbitvu SUN Presentation SKU because it is already in use by another presentation. SKU needs to be unique. Modify Presentation SKU on Orbitvu SUN Server to resolve the problem.
|
133 |
-
Do you really want to unlink this presentation?,Do you really want to unlink this presentation?
|
134 |
-
Unlink this presentation,Unlink this presentation
|
135 |
-
Edit on SUN,Edit on SUN
|
136 |
-
Drag & move item,Drag & move item
|
137 |
-
Hide item,Hide item
|
138 |
-
Show item,Show item
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,25 +1,23 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automate and improve your customer's expierience with dynamic zoom, 360°/3D spins, product tours using ORBITVU imaging solution.</summary>
|
10 |
<description>Orbitvu SUN Product Teleporting extension will improve your store product experience with interactive product tours, 360°/3D image spins and dynamic zoom on desktop and mobile. It will automate and facilitate your imaging workflow as never before.
|
11 |

|
12 |
This extension is provided by ORBITVU – the global leader for automated imaging solutions. It is a part of ORBITVU end to end imaging solutions and requires ORBITVU SUN account to function (DEMO available without registration).</description>
|
13 |
-
<notes>
|
14 |
-
-
|
15 |
-
-
|
16 |
-
-
|
17 |
-

|
18 |
-
All tests passed. Version is stable.</notes>
|
19 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
20 |
-
<date>2014-08-
|
21 |
-
<time>
|
22 |
-
<contents><target name="magecommunity"><dir name="Orbitvu"><dir><dir name="Sun"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="0e87f8f32e40791c842e5fb70ebc3599"/><file name="Gridrenderer.php" hash="b86affaf935201508bb02e4b8975c988"/></dir></dir><dir name="Tabs"><file name="Tabid.php" hash="b90c1cac87797ebf579b7ebe694e53d3"/></dir><file name="Tabs.php" hash="7ff73221277099c0c1124061ccbe7132"/></dir><file name="Delay.php" hash="570f327292c20cfc3e2ec5faf0687116"/><file name="KeyComment.php" hash="3a832bb181f1e709d5cf4bba4f55338f"/><file name="Orbittour.php" hash="f9d6c22b7c37b58771119dc2af3f0b00"/><dir name="Product"><dir name="View"><file name="Media.php" hash="d6c5268510a19afcd3ef273634913373"/></dir></dir><file name="Syncsku.php" hash="dd57437599190a466d9ccf3ec8d47890"/><file name="Teaser.php" hash="f67f531671bcad679b433d7635236a35"/></dir><dir name="Model"><file name="Observer.php" hash="179b1722217f83e23c908c97e1c786ef"/><dir name="Resource"><file name="Setup.php" hash="2cfd8dccd322e056cb4816e697bd9efd"/><file name="Sun.php" hash="8322d1a43b6aee941dc297bf31253504"/></dir></dir><dir name="controllers"><file name="OrbitvuAdmin.php" hash="b4cd5fb862f69998f0c34b432a9d9140"/><file name="OrbitvuConnect.php" hash="bcab024255d32278eeee51d74d825b28"/><file name="OrbitvuDatabaseDriver.php" hash="a5b6ce6f9745d6b65d2bad253ec5f575"/><file name="OrbitvuDatabaseInterface.php" hash="5c2875ec7b3e04604e017112760fd3fd"/><file name="OrbitvuDebugger.php" hash="719168e8e40cecd69a0e0ef0a45978ad"/><file name="OrbitvuTests.php" hash="dde56bcf50d16cf7613a4e3ae4093a30"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a591f49aaf7da8e8d22f545f3904bb95"/><file name="config.xml" hash="
|
23 |
<compatible/>
|
24 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
25 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
+
<version>1.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automate and improve your customer's expierience with dynamic zoom, 360°/3D spins, product tours using ORBITVU imaging solution.</summary>
|
10 |
<description>Orbitvu SUN Product Teleporting extension will improve your store product experience with interactive product tours, 360°/3D image spins and dynamic zoom on desktop and mobile. It will automate and facilitate your imaging workflow as never before.
|
11 |

|
12 |
This extension is provided by ORBITVU – the global leader for automated imaging solutions. It is a part of ORBITVU end to end imaging solutions and requires ORBITVU SUN account to function (DEMO available without registration).</description>
|
13 |
+
<notes>Fixed:
|
14 |
+
- Configuration missing option in package 1.0.1,
|
15 |
+
- New version notification now turns off after update,
|
16 |
+
- "Edit on SUN" button now links correctly.</notes>
|
|
|
|
|
17 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
18 |
+
<date>2014-08-19</date>
|
19 |
+
<time>06:56:14</time>
|
20 |
+
<contents><target name="magecommunity"><dir name="Orbitvu"><dir><dir name="Sun"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="0e87f8f32e40791c842e5fb70ebc3599"/><file name="Gridrenderer.php" hash="b86affaf935201508bb02e4b8975c988"/></dir></dir><dir name="Tabs"><file name="Tabid.php" hash="b90c1cac87797ebf579b7ebe694e53d3"/></dir><file name="Tabs.php" hash="7ff73221277099c0c1124061ccbe7132"/></dir><file name="Delay.php" hash="570f327292c20cfc3e2ec5faf0687116"/><file name="Html5.php" hash="b7a6020751d85af690eed068a0f5eaf8"/><file name="KeyComment.php" hash="3a832bb181f1e709d5cf4bba4f55338f"/><file name="Orbittour.php" hash="f9d6c22b7c37b58771119dc2af3f0b00"/><dir name="Product"><dir name="View"><file name="Media.php" hash="d6c5268510a19afcd3ef273634913373"/></dir></dir><file name="Syncsku.php" hash="dd57437599190a466d9ccf3ec8d47890"/><file name="Teaser.php" hash="f67f531671bcad679b433d7635236a35"/></dir><dir name="Model"><file name="Observer.php" hash="179b1722217f83e23c908c97e1c786ef"/><dir name="Resource"><file name="Setup.php" hash="2cfd8dccd322e056cb4816e697bd9efd"/><file name="Sun.php" hash="8322d1a43b6aee941dc297bf31253504"/></dir></dir><dir name="controllers"><file name="OrbitvuAdmin.php" hash="b4cd5fb862f69998f0c34b432a9d9140"/><file name="OrbitvuConnect.php" hash="bcab024255d32278eeee51d74d825b28"/><file name="OrbitvuDatabaseDriver.php" hash="a5b6ce6f9745d6b65d2bad253ec5f575"/><file name="OrbitvuDatabaseInterface.php" hash="5c2875ec7b3e04604e017112760fd3fd"/><file name="OrbitvuDebugger.php" hash="719168e8e40cecd69a0e0ef0a45978ad"/><file name="OrbitvuTests.php" hash="dde56bcf50d16cf7613a4e3ae4093a30"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a591f49aaf7da8e8d22f545f3904bb95"/><file name="config.xml" hash="25cae5ac16967145eaa43f28d20b8c60"/><file name="local.xml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="system.xml" hash="0f72d5d05fb23362ccd869af21447e71"/><file name="translations.xml" hash="47ff4445ef63971e669c5f34cd2376fb"/></dir><dir name="sql"><dir name="sun_setup"><file name="mysql4-install-1.0.0.php" hash="59cda0e64aa6ad62bf9af90ef033ffe0"/><file name="mysql4-install-1.0.1.php" hash="59cda0e64aa6ad62bf9af90ef033ffe0"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="aecb76aad6bec961bbe742405af812ff"/><file name="mysql4-upgrade-1.0.0-1.0.2.php" hash="aecb76aad6bec961bbe742405af812ff"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="aecb76aad6bec961bbe742405af812ff"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="sun"><file name="orbitvu.phtml" hash="7c6bd0bc52d0eb848b058bc4c01d83af"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sun.xml" hash="08f04468f5e883345cad2e6f5f9c4666"/></dir><dir name="template"><dir name="orbitvu"><dir name="product"><dir name="view"><file name="media.phtml" hash="c0ab5b12d59e3249d03347c7baa069dd"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="orbitvu"><file name="black.png" hash="64dcb45b20e5e2e0cc07c62a843f8f68"/><file name="blue.png" hash="fa8b00e52ec0bf7cb9937b1d5789740c"/><file name="loader.gif" hash="875eec6b429c57e0eff9ba7c182072cd"/><file name="logo.png" hash="622ada057aadbe23af717431e85ef94f"/><file name="orbit.png" hash="c390d8598792d9cc86b19e9afef0ea4a"/><file name="placeholder.png" hash="43b6e81dc733e7d8fb279e54b5f39b3f"/><dir><dir name="thumbnails"><file name="index" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><file name="white.png" hash="ff7713f7b45a4b7a4b5d8304eb3c655c"/></dir></target><target name="mage"><dir name="."><file name="crossdomain.xml" hash="6960cde6dd98feb5406c6b185521b041"/><file name="ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf" hash=""/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Orbitvu_Sun.csv" hash=""/></dir><dir name="en_US"><file name="Orbitvu_Sun.csv" hash="7c5ea48271819e56b9253d2660012728"/></dir><dir name="es_ES"><file name="Orbitvu_Sun.csv" hash=""/></dir><dir name="pl_PL"><file name="Orbitvu_Sun.csv" hash=""/></dir></target><target name="mageetc"><dir name="modules"><file name="Orbitvu_Sun.xml" hash="76f32cd06e5fb1aa4eda72a34c010d99"/></dir></target></contents>
|
21 |
<compatible/>
|
22 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
23 |
</package>
|