Skip to content

Commit

Permalink
Merge pull request #4017 in SW/shopware from sw-16046/5.2/connect-on-…
Browse files Browse the repository at this point in the history
…board to 5.2

* commit '2c5fa68eb4c3bc0a2eb1b7fd25f27a40bfdfcd21':
  SW-16046 - Fit to corporate design
  • Loading branch information
Stephan Pohl authored and Stephan Pohl committed Aug 29, 2016
2 parents 3e1b0f2 + 2c5fa68 commit bd4ecf6
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,9 @@ expired_plugins/description_text = "Die kostenfreie Testversion folgender Plugin
connect_introduction/title = "Shopware Connect"
connect_introduction/headline = "Was ist eigentlich Shopware Connect?"
connect_introduction/description_text = "Shopware Connect verbindet Händler, Hersteller und Lieferanten und hilft ihnen, gemeinsam noch erfolgreicher zu werden. Dabei fußt Connect auf drei Säulen:<br><br>"
connect_introduction/pillar_one = "<b>Kostenlose Integration</b><br>Um die Kraft unserer Community zu bündeln und das Potenzial der Plattform auszuschöpfen, ist Connect bereits kostenlos in unsere Software integriert.<br><br>"
connect_introduction/pillar_two = "<b>Aufbau von Geschäftsbeziehungen</b><br>Mit der intuitiven Navigation können passende Geschäftspartner gefunden und Anfragen verschickt werden. So entstehen schnell und einfach Handelsbeziehungen.<br><br>"
connect_introduction/pillar_three = "<b>Erweiterung der Sortimente</b><br>Händler finden komplementäre oder ergänzende Produkte zu ihren Artikeln oder probieren ganz neue Produktsparten aus, um damit ihr Sortiment abzurunden."
connect_introduction/pillar_one = "<b>Kostenlos integriert</b><br>Um die Kraft unserer Community zu bündeln und das Potenzial der Plattform auszuschöpfen, ist Connect bereits kostenlos in unsere Software integriert.<br><br>"
connect_introduction/pillar_two = "<b>Kontakte knüpfen</b><br>Mit der intuitiven Navigation können passende Geschäftspartner gefunden und Anfragen verschickt werden. So entstehen schnell und einfach Handelsbeziehungen.<br><br>"
connect_introduction/pillar_three = "<b>Sortimente erweitern</b><br>Händler finden komplementäre oder ergänzende Produkte zu ihren Artikeln oder probieren ganz neue Produktsparten aus, um damit ihr Sortiment abzurunden."
connect_introduction/note = "Shopware Connect ist derzeit nur in Deutschland verfügbar."
connect_introduction/link = "<a href="https://de.shopware.com/connect" target="_blank">Informiere mich, sobald Connect auch in anderen Ländern verfügbar ist.</a>"
connect_introduction/install_information = "Das Plugin "Shopware Connect" kann jederzeit wieder über den Plugin Manager installiert werden."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Ext.define('Shopware.apps.PluginManager.controller.Main', {
listingWindow = me.getListingWindow();

listingWindow.setWidth(800);
listingWindow.setHeight(710);
listingWindow.setHeight(660);
listingWindow.setTitle('{s name="connect_introduction/title"}{/s}');
me.getNavigation().hide();
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,14 @@ Ext.define('Shopware.apps.PluginManager.view.list.ConnectIntroductionPage', {
padding: '20 0 0 0'
});

me.pillarOne = Ext.create('Ext.container.Container', {
html: '<div style="float: left;"><div class="shopware-connect-pillar-one"></div></div><div style="margin-left: 120px; padding-top: 20px;">{s name="connect_introduction/pillar_one"}{/s}</div><div style="clear: both;"></div><br>'
});

me.pillarTwo = Ext.create('Ext.container.Container', {
html: '<div style="float: left;"><div class="shopware-connect-pillar-two"></div></div><div style="margin-left: 120px; padding-top: 20px;">{s name="connect_introduction/pillar_two"}{/s}</div><div style="clear: both;"></div><br>'
});

me.pillarThree = Ext.create('Ext.container.Container', {
html: '<div style="float: left;"><div class="shopware-connect-pillar-three"></div></div><div style="margin-left: 120px; padding-top: 20px;">{s name="connect_introduction/pillar_three"}{/s}</div><div style="clear: both;"></div>'
me.pillarContainer = Ext.create('Ext.container.Container', {
cls: 'shopware-connect-pillar-ct',
html: Ext.String.format(
'[0][1][2]',
'<div class="shopware-connect-pillar"><div class="shopware-connect-pillar-one"></div><div class="shopware-connect-pillar-text">{s name="connect_introduction/pillar_one"}{/s}</div></div>',
'<div class="shopware-connect-pillar"><div class="shopware-connect-pillar-two"></div><div class="shopware-connect-pillar-text">{s name="connect_introduction/pillar_two"}{/s}</div></div>',
'<div class="shopware-connect-pillar shopware-connect-pillar-no-margin"><div class="shopware-connect-pillar-three"></div><div class="shopware-connect-pillar-text"">{s name="connect_introduction/pillar_three"}{/s}</div></div>'
)
});

me.noteText = Ext.create('Ext.container.Container', {
Expand All @@ -91,9 +89,7 @@ Ext.define('Shopware.apps.PluginManager.view.list.ConnectIntroductionPage', {
return [
me.headLineText,
me.descriptionText,
me.pillarOne,
me.pillarTwo,
me.pillarThree,
me.pillarContainer,
me.noteText,
me.linkText,
me.installInfoText
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit bd4ecf6

Please sign in to comment.