Rockforweb_Instocksubscribe - Version 1.0.0

Version Notes

Stable version

Download this release

Release Info

Developer rockforweb
Extension Rockforweb_Instocksubscribe
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

Files changed (140) hide show
  1. app/code/community/Rockforweb/Instocksubscribe/Block/Adminhtml/Instocksubscribe.php +31 -0
  2. app/code/community/Rockforweb/Instocksubscribe/Block/Adminhtml/Instocksubscribe/Grid.php +88 -0
  3. app/code/community/Rockforweb/Instocksubscribe/Block/Instocksubscribe.php +49 -0
  4. app/code/community/Rockforweb/Instocksubscribe/Helper/Data.php +24 -0
  5. app/code/community/Rockforweb/Instocksubscribe/Model/Instocksubscribe.php +80 -0
  6. app/code/community/Rockforweb/Instocksubscribe/Model/Mysql4/Instocksubscribe.php +26 -0
  7. app/code/community/Rockforweb/Instocksubscribe/Model/Mysql4/Instocksubscribe/Collection.php +27 -0
  8. app/code/community/Rockforweb/Instocksubscribe/Model/Observer.php +36 -0
  9. app/code/community/Rockforweb/Instocksubscribe/controllers/Adminhtml/InstocksubscribeController.php +72 -0
  10. app/code/community/Rockforweb/Instocksubscribe/controllers/IndexController.php +93 -0
  11. app/code/community/Rockforweb/Instocksubscribe/etc/adminhtml.xml +60 -0
  12. app/code/community/Rockforweb/Instocksubscribe/etc/config.xml +123 -0
  13. app/code/community/Rockforweb/Instocksubscribe/etc/system.xml +71 -0
  14. app/code/community/Rockforweb/Instocksubscribe/sql/instocksubscribe_setup/install-1.0.0.php +49 -0
  15. app/design/frontend/base/default/layout/instocksubscribe.xml +43 -0
  16. app/design/frontend/base/default/template/rockforweb/instocksubscribe/all_notifications.phtml +57 -0
  17. app/design/frontend/base/default/template/rockforweb/instocksubscribe/product_page_form.phtml +65 -0
  18. app/etc/modules/Rockforweb_Instocksubscribe.xml +30 -0
  19. app/locale/de_DE/Mage_AdminNotification.csv +31 -0
  20. app/locale/de_DE/Mage_Adminhtml.csv +1215 -0
  21. app/locale/de_DE/Mage_AmazonPayments.csv +101 -0
  22. app/locale/de_DE/Mage_Api.csv +18 -0
  23. app/locale/de_DE/Mage_Api2.csv +238 -0
  24. app/locale/de_DE/Mage_Authorizenet.csv +41 -0
  25. app/locale/de_DE/Mage_Backup.csv +55 -0
  26. app/locale/de_DE/Mage_Bundle.csv +71 -0
  27. app/locale/de_DE/Mage_Captcha.csv +23 -0
  28. app/locale/de_DE/Mage_Catalog.csv +848 -0
  29. app/locale/de_DE/Mage_CatalogInventory.csv +62 -0
  30. app/locale/de_DE/Mage_CatalogRule.csv +64 -0
  31. app/locale/de_DE/Mage_CatalogSearch.csv +49 -0
  32. app/locale/de_DE/Mage_Centinel.csv +33 -0
  33. app/locale/de_DE/Mage_Checkout.csv +360 -0
  34. app/locale/de_DE/Mage_Cms.csv +127 -0
  35. app/locale/de_DE/Mage_Compiler.csv +21 -0
  36. app/locale/de_DE/Mage_Connect.csv +58 -0
  37. app/locale/de_DE/Mage_Contacts.csv +19 -0
  38. app/locale/de_DE/Mage_Core.csv +394 -0
  39. app/locale/de_DE/Mage_Cron.csv +24 -0
  40. app/locale/de_DE/Mage_CurrencySymbol.csv +10 -0
  41. app/locale/de_DE/Mage_Customer.csv +470 -0
  42. app/locale/de_DE/Mage_Dataflow.csv +32 -0
  43. app/locale/de_DE/Mage_Directory.csv +49 -0
  44. app/locale/de_DE/Mage_Downloadable.csv +95 -0
  45. app/locale/de_DE/Mage_Eav.csv +124 -0
  46. app/locale/de_DE/Mage_GiftMessage.csv +38 -0
  47. app/locale/de_DE/Mage_GoogleAnalytics.csv +5 -0
  48. app/locale/de_DE/Mage_GoogleBase.csv +82 -0
  49. app/locale/de_DE/Mage_GoogleCheckout.csv +131 -0
  50. app/locale/de_DE/Mage_ImportExport.csv +93 -0
  51. app/locale/de_DE/Mage_Index.csv +47 -0
  52. app/locale/de_DE/Mage_Install.csv +125 -0
  53. app/locale/de_DE/Mage_Log.csv +9 -0
  54. app/locale/de_DE/Mage_Media.csv +4 -0
  55. app/locale/de_DE/Mage_Newsletter.csv +137 -0
  56. app/locale/de_DE/Mage_Oauth.csv +118 -0
  57. app/locale/de_DE/Mage_Page.csv +81 -0
  58. app/locale/de_DE/Mage_PageCache.csv +12 -0
  59. app/locale/de_DE/Mage_Paygate.csv +69 -0
  60. app/locale/de_DE/Mage_Payment.csv +142 -0
  61. app/locale/de_DE/Mage_Paypal.csv +623 -0
  62. app/locale/de_DE/Mage_PaypalUk.csv +2 -0
  63. app/locale/de_DE/Mage_Persistent.csv +74 -0
  64. app/locale/de_DE/Mage_Poll.csv +42 -0
  65. app/locale/de_DE/Mage_ProductAlert.csv +35 -0
  66. app/locale/de_DE/Mage_Rating.csv +29 -0
  67. app/locale/de_DE/Mage_Reports.csv +174 -0
  68. app/locale/de_DE/Mage_Review.csv +104 -0
  69. app/locale/de_DE/Mage_Rss.csv +56 -0
  70. app/locale/de_DE/Mage_Rule.csv +42 -0
  71. app/locale/de_DE/Mage_Sales.csv +882 -0
  72. app/locale/de_DE/Mage_SalesRule.csv +132 -0
  73. app/locale/de_DE/Mage_Sendfriend.csv +38 -0
  74. app/locale/de_DE/Mage_Shipping.csv +93 -0
  75. app/locale/de_DE/Mage_Sitemap.csv +46 -0
  76. app/locale/de_DE/Mage_Tag.csv +101 -0
  77. app/locale/de_DE/Mage_Tax.csv +163 -0
  78. app/locale/de_DE/Mage_Usa.csv +381 -0
  79. app/locale/de_DE/Mage_Weee.csv +25 -0
  80. app/locale/de_DE/Mage_Widget.csv +75 -0
  81. app/locale/de_DE/Mage_Wishlist.csv +100 -0
  82. app/locale/de_DE/Mage_XmlConnect.csv +1200 -0
  83. app/locale/de_DE/Phoenix_Moneybookers.csv +42 -0
  84. app/locale/de_DE/Rockforweb_Instocksubscribe.csv +8 -0
  85. app/locale/de_DE/Rockforweb_Instocksubscribe_Admin.csv +16 -0
  86. app/locale/de_DE/template/email/account_new.html +55 -0
  87. app/locale/de_DE/template/email/account_new_confirmation.html +50 -0
  88. app/locale/de_DE/template/email/account_new_confirmed.html +51 -0
  89. app/locale/de_DE/template/email/account_password_reset_confirmation.html +43 -0
  90. app/locale/de_DE/template/email/admin_password_new.html +43 -0
  91. app/locale/de_DE/template/email/admin_password_reset_confirmation.html +44 -0
  92. app/locale/de_DE/template/email/amazonpayments_asp_notification_error.html +12 -0
  93. app/locale/de_DE/template/email/contact_form.html +12 -0
  94. app/locale/de_DE/template/email/currency_update_warning.html +8 -0
  95. app/locale/de_DE/template/email/log_clean_warning.html +7 -0
  96. app/locale/de_DE/template/email/moneybookers_activateemail.html +6 -0
  97. app/locale/de_DE/template/email/newsletter_subscr_confirm.html +41 -0
  98. app/locale/de_DE/template/email/newsletter_subscr_success.html +2 -0
  99. app/locale/de_DE/template/email/newsletter_unsub_success.html +2 -0
  100. app/locale/de_DE/template/email/password_new.html +42 -0
  101. app/locale/de_DE/template/email/payment_failed.html +68 -0
  102. app/locale/de_DE/template/email/product_alert_cron_error.html +7 -0
  103. app/locale/de_DE/template/email/product_price_alert.html +8 -0
  104. app/locale/de_DE/template/email/product_share.html +13 -0
  105. app/locale/de_DE/template/email/product_stock_alert.html +8 -0
  106. app/locale/de_DE/template/email/sales/creditmemo_new.html +108 -0
  107. app/locale/de_DE/template/email/sales/creditmemo_new_guest.html +106 -0
  108. app/locale/de_DE/template/email/sales/creditmemo_update.html +52 -0
  109. app/locale/de_DE/template/email/sales/creditmemo_update_guest.html +51 -0
  110. app/locale/de_DE/template/email/sales/invoice_new.html +107 -0
  111. app/locale/de_DE/template/email/sales/invoice_new_guest.html +106 -0
  112. app/locale/de_DE/template/email/sales/invoice_update.html +52 -0
  113. app/locale/de_DE/template/email/sales/invoice_update_guest.html +49 -0
  114. app/locale/de_DE/template/email/sales/order_new.html +109 -0
  115. app/locale/de_DE/template/email/sales/order_new_guest.html +108 -0
  116. app/locale/de_DE/template/email/sales/order_update.html +52 -0
  117. app/locale/de_DE/template/email/sales/order_update_guest.html +50 -0
  118. app/locale/de_DE/template/email/sales/shipment_new.html +111 -0
  119. app/locale/de_DE/template/email/sales/shipment_new_guest.html +109 -0
  120. app/locale/de_DE/template/email/sales/shipment_update.html +52 -0
  121. app/locale/de_DE/template/email/sales/shipment_update_guest.html +50 -0
  122. app/locale/de_DE/template/email/sitemap_generate_warning.html +8 -0
  123. app/locale/de_DE/template/email/token.html +9 -0
  124. app/locale/de_DE/template/email/wishlist_share.html +43 -0
  125. app/locale/en_US/Mage_AdminNotification.csv +31 -0
  126. app/locale/en_US/Mage_Adminhtml.csv +1215 -0
  127. app/locale/en_US/Mage_AmazonPayments.csv +101 -0
  128. app/locale/en_US/Mage_Api.csv +18 -0
  129. app/locale/en_US/Mage_Api2.csv +238 -0
  130. app/locale/en_US/Mage_Authorizenet.csv +41 -0
  131. app/locale/en_US/Mage_Backup.csv +55 -0
  132. app/locale/en_US/Mage_Bundle.csv +71 -0
  133. app/locale/en_US/Mage_Captcha.csv +22 -0
  134. app/locale/en_US/Mage_Catalog.csv +840 -0
  135. app/locale/en_US/Mage_CatalogInventory.csv +59 -0
  136. app/locale/en_US/Mage_CatalogRule.csv +64 -0
  137. app/locale/en_US/Mage_CatalogSearch.csv +49 -0
  138. app/locale/en_US/Mage_Centinel.csv +33 -0
  139. app/locale/en_US/Mage_Checkout.csv +336 -0
  140. app/locale/en_US/Mage_Cms.csv +74 -0
app/code/community/Rockforweb/Instocksubscribe/Block/Adminhtml/Instocksubscribe.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Block_Adminhtml_Instocksubscribe extends Mage_Adminhtml_Block_Widget_Grid_Container
22
+ {
23
+ public function __construct()
24
+ {
25
+ $this->_blockGroup = 'instocksubscribe';
26
+ $this->_controller = 'adminhtml_instocksubscribe';
27
+ $this->_headerText = $this->__('In Stock Notifications');
28
+ parent::__construct();
29
+ $this->_removeButton('add');
30
+ }
31
+ }
app/code/community/Rockforweb/Instocksubscribe/Block/Adminhtml/Instocksubscribe/Grid.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Block_Adminhtml_Instocksubscribe_Grid extends Mage_Adminhtml_Block_Widget_Grid
22
+ {
23
+ public function __construct()
24
+ {
25
+ parent::__construct();
26
+ $this->setId('instocksubscribe_grid');
27
+ $this->setDefaultSort('id');
28
+ $this->setDefaultDir('DESC');
29
+ $this->setSaveParametersInSession(true);
30
+ $this->setUseAjax(true);
31
+ }
32
+
33
+ protected function _prepareCollection()
34
+ {
35
+ $collection = Mage::getModel('instocksubscribe/instocksubscribe')->getCollection();
36
+ $this->setCollection($collection);
37
+ return parent::_prepareCollection();
38
+ return $this;
39
+ }
40
+
41
+ protected function _prepareColumns()
42
+ {
43
+ $this->addColumn('customer_id', array(
44
+ 'header' => $this->__('Customer Id'),
45
+ 'index' => 'customer_id'
46
+ ));
47
+
48
+ $this->addColumn('sku', array(
49
+ 'header' => $this->__('Product SKU'),
50
+ 'index' => 'sku'
51
+ ));
52
+
53
+ $this->addColumn('email', array(
54
+ 'header' => $this->__('Customer Email'),
55
+ 'index' => 'email'
56
+ ));
57
+
58
+ $this->addColumn('date', array(
59
+ 'header' => $this->__('Date/Time'),
60
+ 'index' => 'date',
61
+ 'type' => 'date'
62
+ ));
63
+
64
+ $this->addColumn('notification_status', array(
65
+ 'header' => $this->__('Notification Status'),
66
+ 'index' => 'notification_status'
67
+ ));
68
+
69
+ $this->addExportType('*/*/exportCsv', $this->__('CSV'));
70
+ $this->addExportType('*/*/exportExcel', $this->__('Excel XML'));
71
+ return parent::_prepareColumns();
72
+ }
73
+ public function getGridUrl()
74
+ {
75
+ return $this->getUrl('*/*/grid', array('_current'=>true));
76
+ }
77
+ protected function _prepareMassaction()
78
+ {
79
+ $this->setMassactionIdField('instocksubscribe');
80
+ $this->getMassactionBlock()->setFormFieldName('instocksubscribe_id');
81
+ $this->getMassactionBlock()->addItem('delete', array(
82
+ 'label'=> $this->__('Delete'),
83
+ 'url' => $this->getUrl('*/*/massDelete', array('' => '')),
84
+ 'confirm' => $this->__('Are you sure?')
85
+ ));
86
+ return $this;
87
+ }
88
+ }
app/code/community/Rockforweb/Instocksubscribe/Block/Instocksubscribe.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Block_Instocksubscribe extends Mage_Core_Block_Template
22
+ {
23
+ public function __construct()
24
+ {
25
+ parent::__construct();
26
+ $customer = Mage::getSingleton('customer/session')->getCustomer();
27
+ $collection = Mage::getResourceModel('instocksubscribe/instocksubscribe_collection');
28
+ $collection ->addFieldToSelect('*')
29
+ ->addFieldToFilter('email', array('eq' => $customer->getEmail()))
30
+ ->addFieldToFilter('notification_status', array('eq' => 'on'))
31
+ ->load();
32
+ $this->setCollection($collection);
33
+ }
34
+ protected function _prepareLayout()
35
+ {
36
+ parent::_prepareLayout();
37
+
38
+ $pager = $this->getLayout()->createBlock('page/html_pager', 'custom.pager');
39
+ $pager->setAvailableLimit(array(5 => 5, 10 => 10, 20 => 20, 'all' => 'all'));
40
+ $pager->setCollection($this->getCollection());
41
+ $this->setChild('pager', $pager);
42
+ $this->getCollection()->load();
43
+ return $this;
44
+ }
45
+ public function getPagerHtml()
46
+ {
47
+ return $this->getChildHtml('pager');
48
+ }
49
+ }
app/code/community/Rockforweb/Instocksubscribe/Helper/Data.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Helper_Data extends Mage_Core_Helper_Abstract
22
+ {
23
+
24
+ }
app/code/community/Rockforweb/Instocksubscribe/Model/Instocksubscribe.php ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Model_Instocksubscribe extends Mage_Core_Model_Abstract
22
+ {
23
+ protected function _construct() {
24
+ parent::_construct();
25
+ $this->_init('instocksubscribe/instocksubscribe');
26
+ }
27
+ public function saveSubscribe($customerId, $sku, $subscribeEmail) {
28
+ $subscribeCollection = Mage::getModel('instocksubscribe/instocksubscribe');
29
+ $subscribeCollection->setData('id', null);
30
+ if($customerId == null) {
31
+ $subscribeCollection->setData('customer_id', 'not logged in');
32
+ } else {
33
+ $subscribeCollection->setData('customer_id', $customerId);
34
+ }
35
+ $subscribeCollection->setData('sku', $sku);
36
+ $subscribeCollection->setData('email', $subscribeEmail);
37
+ $subscribeCollection->setData('date', null);
38
+ $subscribeCollection->setData('notification_status', 'on');
39
+
40
+ $subscribeCollection->save();
41
+ }
42
+ public function findProductsBySku($sku) {
43
+ $notificationCollection = Mage::getResourceModel('instocksubscribe/instocksubscribe_collection');
44
+ $notificationCollection ->addFieldToSelect('*')
45
+ ->addFieldToFilter('sku', array('eq' => $sku))
46
+ ->load();
47
+ if(count($notificationCollection) >= 1) {
48
+ return $notificationCollection;
49
+ }
50
+ }
51
+ public function prepareSendingEmail($result) {
52
+ $emailTemplateId = Mage::getStoreConfig('instocksubscribe/instocksubscribe_group/email_template');
53
+ foreach ($result as $item) {
54
+ if($item->getNotificationStatus() == 'on') {
55
+ $this->sendEmail($emailTemplateId, $item);
56
+ }
57
+ }
58
+ }
59
+ public function sendEmail($emailTemplateId, $item) {
60
+ $product = Mage::getModel('catalog/product')->loadByAttribute('sku', $item->getSku());
61
+ $sender = Array('name' => Mage::getStoreConfig('trans_email/ident_general/name'),
62
+ 'email' => Mage::getStoreConfig('trans_email/ident_general/email'));
63
+ $store = Mage::app()->getStore();
64
+ $vars = array(
65
+ 'product_name' => $product->getName(),
66
+ 'product_price' => Mage::helper('core')->currency($product->getFinalPrice(), true, false),
67
+ 'product_url' => $product->getProductUrl(),
68
+ 'product_picture' => (string)Mage::helper('catalog/image')->init($product, 'image'),
69
+ 'product_unsubscribe_url' => Mage::getBaseUrl() . "instocksubscribe/index/showAll'"
70
+ );
71
+ Mage::getModel('core/email_template')->sendTransactional($emailTemplateId, $sender, $item->getEmail(),
72
+ $item->getCustomerId(), $vars, $store->getId());
73
+ }
74
+ public function unsubscribe($id) {
75
+ $model = Mage::getModel('instocksubscribe/instocksubscribe')->load($id)->addData(array('notification_status' => 'off'));
76
+ if($model->setId($id)->save()) {
77
+ return $model;
78
+ }
79
+ }
80
+ }
app/code/community/Rockforweb/Instocksubscribe/Model/Mysql4/Instocksubscribe.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Model_Mysql4_Instocksubscribe extends Mage_Core_Model_Mysql4_Abstract
22
+ {
23
+ protected function _construct() {
24
+ $this->_init('instocksubscribe/instocksubscribe', 'id');
25
+ }
26
+ }
app/code/community/Rockforweb/Instocksubscribe/Model/Mysql4/Instocksubscribe/Collection.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Model_Mysql4_Instocksubscribe_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
22
+ {
23
+ public function _construct()
24
+ {
25
+ $this->_init('instocksubscribe/instocksubscribe');
26
+ }
27
+ }
app/code/community/Rockforweb/Instocksubscribe/Model/Observer.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Model_Observer extends Varien_Event_Observer
22
+ {
23
+ public function notification(Varien_Event_Observer $observer) {
24
+ $post = Mage::app()->getRequest()->getPost();
25
+ $event = $observer->getEvent()->getProduct();
26
+ $sku = $post['product']['sku'];
27
+ $previousStockStatus = $event->getIsInStock();
28
+ $currentStockStatus = $post['product']['stock_data']['is_in_stock'];
29
+ if($currentStockStatus == 1 && $currentStockStatus !== $previousStockStatus) {
30
+ if($event->getStockData('qty') !== '0') {
31
+ $result = Mage::getModel('instocksubscribe/instocksubscribe')->findProductsBySku($sku);
32
+ Mage::getModel('instocksubscribe/instocksubscribe')->prepareSendingEmail($result, $currentStockStatus);
33
+ }
34
+ }
35
+ }
36
+ }
app/code/community/Rockforweb/Instocksubscribe/controllers/Adminhtml/InstocksubscribeController.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_Adminhtml_InstocksubscribeController extends Mage_Adminhtml_Controller_Action
22
+ {
23
+ public function indexAction()
24
+ {
25
+ $this->_title($this->__('Instocksubscribe'))->_title($this->__('In Stock Notificationы'));
26
+ $this->loadLayout();
27
+ $this->_setActiveMenu('rockforweb');
28
+ $this->_addContent($this->getLayout()->createBlock('instocksubscribe/adminhtml_instocksubscribe'));
29
+ $this->renderLayout();
30
+ }
31
+ public function gridAction()
32
+ {
33
+ $this->loadLayout();
34
+ $this->getResponse()->setBody(
35
+ $this->getLayout()->createBlock('instocksubscribe/adminhtml_instocksubscribe_grid')->toHtml()
36
+ );
37
+ }
38
+ public function exportCsvAction()
39
+ {
40
+ $fileName = 'instocksubscribe.csv';
41
+ $grid = $this->getLayout()->createBlock('instocksubscribe/adminhtml_instocksubscribe_grid');
42
+ $this->_prepareDownloadResponse($fileName, $grid->getCsvFile());
43
+ }
44
+ public function exportExcelAction()
45
+ {
46
+ $fileName = 'instocksubscribe.xml';
47
+ $grid = $this->getLayout()->createBlock('instocksubscribe/adminhtml_instocksubscribe_grid');
48
+ $this->_prepareDownloadResponse($fileName, $grid->getExcelFile($fileName));
49
+ }
50
+ public function massDeleteAction()
51
+ {
52
+ $notifyIds = $this->getRequest()->getParam('instocksubscribe_id');
53
+ if(!is_array($notifyIds)) {
54
+ Mage::getSingleton('adminhtml/session')->addError($this->__('Please select notification(s)'));
55
+ } else {
56
+ try {
57
+ $notifyModel = Mage::getModel('instocksubscribe/instocksubscribe');
58
+ foreach ($notifyIds as $notifyId) {
59
+ $notifyModel->load($notifyId)->delete();
60
+ }
61
+ Mage::getSingleton('adminhtml/session')->addSuccess(
62
+ $this->__(
63
+ 'Total of %d record(s) were deleted', count($notifyIds)
64
+ )
65
+ );
66
+ } catch (Exception $e) {
67
+ Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
68
+ }
69
+ }
70
+ $this->_redirect('*/*/index');
71
+ }
72
+ }
app/code/community/Rockforweb/Instocksubscribe/controllers/IndexController.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ class Rockforweb_Instocksubscribe_IndexController extends Mage_Core_Controller_Front_Action
22
+ {
23
+ public function indexAction() {
24
+ $this->loadLayout();
25
+ $this->renderLayout();
26
+ }
27
+
28
+ public function saveAction() {
29
+ $this->loadLayout();
30
+ $notLoggedInAllow = Mage::getStoreConfig('instocksubscribe/instocksubscribe_group/logged_in');
31
+ $post = $this->getRequest()->getPost();
32
+ $notificationCollection = Mage::getResourceModel('instocksubscribe/instocksubscribe_collection');
33
+ $notificationCollection ->addFieldToSelect('sku', 'email')
34
+ ->addFieldToFilter('sku', array('eq' => $post['sku']))
35
+ ->addFieldToFilter('email', array('eq' => $post['subscribeEmail']))
36
+ ->addFieldToFilter('notification_status', array('eq' => 'on'))
37
+ ->load();
38
+ if($notificationCollection->count() >= 1) {
39
+ $message = $this->__('You can subscribe for that product only once');
40
+ Mage::getSingleton('core/session')->addError($message);
41
+ header("Location: " . $this->_getRefererUrl());
42
+ exit();
43
+ }
44
+ if($notLoggedInAllow == 1) {
45
+ if(isset($post['subscribeEmail']) && filter_var($post['subscribeEmail'], FILTER_VALIDATE_EMAIL)) {
46
+ try {
47
+ $customerId = Mage::getSingleton('customer/session')->getCustomer()->getId();
48
+ Mage::getModel('instocksubscribe/instocksubscribe')->saveSubscribe($customerId,
49
+ $post['sku'], $post['subscribeEmail']);
50
+ Mage::getSingleton('core/session')->addSuccess($this->__("Thank You !"));
51
+ header("Location: " . $this->_getRefererUrl());
52
+ exit();
53
+ } catch(Exception $e) {
54
+ echo $e->getMessage(), "\n";
55
+ }
56
+ } else {
57
+ $message = $this->__("Please check your email");
58
+ Mage::getSingleton('core/session')->addError($message);
59
+ header("Location: " . $this->_getRefererUrl());
60
+ exit();
61
+ }
62
+ }
63
+ $this->renderLayout();
64
+ }
65
+ public function showAllAction() {
66
+ $this->loadLayout();
67
+ $this->renderLayout();
68
+ }
69
+ public function unsubscribeAction() {
70
+ $post = $this->getRequest()->getPost();
71
+ if(isset($post['sku']) && isset($post['email']) && isset($post['id'])) {
72
+ $notificationCollection = Mage::getResourceModel('instocksubscribe/instocksubscribe_collection');
73
+ $notificationCollection ->addFieldToSelect('*')
74
+ ->addFieldToFilter('sku', array('eq' => $post['sku']))
75
+ ->addFieldToFilter('id', array('eq' => $post['id']))
76
+ ->addFieldToFilter('email', array('eq' => $post['email']))
77
+ ->load();
78
+ $count = $notificationCollection->count();
79
+ if($count >= 1) {
80
+ $result = Mage::getModel('instocksubscribe/instocksubscribe')->unsubscribe($post['id']);
81
+ }
82
+ if($result->getId()) {
83
+ Mage::getSingleton('core/session')->addSuccess($this->__("Done"));
84
+ header("Location: " . $this->_getRefererUrl());
85
+ exit();
86
+ } else {
87
+ Mage::getSingleton('core/session')->addError($this->__("Error"));
88
+ header("Location: " . $this->_getRefererUrl());
89
+ exit();
90
+ }
91
+ }
92
+ }
93
+ }
app/code/community/Rockforweb/Instocksubscribe/etc/adminhtml.xml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ /**
4
+ * RockForWeb
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category RockForWeb Mod
17
+ * @package Rockforweb_Instocksubscribe
18
+ * @author RockForWeb Core Team
19
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
20
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
+ */
22
+ -->
23
+ <config>
24
+ <menu>
25
+ <rockforweb module="instocksubscribe">
26
+ <title>RockForWeb</title>
27
+ <sort_order>1000</sort_order>
28
+ <children>
29
+ <instocksubscribe translate="title" module="instocksubscribe">
30
+ <title>In Stock Notifications</title>
31
+ <type>text</type>
32
+ <action>instocksubscribe/adminhtml_instocksubscribe</action>
33
+ <sort_order>1</sort_order>
34
+ </instocksubscribe>
35
+ </children>
36
+ </rockforweb>
37
+ </menu>
38
+ <acl>
39
+ <resources>
40
+ <all>
41
+ <title>Allow Everything</title>
42
+ </all>
43
+ <admin>
44
+ <children>
45
+ <system>
46
+ <children>
47
+ <config>
48
+ <children>
49
+ <instocksubscribe>
50
+ <title>Product In Stock Notification - All</title>
51
+ </instocksubscribe>
52
+ </children>
53
+ </config>
54
+ </children>
55
+ </system>
56
+ </children>
57
+ </admin>
58
+ </resources>
59
+ </acl>
60
+ </config>
app/code/community/Rockforweb/Instocksubscribe/etc/config.xml ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * RockForWeb
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category RockForWeb Mod
17
+ * @package Rockforweb_Instocksubscribe
18
+ * @author RockForWeb Core Team
19
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
20
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
+ */
22
+ -->
23
+ <config>
24
+ <modules>
25
+ <Rockforweb_Instocksubscribe>
26
+ <version>1.0.0</version>
27
+ </Rockforweb_Instocksubscribe>
28
+ </modules>
29
+ <global>
30
+ <models>
31
+ <instocksubscribe>
32
+ <class>Rockforweb_Instocksubscribe_Model</class>
33
+ <resourceModel>instocksubscribe_mysql4</resourceModel>
34
+ </instocksubscribe>
35
+ <instocksubscribe_mysql4>
36
+ <class>Rockforweb_Instocksubscribe_Model_Mysql4</class>
37
+ <entities>
38
+ <instocksubscribe>
39
+ <table>instocksubscribe</table>
40
+ </instocksubscribe>
41
+ </entities>
42
+ </instocksubscribe_mysql4>
43
+ </models>
44
+ <resources>
45
+ <instocksubscribe_setup>
46
+ <setup>
47
+ <module>Rockforweb_Instocksubscribe</module>
48
+ <class>Mage_Core_Model_Resource_Setup</class>
49
+ </setup>
50
+ </instocksubscribe_setup>
51
+ </resources>
52
+ <helpers>
53
+ <instocksubscribe>
54
+ <class>Rockforweb_Instocksubscribe_Helper</class>
55
+ </instocksubscribe>
56
+ </helpers>
57
+ <blocks>
58
+ <instocksubscribe>
59
+ <class>Rockforweb_Instocksubscribe_Block</class>
60
+ </instocksubscribe>
61
+ </blocks>
62
+ <events>
63
+ <catalog_product_save_before>
64
+ <observers>
65
+ <instocksubscribe_observer>
66
+ <type>singleton</type>
67
+ <class>Rockforweb_Instocksubscribe_Model_Observer</class>
68
+ <method>notification</method>
69
+ </instocksubscribe_observer>
70
+ </observers>
71
+ </catalog_product_save_before>
72
+ </events>
73
+ </global>
74
+ <admin>
75
+ <routers>
76
+ <instocksubscribe>
77
+ <use>admin</use>
78
+ <args>
79
+ <module>Rockforweb_Instocksubscribe</module>
80
+ <frontName>instocksubscribe</frontName>
81
+ </args>
82
+ </instocksubscribe>
83
+ </routers>
84
+ </admin>
85
+ <adminhtml>
86
+ <translate>
87
+ <modules>
88
+ <instocksubscribe>
89
+ <files>
90
+ <default>Rockforweb_Instocksubscribe_Admin.csv</default>
91
+ </files>
92
+ </instocksubscribe>
93
+ </modules>
94
+ </translate>
95
+ </adminhtml>
96
+ <frontend>
97
+ <translate>
98
+ <modules>
99
+ <instocksubscribe>
100
+ <files>
101
+ <default>Rockforweb_Instocksubscribe.csv</default>
102
+ </files>
103
+ </instocksubscribe>
104
+ </modules>
105
+ </translate>
106
+ <routers>
107
+ <instocksubscribe>
108
+ <use>standard</use>
109
+ <args>
110
+ <module>Rockforweb_Instocksubscribe</module>
111
+ <frontName>instocksubscribe</frontName>
112
+ </args>
113
+ </instocksubscribe>
114
+ </routers>
115
+ <layout>
116
+ <updates>
117
+ <instocksubscribe>
118
+ <file>instocksubscribe.xml</file>
119
+ </instocksubscribe>
120
+ </updates>
121
+ </layout>
122
+ </frontend>
123
+ </config>
app/code/community/Rockforweb/Instocksubscribe/etc/system.xml ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ /**
4
+ * RockForWeb
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category RockForWeb Mod
17
+ * @package Rockforweb_Instocksubscribe
18
+ * @author RockForWeb Core Team
19
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
20
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
+ */
22
+ -->
23
+ <config>
24
+ <tabs>
25
+ <instocksubscribe module="instocksubscribe">
26
+ <label>RockForWeb</label>
27
+ <sort_order>100</sort_order>
28
+ </instocksubscribe>
29
+ </tabs>
30
+ <sections>
31
+ <instocksubscribe translate="label" module="instocksubscribe">
32
+ <label>In Stock Notifications</label>
33
+ <tab>instocksubscribe</tab>
34
+ <frontend_type>text</frontend_type>
35
+ <sort_order>100</sort_order>
36
+ <show_in_default>1</show_in_default>
37
+ <show_in_website>1</show_in_website>
38
+ <show_in_store>1</show_in_store>
39
+ <groups>
40
+ <instocksubscribe_group translate="label" module="instocksubscribe">
41
+ <label>General Options</label>
42
+ <frontend_type>text</frontend_type>
43
+ <sort_order>1</sort_order>
44
+ <show_in_default>1</show_in_default>
45
+ <show_in_website>1</show_in_website>
46
+ <show_in_store>1</show_in_store>
47
+ <fields>
48
+ <logged_in translate="label">
49
+ <label>Allow not logged in customers</label>
50
+ <frontend_type>select</frontend_type>
51
+ <sort_order>1</sort_order>
52
+ <show_in_default>1</show_in_default>
53
+ <show_in_website>1</show_in_website>
54
+ <show_in_store>1</show_in_store>
55
+ <source_model>adminhtml/system_config_source_yesno</source_model>
56
+ </logged_in>
57
+ <email_template translate="label">
58
+ <label>Notification Email Template</label>
59
+ <frontend_type>select</frontend_type>
60
+ <source_model>adminhtml/system_config_source_email_template</source_model>
61
+ <sort_order>2</sort_order>
62
+ <show_in_default>1</show_in_default>
63
+ <show_in_website>1</show_in_website>
64
+ <show_in_store>1</show_in_store>
65
+ </email_template>
66
+ </fields>
67
+ </instocksubscribe_group>
68
+ </groups>
69
+ </instocksubscribe>
70
+ </sections>
71
+ </config>
app/code/community/Rockforweb/Instocksubscribe/sql/instocksubscribe_setup/install-1.0.0.php ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ $installer = $this;
22
+ $installer->startSetup();
23
+ $table = $installer->getConnection()
24
+ ->newTable($installer->getTable('instocksubscribe'))
25
+ ->addColumn('id', Varien_Db_Ddl_Table::TYPE_INTEGER, null, array(
26
+ 'identity' => true,
27
+ 'unsigned' => true,
28
+ 'nullable' => false,
29
+ 'primary' => true,
30
+ ), 'Id')
31
+ ->addColumn('customer_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
32
+ 'nullable' => true,
33
+ ), 'Customer ID')
34
+ ->addColumn('sku', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
35
+ 'nullable' => true,
36
+ ), 'Product SKU')
37
+ ->addColumn('email', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
38
+ 'nullable' => true,
39
+ ), 'Email')
40
+ ->addColumn('date', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
41
+ 'nullable' => false,
42
+ "default" => Varien_Db_Ddl_Table::TIMESTAMP_INIT
43
+ ), 'Date')
44
+ ->addColumn('notification_status', Varien_Db_Ddl_Table::TYPE_VARCHAR, null, array(
45
+ 'nullable' => true,
46
+ ), 'Notification Status');
47
+
48
+ $installer->getConnection()->createTable($table);
49
+ $installer->endSetup();
app/design/frontend/base/default/layout/instocksubscribe.xml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * RockForWeb
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category RockForWeb Mod
17
+ * @package Rockforweb_Instocksubscribe
18
+ * @author RockForWeb Core Team
19
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
20
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
+ */
22
+ -->
23
+ <layout version="0.1.0">
24
+ <catalog_product_view>
25
+ <reference name="content">
26
+ <block type="core/template" name="product.notification" as="product_notification" template="rockforweb/instocksubscribe/product_page_form.phtml" before="-" />
27
+ </reference>
28
+ </catalog_product_view>
29
+ <customer_account>
30
+ <reference name="customer_account_navigation">
31
+ <action method="addLink" translate="label" module="instocksubscribe"><name>instocksubscribe</name><path>instocksubscribe/index/showAll</path><label>In Stock Notifications</label></action>
32
+ </reference>
33
+ </customer_account>
34
+ <instocksubscribe_index_showall>
35
+ <update handle="customer_account"/>
36
+ <reference name="my.account.wrapper">
37
+ <block type="instocksubscribe/instocksubscribe" name="all.notifications" as="all_notifications" template="rockforweb/instocksubscribe/all_notifications.phtml" />
38
+ </reference>
39
+ <reference name="root">
40
+ <action method="setHeaderTitle" translate="title" module="instocksubscribe"><title>In Stock Notifications</title></action>
41
+ </reference>
42
+ </instocksubscribe_index_showall>
43
+ </layout>
app/design/frontend/base/default/template/rockforweb/instocksubscribe/all_notifications.phtml ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ ?>
22
+ <?php echo $this->getMessagesBlock()->getGroupedHtml(); ?>
23
+ <?php $collection = $this->getCollection(); ?>
24
+ <?php echo $this->getPagerHtml(); ?>
25
+ <ol class="products-list" id="products-list">
26
+ <?php foreach ($collection as $product) {
27
+ $_product = Mage::getModel('catalog/product')->loadByAttribute('sku', $product->getSku()); ?>
28
+ <li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>">
29
+ <?php // Product Image ?>
30
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(135); ?>" width="135" height="135" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
31
+ <?php // Product description ?>
32
+ <div class="product-shop">
33
+ <div class="f-fix">
34
+ <?php $_productNameStripped = $this->stripTags($_product->getName(), null, true); ?>
35
+ <h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped; ?>"><?php echo $_product->getName(); ?></a></h2>
36
+ <?php if($_product->getRatingSummary()): ?>
37
+ <?php echo $this->getReviewsSummaryHtml($_product) ?>
38
+ <?php endif; ?>
39
+ <?php echo $this->getPriceHtml($_product, true) ?>
40
+ <div style="clear: both;">
41
+ <form name="unsubscribe" method="POST" action="<?php echo $this->getUrl('instocksubscribe/index/unsubscribe') ?>">
42
+ <p><input type="submit" title="<?php echo $this->__('Unsubscribe') ?>" class="button btn-cart" value="<?php echo $this->__('Unsubscribe') ?>" /></p>
43
+ <input type="hidden" name="sku" value="<?php echo $product->getSku(); ?>">
44
+ <input type="hidden" name="email" value="<?php echo $product->getEmail(); ?>">
45
+ <input type="hidden" name="id" value="<?php echo $product->getId(); ?>">
46
+ </form>
47
+ </div>
48
+ <div class="desc std">
49
+ <?php echo $_product->getShortDescription(); ?>
50
+ <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $_productNameStripped ?>" class="link-learn"><?php echo $this->__('Learn More') ?></a>
51
+ </div>
52
+ </div>
53
+ </div>
54
+ </li>
55
+ <?php } ?>
56
+ </ol>
57
+ <?php echo $this->getPagerHtml(); ?>
app/design/frontend/base/default/template/rockforweb/instocksubscribe/product_page_form.phtml ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * RockForWeb
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * @category RockForWeb Mod
16
+ * @package Rockforweb_Instocksubscribe
17
+ * @author RockForWeb Core Team
18
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
19
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
+ */
21
+ ?>
22
+ <?php require_once 'app/Mage.php';
23
+ $notLoggedInAllow = Mage::getStoreConfig('instocksubscribe/instocksubscribe_group/logged_in');
24
+
25
+ umask(0);
26
+ Mage::app('default');
27
+ Mage::getSingleton('core/session', array('name' => 'frontend'));
28
+ $sessionCustomer = Mage::getSingleton("customer/session");
29
+ $customerData = $sessionCustomer->isLoggedIn();
30
+ $_product = Mage::registry('current_product');
31
+ $stock = Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product->getId())->getIsInStock();
32
+ if($notLoggedInAllow == 1 && $customerData == false && $stock == false || $notLoggedInAllow == 0 && $customerData == true && $stock == false || $notLoggedInAllow == 1 && $customerData == true && $stock == false): ?>
33
+ <div class="col3-set">
34
+ <div class="col-1">
35
+ <form onsubmit="return submitForm()" id="productSubscribe" action="<?php echo $this->getUrl('instocksubscribe/index/save') ?>" method="post" name="productStatusSubscribe">
36
+ <ul class="form-list">
37
+ <li>
38
+ <label class="required" for="subscribeEmail"><em>*</em><?php echo $this->__("Notify me when product is in stock"); ?></label>
39
+ <div class="input-box">
40
+ <input onfocus="subscribeFocus(this);" onblur="subscribeBlur(this);" type="email" title="Email Address" class="input-text required-entry subscribeEmail" value="<?php echo $this->__("type email here"); ?>" name="subscribeEmail">
41
+ </div>
42
+ <button name="subscribe" title="Notify me" class="button" type="submit"><span><span><?php echo $this->__('Notify me') ?></span></span></button>
43
+ </li>
44
+ </ul>
45
+ <input type="hidden" name="sku" value="<?php echo $_product->getSku();?>" />
46
+ </form>
47
+ </div>
48
+ </div>
49
+ <?php endif; ?>
50
+ <script>
51
+ var customForm = new VarienForm('productSubscribe');
52
+ function subscribeFocus(e) {
53
+ if (e.value == "<?php echo $this->__('type email here') ?>") {
54
+ e.value = '';
55
+ }
56
+ }
57
+ function subscribeBlur(w) {
58
+ if (w.value == '') {
59
+ w.value = "<?php echo $this->__('type email here') ?>";
60
+ }
61
+ }
62
+ Validation.add('subscribeEmail', false, function(v) {
63
+ return Validation.get('IsEmpty').test(v) || /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/i.test(v)
64
+ });
65
+ </script>
app/etc/modules/Rockforweb_Instocksubscribe.xml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * RockForWeb
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is bundled with this package in the file LICENSE.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/osl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * @category RockForWeb Mod
17
+ * @package Rockforweb_Instocksubscribe
18
+ * @author RockForWeb Core Team
19
+ * @copyright Copyright (c) 2014 RockForWeb (http://www.rockforweb.com)
20
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
+ */
22
+ -->
23
+ <config>
24
+ <modules>
25
+ <Rockforweb_Instocksubscribe>
26
+ <active>true</active>
27
+ <codePool>community</codePool>
28
+ </Rockforweb_Instocksubscribe>
29
+ </modules>
30
+ </config>
app/locale/de_DE/Mage_AdminNotification.csv ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Actions","Aktionen"
2
+ "An error occurred while marking notification as read.","Fehler beim Markieren des Hinweises als 'gelesen'."
3
+ "An error occurred while marking the messages as read.","Fehler beim Markieren der Nachrichten als 'gelesen'."
4
+ "An error occurred while removing messages.","Fehler beim Entfernen der Nachrichten."
5
+ "An error occurred while removing the message.","Fehler beim Entfernen der Nachricht."
6
+ "Are you sure?","Sind Sie sicher?"
7
+ "Date Added","Hinzugefügt am"
8
+ "Last Update","Letzte Aktualisierung"
9
+ "Mark as Read","Als 'gelesen' markieren"
10
+ "Mark as read","Als gelesen markieren"
11
+ "Message","Nachricht"
12
+ "Messages Inbox","Posteingang"
13
+ "Notifications","Hinweise"
14
+ "Please select messages.","Bitte Nachrichten auswählen."
15
+ "Read Details","Details anzeigen"
16
+ "Remove","Entfernen"
17
+ "Severity","Wichtigkeit"
18
+ "Show List","Liste anzeigen"
19
+ "Show Toolbar","Werkzeugleiste anzeigen"
20
+ "The message has been marked as read.","Die Nachricht wurde als 'gelesen' markiert."
21
+ "The message has been removed.","Die Nachricht wurde entfernt."
22
+ "Total of %d record(s) have been marked as read.","Insgesamt %d Einträge wurden als 'gelesen' markiert."
23
+ "Total of %d record(s) have been removed.","Insgesamt %d Einträge wurden gelöscht."
24
+ "Unable to proceed. Please, try again.","Vorgang konnte nicht ausgeführt werden. Bitte versuchen Sie es später noch einmal."
25
+ "Update Frequency","Aktualisierungshäufigkeit"
26
+ "Use HTTPS to Get Feed","Benutzen Sie HTTPS um Nachrichten abzurufen"
27
+ "Wrong message type","Falscher Mitteilungstyp"
28
+ "critical","kritisch"
29
+ "major","wichtig"
30
+ "minor","unwichtig"
31
+ "notice","Hinweis"
app/locale/de_DE/Mage_Adminhtml.csv ADDED
@@ -0,0 +1,1215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " The customer does not exist in the system anymore.","Der Kunde ist im System nicht mehr vorhanden."
2
+ " [deleted]"," [gelöscht]"
3
+ " and "," und "
4
+ "%s (Default Template from Locale)","%s (Standardvorlage von Gebietsschema)"
5
+ "%s cache type(s) disabled.","%s Cachetyp(en) deaktiviert."
6
+ "%s cache type(s) enabled.","%s Cachetyp(en) aktiviert."
7
+ "%s cache type(s) refreshed.","%s Cachetyp(en) aktualisiert."
8
+ "(For Type ""Local Server"" need to use relative path to Magento install var/export or var/import, e.g. var/export, var/import, var/export/some/dir, var/import/some/dir)","(yp ""Lokaler Server"" muss die relative Pfadangabe zu Magento install var/export oder var/import nutzen, z.B. var/export, var/import, var/export/some/dir, var/import/some/dir)"
9
+ "(For US 2-letter state names)","(Für USA Bundesstaatabkürzungen aus 2 Buchstaben)"
10
+ "(If left empty will be auto-generated)","(Wert wird automatisch generiert, wenn leer)"
11
+ "(Leave empty for first spreadsheet)","(Frei lassen bei erstem Tabellenkalkulationsblatt)"
12
+ "(Products will be added/updated to this store if 'store' column is blank or missing in the import file.)","(Produkte werden zu diesem Laden hinzugefügt/aktualisiert, wenn die Spalte 'Laden' leer ist oder in der Importdatei fehlt.)"
13
+ "(Shift-)Click or drag to change value","Zum Ändern des Wertes (Umschalt-)klicken oder ziehen."
14
+ "(Starting with)","(Beginnt mit)"
15
+ "(When 'No', only mapped fields will be imported. When mapping, use 'column1', 'column2', etc.)","(Bei ""Nein"" werden nur die gemappten Felder importiert. Benutzen sie beim Übernehmen der Felder 'spalte1', 'spalte2', etc.)"
16
+ "(You have to increase php memory_limit before changing this value)","(Sie müssen das php-Speicherlimit erhöhen, bevor Sie diesen Wert ändern können.)"
17
+ "(\\t for tab)","(\t für Tab)"
18
+ "* - If indexing is in progress, it will be killed and new indexing process will start.","* - Wenn die Indexerstellung in Bearbeitung ist, wird sie abgebrochen und ein neuer Indexerstellungsprozess wird gestartet."
19
+ "* Required Fields","* Pflichtfelder"
20
+ "- Click on any of the time parts to increase it","- Klicken Sie auf einen Zeitanteil, um ihn zu erhöhen."
21
+ "- Hold mouse button on any of the above buttons for faster selection.","- Halten Sie die Maustaste auf eine der obigen Schaltflächen, um die Auswahl zu beschleunigen."
22
+ "- Use the %s buttons to select month","- Wählen Sie den Monat mit den %s-Schaltflächen aus."
23
+ "- Use the %s, %s buttons to select year","- Wählen Sie das Jahr mit den %s-Schaltflächen aus."
24
+ "- or Shift-click to decrease it","- oder Umschalt-Klicken Sie, um den Wert zu verringern"
25
+ "- or click and drag for faster selection.","- oder Klicken und Ziehen Sie, um die Auswahl schneller zu treffen."
26
+ "-- Not Selected --","-- Nicht gewählt --"
27
+ "-- Please Select --","-- Bitte auswählen --"
28
+ "-- Please Select Billing Agreement--","-- Bitte Rechnungsvereinbarung auswählen --"
29
+ "-- Please Select a Category --","-- Bitte eine Kategorie auswählen --"
30
+ "-- Please select --","-- Bitte auswählen --"
31
+ "--Please Select--","-- Bitte auswählen --"
32
+ "1 Hour","1 Stunde"
33
+ "12 Hours","12 Stunden"
34
+ "12h AM/PM","12h AM/PM"
35
+ "2 Hours","2 Stunden"
36
+ "24 Hours","24 Stunden"
37
+ "24h","24h"
38
+ "2YTD","2 Jahr bis Datum"
39
+ "6 Hours","6 Stunden"
40
+ "<h1 class=""page-heading"">404 Error</h1><p>Page not found.</p>","<h1 class=""page-heading"">404 Fehler</h1><p>Seite nicht gefunden.</p>"
41
+ "<strong>%s</strong> requests access to your account","<strong>%s</strong> erfordert Zugriff auf Ihr Konto"
42
+ "<strong>Attention</strong>: Captcha is case sensitive.","<strong>Achtung</strong>: Beim Captcha Groß- und Kleinschreibung beachten."
43
+ "A user with the same user name or email aleady exists.","Ein Benutzer mit demselben Benutzernamen oder derselben E-Mail-Adresse ist bereits vorhanden."
44
+ "API Key","API-Schlüssel"
45
+ "API Key Confirmation","Bestätigung API-Schlüssel"
46
+ "ASCII","ASCII"
47
+ "Abandoned Carts","Aufgegebene Einkaufswagen"
48
+ "About the calendar","Über den Kalender"
49
+ "Access Denied","Zugriff verweigert"
50
+ "Access denied","Zugriff verweigert"
51
+ "Access denied.","Zugriff verweigert."
52
+ "Account Created in:","Konto erstellt in:"
53
+ "Account Created on (%s):","Konto erstellt am (%s):"
54
+ "Account Created on:","Konto erstellt am:"
55
+ "Account Information","Kontoinformationen"
56
+ "Account Status","Kontostatus"
57
+ "Account status","Kontostatus"
58
+ "Action","Aktion"
59
+ "Actions","Aktionen"
60
+ "Actions XML","Aktionen XML"
61
+ "Active","Aktiv"
62
+ "Add","Hinzufügen"
63
+ "Add Exception","Ausnahme hinzufügen"
64
+ "Add Field Mapping","Feldzuordnung hinzufügen"
65
+ "Add Field with URL:","Feld mit folgender URL hinzufügen:"
66
+ "Add New","Neues hinzufügen"
67
+ "Add New Image","Neues Bild hinzufügen"
68
+ "Add New Profile","Neues Profil hinzufügen"
69
+ "Add New Role","Neue Rolle hinzufügen"
70
+ "Add New Template","Neue Vorlage hinzufügen"
71
+ "Add New URL Rewrite","Neues URL-Rewrite hinzufügen"
72
+ "Add New User","Neuen Benutzer hinzufügen"
73
+ "Add New Variable","Neue Variable hinzufügen"
74
+ "Add Products","Produkte hinzufügen"
75
+ "Add URL Rewrite","URL-Rewrite hinzufügen"
76
+ "Add URL Rewrite for a Category","URL-Rewrite für eine Kategorie hinzufügen"
77
+ "Add URL Rewrite for a Product","URL-Rewrite für ein Produkt hinzufügen"
78
+ "Add after","Hinzufügen nach"
79
+ "Additional Cache Management","Verwaltung von zusätzlichem Cache"
80
+ "Address Type:","Adressentyp:"
81
+ "Admin","Admin"
82
+ "Advanced Admin Section","Erweiterter Admin-Bereich"
83
+ "Advanced Profiles","Erweiterte Profile"
84
+ "Advanced Section","Erweiterter Bereich"
85
+ "After authorization application will have access to you account.","Nach der Autorisierungsanwendung haben Sie Zugriff auf Ihr Konto."
86
+ "All","Alle"
87
+ "All Allowed Countries","Alle erlaubten Länder"
88
+ "All Cache","Alle Caches"
89
+ "All Files","Alle Dateien"
90
+ "All Reviews","Alle Beurteilungen"
91
+ "All Store Views","Alle Ladenansichten"
92
+ "All Tags","Alle Tags"
93
+ "All Websites","Alle Websites"
94
+ "All countries","Alle Länder"
95
+ "All fields","Alle Felder"
96
+ "All possible rates were fetched, please click on ""Save"" to apply","Alle verfügbaren Preise wurden geladen, bitte klicken sie auf ""Speichern"" um diese zu übernehmen."
97
+ "All rates were fetched, please click on ""Save"" to apply","Alle Preise wurden geladen, bitte klicken sie auf ""Speichern"" um diese zu übernehmen."
98
+ "All valid rates have been saved.","Alle gültigen Tarife wurden gespeichert."
99
+ "Always (during development)","Immer (während der Entwicklung)"
100
+ "Amounts","Beträge"
101
+ "An error has occured while syncronizing media storages.","Während der Synchronisation der Speichermedien ist ein Fehler aufgetreten."
102
+ "An error occurred while clearing the JavaScript/CSS cache.","Beim Leeren des JavaScript/CSS-Caches ist ein Fehler aufgetreten."
103
+ "An error occurred while clearing the image cache.","Beim Leeren des Bild-Caches ist ein Fehler aufgetreten."
104
+ "An error occurred while deleting URL Rewrite.","Beim Löschen des URL-Rewrites ist ein Fehler aufgetreten."
105
+ "An error occurred while deleting email template data. Please review log and try again.","Beim Löschen der E-Mail-Vorlagendaten ist ein Fehler aufgetreten. Überprüfen Sie das Protokoll und versuchen Sie es erneut."
106
+ "An error occurred while deleting record(s).","Ein Fehler ist bei der Eintragungslöschung aufgetreten."
107
+ "An error occurred while deleting this role.","Beim Löschen dieser Rolle ist ein Fehler aufgetreten."
108
+ "An error occurred while deleting this set.","Beim Löschen dieser Menge ist ein Fehler aufgetreten."
109
+ "An error occurred while deleting this template.","Beim Löschen dieser Vorlage ist ein Fehler aufgetreten."
110
+ "An error occurred while finishing process. Please refresh the cache","Beim Fertigstellen des Vorgangs ist ein Fehler aufgetreten. Aktualisieren Sie den Cache."
111
+ "An error occurred while rebuilding the CatalogInventory Stock Status.","Beim erneuten Aufbau des CatalogInventory-Bestandsstatus ist ein Fehler aufgetreten."
112
+ "An error occurred while rebuilding the catalog index.","Beim erneuten Aufbau des Katalogindexes ist ein Fehler aufgetreten."
113
+ "An error occurred while rebuilding the flat catalog category.","Beim erneuten Aufbau der Flat Catalog-Kategorie ist ein Fehler aufgetreten."
114
+ "An error occurred while rebuilding the flat product catalog.","Beim erneuten Aufbau des Flat Product Catalog ist ein Fehler aufgetreten."
115
+ "An error occurred while rebuilding the search index.","Beim erneuten Aufbau des Suchindexes ist ein Fehler aufgetreten."
116
+ "An error occurred while refreshing the Catalog Rewrites.","Beim Aktualisieren der Katalog-Rewrites ist ein Fehler aufgetreten."
117
+ "An error occurred while refreshing the Layered Navigation indices.","Beim Aktualisieren der Layered Navigation-Indizes ist ein Fehler aufgetreten."
118
+ "An error occurred while refreshing the catalog rewrites.","Während des Neuladens der umgeschriebenen Kataloge ist ein Fehler aufgetreten."
119
+ "An error occurred while refreshing the layered navigation indices.","Während des Neuladens der Layered Navigation ist ein Fehler aufgetreten."
120
+ "An error occurred while saving URL Rewrite.","Beim Speichern des URL-Rewrites ist ein Fehler aufgetreten."
121
+ "An error occurred while saving account.","Beim Speichern des Kontos ist ein Fehler aufgetreten."
122
+ "An error occurred while saving review.","Beim Speichern der Bewertung ist ein Fehler aufgetreten."
123
+ "An error occurred while saving the customer.","Beim Speichern des Kunden ist ein Fehler aufgetreten."
124
+ "An error occurred while saving this configuration:","Beim Speichern der Konfiguration ist ein Fehler aufgetreten."
125
+ "An error occurred while saving this role.","Beim Speichern dieser Rolle ist ein Fehler aufgetreten."
126
+ "An error occurred while saving this template.","Beim Speichern dieser Vorlage ist ein Fehler aufgetreten."
127
+ "An error occurred while updating the selected review(s).","Beim Aktualisieren der ausgewählten Beurteilung(en) ist ein Fehler aufgetreten."
128
+ "Any","Beliebig"
129
+ "Any Attribute Set","Attributmenge beliebig"
130
+ "Any Group","Gruppe beliebig"
131
+ "Any Status","Status beliebig"
132
+ "Any Store","Laden beliebig"
133
+ "Any Type","Typ beliebig"
134
+ "Any Visibility","Sichtbarkeit beliebig"
135
+ "Any data created since the backup was made will be lost including admin users, customers and orders.","Sämtliche seit dem Backup erstellten Daten gehen verloren, einschließlich der Administratoren, Kunden und Bestellungen."
136
+ "Archive file name:","Dateinamen archivieren:"
137
+ "Are you sure that you want to delete this template?","Diese Vorlage wirklich löschen?"
138
+ "Are you sure that you want to strip tags?","Tags wirklich entfernen?"
139
+ "Are you sure you want to do this?","Diesen Vorgang wirklich ausführen?"
140
+ "Are you sure you want to proceed?","Sind Sie sicher, dass Sie fortfahren möchten?"
141
+ "Area","Bereich"
142
+ "As low as:","Unterster Wert:"
143
+ "Assigned","Zugewiesen"
144
+ "Associated Tags","Verknüpfte Tags"
145
+ "Attribute Set Name:","Name der Attributmenge:"
146
+ "Attributes","Attribute"
147
+ "Authorization confirmed","Autorisierung bestätigt"
148
+ "Authorize","Autorisieren"
149
+ "Authorize application","Anwendung autorisieren"
150
+ "Authorized OAuth Tokens","Autorisierte OAuth-Zeichen"
151
+ "Automatic (equalize price ranges)","Automatisch (Wertangleichung Preisklassen)"
152
+ "Automatic (equalize product counts)","Automatisch (Wertangleichung Produktzählung)"
153
+ "Average Order Amount","Durchschnittlicher Bestellungsbetrag"
154
+ "Average Orders","Bestellungen durchschnittlich"
155
+ "BINARY","BINÄR"
156
+ "Back","Zurück"
157
+ "Back to Login","Zurück zur Anmeldung"
158
+ "Backup","Sichern"
159
+ "Backup Name","Backup-Name"
160
+ "Backup options","Backup-Optionen"
161
+ "Backups","Sicherungskopien"
162
+ "Base currency","Basiswährung"
163
+ "Bcc","Bcc"
164
+ "Bestsellers","Am meisten verkauft"
165
+ "Billing Address","Rechnungsanschrift"
166
+ "Billing Address: ","Rechnungsanschrift:"
167
+ "Billing Agreement","Rechnungsvereinbarung"
168
+ "Billing Agreements","Rechnungsvereinbarungen"
169
+ "Block Information","Information sperren"
170
+ "Both (without and with tax)","Beides (mit und ohne Steuern)"
171
+ "Both IPN and PDT","Sowohl IPN als auch PDT"
172
+ "Browse Files...","Dateien durchsuchen ..."
173
+ "Bundle with dynamic pricing cannot include custom defined options. Options will not be saved.","Bündelung mit dynamischer Preisgebung darf keine benutzerdefinierten Optionen enthalten. Optionen werden nicht gespeichert."
174
+ "CMS","CMS"
175
+ "CRITICAL","kritisch"
176
+ "CSV","CSV"
177
+ "CSV / Tab separated","CSV / Tab-getrennt"
178
+ "Cache Control","Cache-Steuerung"
179
+ "Cache Control (beta)","Cache-Steuerung (beta)"
180
+ "Cache Management","Cache-Verwaltung"
181
+ "Cache Type","Cache-Typ"
182
+ "Cancel","Abbrechen"
183
+ "Cannot add new comment.","Neuer Kommentar kann nicht hinzugefügt werden."
184
+ "Cannot add tracking number.","Trackingnummer kann nicht hinzugefügt werden."
185
+ "Cannot create an invoice without products.","Rechnung kann nicht ohne Produkte erstellt werden."
186
+ "Cannot create credit memo for the order.","Gutschrift für die Bestellung kann nicht erstellt werden."
187
+ "Cannot delete the design change.","Designänderung kann nicht gelöscht werden."
188
+ "Cannot delete tracking number.","Trackingnummer kann nicht gelöscht werden."
189
+ "Cannot do shipment for the order separately from invoice.","Lieferung für die Bestellung kann nicht von der Rechnung getrennt erfolgen."
190
+ "Cannot do shipment for the order.","Lieferung für die Bestellung kann nicht ausgeführt werden."
191
+ "Cannot initialize shipment for adding tracking number.","Lieferung kann nicht initialisiert werden - Trackingnummer hinzugefügt."
192
+ "Cannot initialize shipment for delete tracking number.","Lieferung kann nicht initialisiert werden - Trackingnummer gelöscht."
193
+ "Cannot load track with retrieving identifier.","Track kann nicht mit Abrufkennzeichen geladen werden."
194
+ "Cannot retrieve tracking number detail.","Trackingnummerdetail kann nicht abgerufen werden."
195
+ "Cannot save shipment.","Lieferung kann nicht gespeichert werden."
196
+ "Cannot save the credit memo.","Die Gutschrift kann nicht gespeichert werden."
197
+ "Cannot send shipment information.","Die Lieferdaten können nicht gesendet werden."
198
+ "Cannot update item quantity.","Artikelmenge kann nicht aktualisiert werden."
199
+ "Cannot update the item\'s quantity.","Artikelmenge kann nicht aktualisiert werden."
200
+ "Card Verification Number","Kreditkartenprüfnummer"
201
+ "Catalog","Katalog"
202
+ "Catalog Price Rules","Katalogpreisregeln"
203
+ "Catalog Rewrites","Katalog-Rewrites"
204
+ "Categories","Kategorien"
205
+ "Category","Kategorie"
206
+ "Category:","Kategorie:"
207
+ "Chart is disabled. If you want to enable chart, click <a href=""%s"">here</a>.","Chart ist deaktiviert. Wenn Sie den Chart aktivieren wollen, klicken Sie <a href=""%s"">hier</a> ."
208
+ "Checkbox","Kontrollkästchen"
209
+ "Child Transactions","Kindertransaktionen"
210
+ "Choose Store View:","Shopansicht auswählen:"
211
+ "Choose an attribute","Ein Attribut auswählen"
212
+ "Chosen category does not associated with any website, so url rewrite is not possible.","Gewählte Kategorie ist mit keiner Webseite verbunden, ein Überschreiben der URL ist nicht möglich."
213
+ "Chosen product does not associated with any website, so url rewrite is not possible.","Gewähltes Produkt ist mit keiner Webseite verbunden, ein Überschreiben der URL ist nicht möglich."
214
+ "Clear","Auswahl aufheben"
215
+ "Close","Schließen"
216
+ "Code","Code"
217
+ "Comment text field cannot be empty.","Das Textfeld für Kommentare darf nicht leer sein."
218
+ "Complete","Abgeschlossen"
219
+ "Config form fieldset clone model required to be able to clone fields","Config Felder-Formular als Klon-Modell erforderlich, um Felder klonen zu können"
220
+ "Configuration","Konfiguration"
221
+ "Confirm New Password","Neues Passwort bestätigen"
222
+ "Confirm token authorization Pop Up for admin","Bestätigen Sie das gewählte Autorisierungs-Popup für Admin"
223
+ "Confirm token authorization for admin","Bestätigen Sie die gewählte Autorisierung für Admin"
224
+ "Confirmation Of Authorization","Bestätigung der Autorisierung"
225
+ "Confirmed email:","Bestätigte E-Mail-Adresse:"
226
+ "Connect with the Magento Community","Mit der Magento-Community verbinden"
227
+ "Continue","Weiter"
228
+ "Convert to Plain Text","In unformatierten Text konvertieren"
229
+ "Cookie (unsafe)","Cookie (unsicher)"
230
+ "Country","Land"
231
+ "Country:","Land:"
232
+ "Coupons","Coupons"
233
+ "Create","Erstellen"
234
+ "Create DB Backup","DB-Sicherungskopie erstellen"
235
+ "Create New Attribute","Neues Attribut erstellen"
236
+ "Create URL Rewrite:","URL-Rewrite erstellen:"
237
+ "Created At","Erstellt um"
238
+ "Credit Card %s","Kreditkarten"
239
+ "Credit Card Number","Kreditkartennummer"
240
+ "Credit Card Number: xxxx-%s","Kreditkartennummer: xxxx-%s"
241
+ "Credit Card Type","Kreditkartentyp"
242
+ "Credit Card Type: %s","Kreditkartentyp: %s"
243
+ "Credit Memo History","Gutschriftverlauf"
244
+ "Credit Memo Totals","Gutschriftensummen"
245
+ "Credit Memos","Gutschriften"
246
+ "Credit memo #%s comment added","Gutschrift #%s Kommentar hinzugefügt"
247
+ "Credit memo #%s created","Gutschrift #%s erstellt"
248
+ "Credit memo\'s total must be positive.","Die Summe aller Gutschriften muss positiv sein."
249
+ "Currency","Währung"
250
+ "Currency ""%s"" is used as %s in %s.","Währung ""%s"" wird verwendet als %s in %s."
251
+ "Currency Information","Währungsdaten"
252
+ "Currency Setup Section","Bereich für Währungseinstellung"
253
+ "Current Configuration Scope:","Aktueller Konfigurationsumfang:"
254
+ "Current Month","Aktueller Monat"
255
+ "Custom","Benutzerdefiniert"
256
+ "Custom Variable ""%s""","Benutzerdefinierte Variable ""% s"""
257
+ "Custom Variables","Benutzerdefinierte Variablen"
258
+ "Customer","Kunde"
259
+ "Customer Group:","Kundengruppe:"
260
+ "Customer Groups","Kundengruppen"
261
+ "Customer Name","Kundenname"
262
+ "Customer Reviews","Kundenbeurteilungen"
263
+ "Customer Shopping Carts","Einkaufswagen von Kunden"
264
+ "Customer Since:","Kunde seit:"
265
+ "Customer Tax Classes","Kundensteuerklassen"
266
+ "Customer with the same email already exists.","Ein Kunde mit derselben E-Mail-Adresse ist bereits vorhanden."
267
+ "Customers","Kunden"
268
+ "Customers by Number of Orders","Kunden nach Anzahl der Bestellungen"
269
+ "Customers by Orders Total","Kunden nach Summe der Bestellungen"
270
+ "DHTML Date/Time Selector","DHTML Datums-/Uhrzeitauswahltool"
271
+ "Dashboard","Dashboard"
272
+ "Data Format","Datenformat"
273
+ "Data transfer:","Datenübertragung:"
274
+ "Database","Datenbank"
275
+ "Dataflow - Advanced Profiles","Datenübertragung - Erweiterte Profile"
276
+ "Dataflow - Profiles","Datenübertragung - Profile"
277
+ "Date","Datum"
278
+ "Date & Time","Datum & Uhrzeit"
279
+ "Date Added","Hinzugefügt am (Datum)"
280
+ "Date Updated","Aktualisiert am (Datum)"
281
+ "Date selection:","Datumsauswahl:"
282
+ "Date selector","Datumsauswahltool"
283
+ "Day","Tag"
284
+ "Decimal separator:","Dezimaltrennzeichen:"
285
+ "Default (Admin) Values","Standardwerte (Admin)"
286
+ "Default Billing Address","Standardrechnungsadresse"
287
+ "Default Config","Standardkonfig."
288
+ "Default Template from Locale","Standardvorlage von Gebietsschema"
289
+ "Default Values","Standardwerte"
290
+ "Default display currency ""%s"" is not available in allowed currencies.","Im Display angezeigte Währung ""% s"" ist nicht in zugelassenen Währungen verfügbar."
291
+ "Default scope","Standardumfang"
292
+ "Delete","Löschen"
293
+ "Delete %s","%s löschen"
294
+ "Delete %s '%s'","%s '%s' löschen"
295
+ "Delete File","Datei löschen"
296
+ "Delete Image","Bild löschen"
297
+ "Delete Profile","Profil löschen"
298
+ "Delete Role","Rolle löschen"
299
+ "Delete Store","Laden löschen"
300
+ "Delete Store View","Ladenansicht löschen"
301
+ "Delete Template","Vorlage löschen"
302
+ "Delete User","Benutzer löschen"
303
+ "Delete Website","Website löschen"
304
+ "Description","Beschreibung"
305
+ "Design","Design"
306
+ "Design Section","Design-Bereich"
307
+ "Details","Details"
308
+ "Developer Section","Entwicklerbereich"
309
+ "Direction:","Richtung:"
310
+ "Disable","Deaktivieren"
311
+ "Disabled","Deaktiviert"
312
+ "Display %s first","%s zuerst anzeigen"
313
+ "Display default currency","Standardwährung anzeigen"
314
+ "Distributed under GNU LGPL. See %s for details.","Vertrieb unter GNU LGPL. Zu Details siehe %s."
315
+ "Do you really want to KILL parallel process and start new indexing process?","Parallelprozess wirklich BEENDEN und neuen Indexerstellungsprozess starten?"
316
+ "Do you really want to proceed?","Möchten Sie wirklich fortfahren?"
317
+ "Download","Download"
318
+ "Downloads","Downloads"
319
+ "Drag to move","Zum Verschieben ziehen"
320
+ "Drop-down","Dropdown"
321
+ "Edit","Bearbeiten"
322
+ "Edit Design Change","Designänderung bearbeiten"
323
+ "Edit Email Template","E-Mail-Vorlage bearbeiten"
324
+ "Edit Order","Ordner bearbeiten"
325
+ "Edit Poll","Umfrage aufbereiten"
326
+ "Edit Queue","Warteschlange bearbeiten"
327
+ "Edit Review","Bewertung aufbereiten"
328
+ "Edit Role","Rolle bearbeiten"
329
+ "Edit Store View","Ladenansicht bearbeiten"
330
+ "Edit System Template","Systemvorlage bearbeiten"
331
+ "Edit Template","Vorlage bearbeiten"
332
+ "Edit URL Rewrite","URL-Rewrite bearbeiten"
333
+ "Edit User","Nutzer aufbereiten"
334
+ "Edit User '%s'","Benutzer '%s' bearbeiten"
335
+ "Edit Website","Website bearbeiten"
336
+ "Email","E-Mail"
337
+ "Email Address:","Email-Adresse:"
338
+ "Email Preview","E-Mail-Vorschau"
339
+ "Email to a Friend","E-Mail an einen Freund"
340
+ "Email:","E-Mail:"
341
+ "Enable","Aktivieren"
342
+ "Enabled","Aktiviert"
343
+ "Enclose Values In:","Werte einschließen in:"
344
+ "Entity Attributes","Entitätenattribute"
345
+ "Entity Type","Entitätstyp"
346
+ "Entity type:","Art der Organisation:"
347
+ "Error","Fehler"
348
+ "Excel XML","Excel-XML"
349
+ "Excl. Tax","Ausschl. Steuer"
350
+ "Exclude media folder from backup","Medienordner vom Backup ausnehmen"
351
+ "Expiration Date","Ablaufdatum"
352
+ "Expiration Date: %s/%s","Ablaufdatum: %s/%s"
353
+ "Export","Export"
354
+ "Export CSV","CSV exportieren"
355
+ "Export Filters","Filter exportieren"
356
+ "Export to:","Exportieren an:"
357
+ "Export:","Export:"
358
+ "FTP Host","FTP-Host"
359
+ "FTP Host[:Port]","FTP Host[:Port]"
360
+ "FTP Login","FTP Login"
361
+ "FTP Password","FTP Passwort"
362
+ "FTP credentials","FTP-Berechtigungen"
363
+ "Failed","Fehlgeschlagen"
364
+ "Failed to add a product to cart by id ""%s"".","Kein Produkt in den Warenkorb von ID ""% s"" gelegt."
365
+ "Failed to cancel the billing agreement.","Stornierung der Zahlungsvereinbarung fehlgeschlagen."
366
+ "Failed to clear the JavaScript/CSS cache.","Leeren des JavaScript/CSS-Caches fehlgeschlagen."
367
+ "Failed to delete the billing agreement.","Aufheben der Zahlungsvereinbarung fehlgeschlagen."
368
+ "Failed to update the profile.","Aktualisierung des Profils fehlgeschlagen."
369
+ "Field","Feld"
370
+ "Field Mapping","Feldzuordnung"
371
+ "File","Datei"
372
+ "File Information","Dateiinformation"
373
+ "File System","Dateisystem"
374
+ "File mode","Dateimodus"
375
+ "File name:","Dateiname:"
376
+ "File size should be more than 0 bytes","Dateigröße sollte mehr als 0 Byte betragen."
377
+ "Finished profile execution.","Profilausführung fertig."
378
+ "First Invoice Created Date","Erstellungsdatum der ersten Rechnung"
379
+ "First Name","Vorname"
380
+ "First Name is required field.","Vorname ist ein Pflichtfeld."
381
+ "First Name:","Vorname:"
382
+ "Fixed","Feststehend"
383
+ "Flush Catalog Images Cache","Katalogbildercache leeren"
384
+ "Flush JavaScript/CSS Cache","JavaScript/CSS-Cache leeren"
385
+ "For category","Für Kategorie"
386
+ "For latest version visit: %s","Neueste Version siehe: %s"
387
+ "For product","Für Produkt"
388
+ "Forgot Admin Password","Admin-Passwort vergessen"
389
+ "Forgot your password?","Passwort vergessen?"
390
+ "Forgot your user name or password?","Haben Sie Ihren Benutzernamen oder Ihr Passwort vergessen?"
391
+ "From","von"
392
+ "GLOBAL","ALLGEMEIN"
393
+ "Gb","GB"
394
+ "General Information","Allgemeine Angaben"
395
+ "General Section","Allgemeiner Bereich"
396
+ "Get Image Base64","Get Image Base64"
397
+ "Get help for this page","Hilfe zu dieser Seite einholen"
398
+ "Give the verifier code to application administrator","Geben Sie den Prüfer-Code zum Anwendungsadministrator an"
399
+ "Global Attribute","Allgemeines Attribut"
400
+ "Global Record Search","Globale Eintragssuche"
401
+ "Global Search","Allgemeine Suche"
402
+ "Go Today","Heute aktiv werden"
403
+ "Go to messages inbox","Zum Posteingang"
404
+ "Go to notifications","Zu den Benachrichtigungen"
405
+ "Google Base","Google Base"
406
+ "Google Content","Google Inhalte"
407
+ "Google Sitemaps","Google Sitemaps"
408
+ "Grand Total","Rechnungsbetrag"
409
+ "Grid (default) / List","Tabelle (Standard)/Liste"
410
+ "Grid Only","Grid Only"
411
+ "Group:","Gruppe:"
412
+ "Guest","Gast"
413
+ "HTTP (unsecure)","HTTP (unsicher)"
414
+ "HTTPS (SSL)","HTTPS (SSL)"
415
+ "Help Us Keep Magento Healthy - Report All Bugs","Helfen Sie uns, Magento sauber zu halten - Melden Sie alle Fehler"
416
+ "Helper attributes should not be used in custom layout updates.","Helfereigenschaften sollten nicht in den benutzerdefinierten Layoutaktualisierungen verwendet werden."
417
+ "Helper for options rendering doesn't implement required interface.","Hilfsfunktion für Wiedergabemöglichkeiten richtet erforderliche Schnittstelle nicht ein."
418
+ "Home","Startseite"
419
+ "ID","ID"
420
+ "ID Path","ID-Pfad"
421
+ "IP Address","IP-Adresse"
422
+ "IPN (Instant Payment Notification) Only","Nur IPN (Sofortzahlungsbenachrichtigung)"
423
+ "Id","Id"
424
+ "If there is an account associated with %s you will receive an email with a link to reset your password.","Wenn ein Konto mit %s verknüpft ist, erhalten Sie eine E-Mail mit einem Link für das Resetten Ihres Passworts."
425
+ "If this message persists, please contact the store owner.","Wenn diese Meldung weiterhin angezeigt wird, wenden Sie sich bitte an den Ladeneigentümer."
426
+ "If you do not specify an option value for a specific store view then the default (Admin) value will be used.","Wenn Sie keinen Optionswert für eine bestimmte Store-Ansicht angeben, wird der Standardwert (Admin) verwendet."
427
+ "Images (.gif, .jpg, .png)","Bilder (.gif, .jpg, .png)"
428
+ "Images Cache","Bildercache"
429
+ "Import","Importieren"
430
+ "Import Service","Importdienst"
431
+ "Import and Export","Importieren und exportieren"
432
+ "Import and Export Tax Rates","Steuersätze importieren und exportieren"
433
+ "Import/Export","Importieren/Exportieren"
434
+ "Import/Export Advanced","Import/Export Erweitert"
435
+ "Import/Export Profile","Profil importieren/exportieren"
436
+ "Important: ","Wichtig:"
437
+ "Imported <strong>%s</strong> records","Importierte <strong>%s</strong> Datensätze"
438
+ "In","In"
439
+ "In Database:","In Datenbank:"
440
+ "In File:","In Datei:"
441
+ "Inactive","Inaktiv"
442
+ "Incl. Tax","Einschl. Steuern"
443
+ "Incoming Message","Eingehende Nachricht"
444
+ "Insert Variable...","Variable einfügen..."
445
+ "Interactive","Interaktiv"
446
+ "Interface Locale: %s","Interface Locale: %s"
447
+ "Invalid Form Key. Please refresh the page.","Ungültiger Formularschlüssel. Aktualisieren Sie die Seite."
448
+ "Invalid Import Service Specified","Ungültiger Importdienst angegeben"
449
+ "Invalid POST data (please check post_max_size and upload_max_filesize settings in your php.ini file).","Ungültige POST-Daten (prüfen Sie die Einstellungen für post_max_size und upload_max_filesize in Ihrer php.ini-Datei)."
450
+ "Invalid Secret Key. Please refresh the page.","Ungültiger Geheimschlüssel. Aktualisieren Sie die Seite."
451
+ "Invalid User Name or Password.","Benutzername oder Passwort ungültig."
452
+ "Invalid directory: %s","Ungültiges Verzeichnis: %s"
453
+ "Invalid email address ""%s"".","Ungültige E-Mail-Adresse ""%s""."
454
+ "Invalid email address.","Ungültige E-Mail-Adresse."
455
+ "Invalid file: %s","Ungültige Datei: %s"
456
+ "Invalid input data for %s => %s rate","Ungültige Eingabedaten für %s => %s Rate"
457
+ "Invalid parent block for this block","Ungültiger Elternblock für diesen Block"
458
+ "Invalid parent block for this block.","Ungültiger übergeordneter Block für diesen Block."
459
+ "Invalid password reset token.","Ungültiger Token für das Resetten des Passworts."
460
+ "Invalid sender name ""%s"". Please use only visible characters and spaces.","Ungültiger Absendername ""%s"". Bitte verwenden Sie nur lesbare Zeichen und Leerzeichen."
461
+ "Invalid timezone","Ungültige Zeitzone"
462
+ "Invalidated","Ungültig gemacht"
463
+ "Inventory Stock Status","Vorratsbestand Status"
464
+ "Invoice #%s comment added","Rechnung #%s - Kommentar hinzugefügt"
465
+ "Invoice #%s created","Rechnung #%s erstellt"
466
+ "Invoice History","Rechnungsverlauf"
467
+ "Invoice Totals","Rechnungssummen"
468
+ "Invoice canceling error.","Fehler beim Stornieren der Rechnung."
469
+ "Invoice capturing error.","Fehler beim Erfassen der Rechnung."
470
+ "Invoice voiding error.","Fehler beim Ungültigmachen der Rechnung."
471
+ "Invoices","Rechnungen"
472
+ "Is Closed","Ist geschlossen"
473
+ "Is Default","Ist Standard"
474
+ "Issue Number","Ausstellnummer"
475
+ "Items","Elemente"
476
+ "JavaScript seems to be disabled in your browser.","JavaScript scheint in Ihrem Browser deaktiviert zu sein."
477
+ "JavaScript/CSS","JavaScript/CSS"
478
+ "JavaScript/CSS Cache","JavaScript/CSS-Cache"
479
+ "Kb","KB"
480
+ "Last 24 Hours","Letzte 24 Stunden"
481
+ "Last 5 Orders","Letzte 5 Bestellungen"
482
+ "Last 5 Search Terms","Letzte 5 Suchbegriffe"
483
+ "Last 7 Days","Letzte 7 Tage"
484
+ "Last Credit Memo Created Date","Datum der letzten Gutschrifterstellung"
485
+ "Last Invoice Created Date","Datum der letzten Rechnungserstellung"
486
+ "Last Logged In (%s):","Zuletzt angemeldet (%s):"
487
+ "Last Logged In:","Letzte Anmeldung:"
488
+ "Last Name","Nachname"
489
+ "Last Name is required field.","Das Feld 'Nachname' muss ausgefüllt werden."
490
+ "Last Name:","Nachname:"
491
+ "Last updated: %s. To refresh last day\'s <a href=""%s"">statistics</a>, click <a href=""%s"">here</a>.","Zuletzt aktualisiert: %s. Um die <a href=""%s"">Statistiken</a> von gestern zu aktualisieren, klicken Sie <a href=""%s"">hier</a>."
492
+ "Latest Message:","Neueste Meldung:"
493
+ "Layered Navigation Indices","Layered Navigation-Indizes"
494
+ "Layered Navigation Indices were refreshed.","Layered Navigation Indices wurden aktualisiert."
495
+ "Leave empty to use tax identifier","Frei lassen, um Steuernummer einzusetzen"
496
+ "Lifetime Sales","Gesamtumsatz"
497
+ "Lifetime statistics have been updated.","Lebenslange Statistik wurde aktualisiert."
498
+ "Links","Links"
499
+ "Links with associated products will retain only after saving current product.","Links mit verknüpften Produkten werden nur beibehalten, nachdem das aktuelle Produkt gespeichert wurde."
500
+ "List (default) / Grid","Liste (Standard)/Tabelle"
501
+ "List Only","Nur Liste"
502
+ "Load Template","Vorlage laden"
503
+ "Load default template","Standardvorlage laden"
504
+ "Loading...","Laden ..."
505
+ "Local Server","Lokaler Server"
506
+ "Local/Remote Server","Lokaler Server/Remote-Server"
507
+ "Locale","Gebietsschema"
508
+ "Log In","Login"
509
+ "Log Out","Abmelden"
510
+ "Log in to Admin Panel","Beim Admin-Panel anmelden"
511
+ "Log in to use <strong>%s</strong>","Loggen Sie sich ein, um <strong>%s</strong> zu verwenden"
512
+ "Log into Magento Admin Page","Bei der Magento Admin-Seite anmeldne"
513
+ "Logged in as %s","Angemeldet als %s"
514
+ "Login","Login"
515
+ "Low Stock","Vorratsbestand niedrig"
516
+ "MAJOR","größer"
517
+ "MINOR","KLEINER"
518
+ "MS Excel XML","MS Excel XML"
519
+ "Magento Admin","Magento Admin"
520
+ "Magento Commerce - Administrative Panel","Magento Commerce - Verwaltungspanel"
521
+ "Magento Connect","Magento Connect"
522
+ "Magento Connect Manager","Magento Connect-Manager"
523
+ "Magento Logo","Magento-Logo"
524
+ "Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.","Magento ist ein Warenzeichen von Magento Inc. Copyright &copy; %s Magento Inc."
525
+ "Magento root directory","Magento-Rootverzeichnis"
526
+ "Magento ver. %s","Magento Version %s"
527
+ "Magento&trade; is a trademark of Magento Inc.<br/>Copyright &copy; %s Magento Inc.","Magento&trade; ist ein Warenzeichen von Magento Inc.<br/>Copyright &copy; %s Magento Inc."
528
+ "Make sure that data encoding in the file is consistent and saved in one of supported encodings (UTF-8 or ANSI).","Achten Sie darauf, dass die Datenkodierung in der Datei konsistent ist und in einem unterstützten Kodierungsformat gespeichert wird (UTF-8 oder ANSI)."
529
+ "Manage Attribute Sets","Attributmengen verwalten"
530
+ "Manage Attributes","Attribute verwalten"
531
+ "Manage Categories","Kategorien verwalten"
532
+ "Manage Content","Inhalt verwalten"
533
+ "Manage Currency Rates","Wechselkurse verwalten"
534
+ "Manage Currency Symbols","Währungssymbole verwalten"
535
+ "Manage Customers","Kunden verwalten"
536
+ "Manage Options (values of your attribute)","Optionen verwalten (Werte Ihres Attributs)"
537
+ "Manage Ratings","Bewertungen verwalten"
538
+ "Manage Stores","Läden verwalten"
539
+ "Manage Tax Rules","Steuerregeln verwalten"
540
+ "Manage Tax Zones and Rates","Steuergebiete und -sätze verwalten"
541
+ "Manage Titles (Size, Color, etc.)","Kopfzeilen verwalten (Größe, Farbe, etc.)"
542
+ "Manual","Manuell"
543
+ "Matched Expression","Übereinstimmender Ausdruck"
544
+ "Maximum sender name length is 255. Please correct your settings.","Maximale Absender-Länge beträgt 255 Zeichen. Bitte korrigieren Sie Ihre Einstellungen."
545
+ "Mb","MB"
546
+ "Media (.avi, .flv, .swf)","Medien (.avi, .flv, .swf)"
547
+ "Media storages synchronization has completed!","Synchronisation des Medienspeichers fertiggestellt!"
548
+ "Messages Inbox","Eingehende Nachrichten"
549
+ "Month","Monat"
550
+ "Most Viewed","Am häufigsten angezeigt"
551
+ "Most Viewed Products","Meistgesehene Produkte"
552
+ "Multiple Select","Mehrfachauswahl"
553
+ "My Account","Mein Konto"
554
+ "My Applications","Meine Applikationen"
555
+ "N/A","N.Z."
556
+ "NOTICE","Hinweis"
557
+ "Name","Name"
558
+ "Name on Card","Name des Inhabers"
559
+ "Name on the Card: %s","Name des Inhabers: %s"
560
+ "Name:","Name:"
561
+ "Never (production)","Nie (Produktion)"
562
+ "New ","Neu"
563
+ "New API Key","Neuer API-Schlüssel"
564
+ "New Accounts","Neue Konten"
565
+ "New Attribute","Neues Attribut"
566
+ "New Block","Neuer Block"
567
+ "New Category","Neue Kategorie"
568
+ "New Class","Neue Klasse"
569
+ "New Condition","Neue Bedingung"
570
+ "New Custom Variable","Neue Kundenvariable"
571
+ "New Customer","Neuer Kunde"
572
+ "New Customers","Neue Kunden"
573
+ "New Design Change","Neue Designänderung"
574
+ "New Email Template","Neue Email-Vorlage"
575
+ "New Group","Neue Gruppe"
576
+ "New Invoice","Neue Rechnung"
577
+ "New Item Type","Neuer Elementtyp"
578
+ "New Memo","Neues Memo"
579
+ "New Memo for #%s","Neues Memo für #%s"
580
+ "New Page","Neue Seite"
581
+ "New Password","Neues Passwort"
582
+ "New Poll","Neue Umfrage"
583
+ "New Profile","Neues Profil"
584
+ "New Rate","Neue Rate"
585
+ "New Rating","Neue Bewertung"
586
+ "New Review","Neue Beurteilung"
587
+ "New Role","Neue Rolle"
588
+ "New Rule","Neue Regel"
589
+ "New Search","Neue Suche"
590
+ "New Set","Neuer Satz"
591
+ "New Shipment","Neue Lieferung"
592
+ "New Sitemap","Neue Sitemap"
593
+ "New Store View","Neue Ladenansicht"
594
+ "New System Template","Neue Systemvorlage"
595
+ "New Tag","Neues Tag"
596
+ "New Template","Neue Vorlage"
597
+ "New User","Neuer Benutzer"
598
+ "New Variable","Neue Variable"
599
+ "New Website","Neue Website"
600
+ "New attribute set mapping","Neues Set Mapping Attribut"
601
+ "New password field cannot be empty.","Das Feld für das neue Passwort kann nicht leer sein."
602
+ "Newsletter","Newsletter"
603
+ "Newsletter Problems","Newsletter-Probleme"
604
+ "Newsletter Queue","Newsletter-Warteschlange"
605
+ "Newsletter Subscribers","Newsletter-Abonnenten"
606
+ "Newsletter Templates","Newsletter-Vorlagen"
607
+ "Next month (hold for menu)","Folgemonat (für Menü gedrückt halten)"
608
+ "Next year (hold for menu)","Nächstes Jahr (halten für Menü)"
609
+ "No","Nein"
610
+ "No (price without tax)","Nein (Preis vor Steuern)"
611
+ "No Data","Keine Daten"
612
+ "No Data Found","Keine Daten gefunden"
613
+ "No Templates Found","Keine Vorlagen gefunden"
614
+ "No change","Keine Änderung"
615
+ "No customer id defined.","Keine Kunden-ID definiert."
616
+ "No information available.","Keine Informationen verfügbar."
617
+ "No profile loaded...","Kein Profil geladen..."
618
+ "No records found for this period.","Keine Datensätze gefunden für diesen Zeitraum."
619
+ "No records found.","Keine Datensätze gefunden."
620
+ "No report code specified.","Kein Berichtcode angegeben."
621
+ "No search keywords.","Keine Suchstichwörter."
622
+ "No search modules were registered","Keine registrierten Suchmodule"
623
+ "No wishlist item id defined.","Keine Wunschlisten-ID definiert."
624
+ "None","Keins"
625
+ "Note:","Hinweis:"
626
+ "Notes","Hinweise"
627
+ "Notifications","Benachrichtigungen:"
628
+ "Number of Orders","Zahl der Bestellungen"
629
+ "Number of Uses","Zahl der Verwendungen"
630
+ "Number of Views","Anzahl der Ansichten"
631
+ "Number of records:","Zahl der Datensätze:"
632
+ "OAuth Consumers","OAuth Verbraucher"
633
+ "OAuth authorization for admin","OAuth Autorisierung für Admin"
634
+ "OAuth authorization simple for admin","OAuth Autorisierung einfach für Admin"
635
+ "OK","OK"
636
+ "Old rate:","Alter Satz:"
637
+ "Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Nachdem Sie in Ihr erweitertes PayPal-Konto eingeloggt sind, navigieren Sie zum Menü Service-Einstellungen - gehostete Checkout-Seiten - Set Up-Menü und legen Sie die unten beschriebenen Optionen an"
638
+ "Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Nachdem Sie in Ihr Konto PayPal Payflow Link eingeloggt sind, navigieren Sie zum Menü Service-Einstellungen - gehostete Checkout-Seiten - Set Up-Menü und legen Sie die unten beschriebenen Optionen an"
639
+ "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","Eine oder mehrere Mediendateien konnten nicht synchronisiert werden während der Synchronisation des Medienspeichers. Sie finden mehr Details in den Logdateien."
640
+ "One or more of the Cache Types are invalidated:","Mindestens ein Cache-Typ wurde für ungültig befunden:"
641
+ "Online Customers","Online-Kunden"
642
+ "Only Once (version upgrade)","Nur einmal (Upgrade der Version)"
643
+ "Only attributes with scope ""Global"", input type ""Dropdown"" and Use To Create Configurable Product ""Yes"" are available.","Nur Einstellungen im Anwendungsbereich ""Global"", der Eingabetyp ""Dropdown"" und Verwenden, um ein konfigurierbares Produkt zu erstellen ""Ja"" sind verfügbar."
644
+ "Only mapped fields","Nur zugeordnete Felder"
645
+ "Optional","Optional"
646
+ "Options","Optionen"
647
+ "Options is required","Optionen ist obligatorisch"
648
+ "Order","Bestellung"
649
+ "Order #%s","Bestellnr. %s"
650
+ "Order #%s (%s)","Auftrag #%s (%s)"
651
+ "Order Created Date","Datum der Auftragserstellung"
652
+ "Order ID","Auftrags-ID"
653
+ "Order Totals","Bestellsummen"
654
+ "Order Updated Date","Datum der Auftragsaktualisierung"
655
+ "Order Updated Date report is real-time, does not need statistics refreshing.","Der Bericht über das Datum der Auftragsaktualisierung wird in Echtzeit erstellt; die Statistik braucht nicht aktualisiert zu werden."
656
+ "Orders","Bestellungen"
657
+ "Original Magento attribute names in first row:","Ursprüngliche Magento-Attributnamen in erster Zeile:"
658
+ "Out of stock","Ausverkauft"
659
+ "PDT (Payment Data Transfer) Only","Nur PDT (Zahlungsdatenübertragung)"
660
+ "Package Extensions","Paketerweiterungen"
661
+ "Pages","Seiten"
662
+ "Parent Product Thumbnail","Miniaturbild für Elternprodukt"
663
+ "Parent Transaction ID","Transaktions-ID für Eltern"
664
+ "Passive mode","Passiver Modus"
665
+ "Password","Passwort"
666
+ "Password Confirmation","Passwortbestätigung"
667
+ "Password confirmation must be same as password.","Kennwort-Bestätigung stimmt nicht mit Kennwort überein."
668
+ "Password must be at least of %d characters.","Das Passwort muss mindestens %d Zeichen lang sein."
669
+ "Password must include both numeric and alphabetic characters.","Das Passwort muss sowohl numerische als auch alphabetische Zeichen enthalten."
670
+ "Password:","Kennwort:"
671
+ "Path:","Pfad:"
672
+ "Payment method instance is not available.","Zahlungsforminstanz ist nicht verfügbar."
673
+ "Payment method is not available.","Zahlungsform ist nicht verfügbar."
674
+ "Payment method must be specified.","Angabe der Zahlungsmethode erforderlich."
675
+ "Pending Reviews","Ausstehende Beurteilungen"
676
+ "Pending Tags","Ausstehende Tags"
677
+ "Per Item","Je Element"
678
+ "Per Order","Je Bestellung"
679
+ "Percent","Prozent"
680
+ "Performed At","Ausgeführt Um"
681
+ "Period","Zeitraum"
682
+ "Permanent (301)","Ständig (301)"
683
+ "Permissions","Rechte"
684
+ "Personal Information","Persönliche Angaben"
685
+ "Phone:","Telefon:"
686
+ "Please Select","Bitte auswählen"
687
+ "Please confirm site switching. All data that hasn\'t been saved will be lost.","Bestätigen Sie den Website-Wechsel. Alle nicht gespeicherten Daten gehen verloren."
688
+ "Please enter 6 or more characters.","Geben Sie mindestens 6 Zeichen ein."
689
+ "Please enter a number greater than 0 in this field.","Geben Sie in dieses Feld eine Zahl ein, die größer als 0 ist."
690
+ "Please enter a valid $ amount. For example $100.00.","Geben Sie einen gültigen Betrag in $ ein. Beispiel: $100,00."
691
+ "Please enter a valid URL. For example http://www.example.com or www.example.com","Geben Sie eine gültige URL ein. Beispiel: http://www.beispiel.com oder www.beispiel.com."
692
+ "Please enter a valid URL. http:// is required","Geben Sie eine gültige URL ein. Sie müssen http:// angeben."
693
+ "Please enter a valid credit card number.","Geben Sie bitte eine gültige Kreditkartennummer ein."
694
+ "Please enter a valid date.","Geben Sie ein gültiges Datum ein."
695
+ "Please enter a valid email address. For example johndoe@domain.com.","Geben Sie eine gültige E-Mail-Adresse ein. Beispiel: johndoe@domain.com."
696
+ "Please enter a valid email.","Geben Sie bitte ein gültige Email-Adresse an."
697
+ "Please enter a valid number in this field.","Geben Sie eine gültige Zahl in dieses Feld ein."
698
+ "Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.","Geben Sie eine gültige Telefonnummer ein. Beispiel: (123) 456-7890 oder 123-456-7890."
699
+ "Please enter a valid social security number. For example 123-45-6789.","Geben Sie eine gültige Steuernummer ein. Beispiel: 012-34-5678-90."
700
+ "Please enter a valid value from list","Geben Sie einen gültigen Wert aus der Liste ein."
701
+ "Please enter a valid value, ex: 10,20,30","Geben Sie einen gültigen Wert ein, Beispiel: 10,20,30"
702
+ "Please enter a valid zip code.","Geben Sie eine gültige PLZ ein."
703
+ "Please enter a valid zip code. For example 90602 or 90602-1234.","Geben Sie eine gültige Postleitzahl ein. Beispiel: 90602."
704
+ "Please enter another credit card number to complete your purchase.","Bitte geben Sie eine andere Kreditkarten-Nummer ein, um Ihren Kauf abzuschließen."
705
+ "Please enter password","Bitte Passwort eingeben"
706
+ "Please enter password to confirm rollback.","Zum Bestätigen des Zurücksetzens bitte Passwort eingeben"
707
+ "Please enter valid password.","Geben Sie ein gültiges Passwort ein."
708
+ "Please make sure that all global admin search modules are installed and activated.","Stellen Sie sicher, dass alle allgemeinen Admin-Suchmodule installiert und aktiviert sind."
709
+ "Please make sure that your changes were saved before running the profile.","Vergewissern Sie sich, dass vor Ausführung des Profils Ihre Änderungen gespeichert wurden."
710
+ "Please make sure your passwords match.","Achten Sie darauf, dass Ihre Passwörter übereinstimmen."
711
+ "Please select State/Province.","Wählen Sie bitte Staat/Bundesland aus."
712
+ "Please select a customer.","Wählen Sie einen Kunden aus."
713
+ "Please select a store.","Wählen Sie einen Laden aus."
714
+ "Please select an option.","Bitte wählen Sie eine Option."
715
+ "Please select catalog searches.","Wählen Sie Katalogsuchen aus."
716
+ "Please select customer(s).","Wählen Sie (einen) Kunden aus."
717
+ "Please select message(s).","Bitte Nachricht(en) auswählen."
718
+ "Please select one of the above options.","Wählen Sie bitte eine der obigen Optionen aus."
719
+ "Please select one of the options.","Wählen Sie eine der Optionen aus."
720
+ "Please select review(s).","Wählen Sie (eine) Beurteilung aus."
721
+ "Please select tag(s).","Wählen Sie bitte einen oder mehrere Tags aus."
722
+ "Please specify backup creation options","Bitte die Optionen für die Ausführung des Backups bestimmen"
723
+ "Please specify the admin custom URL.","Geben Sie bitte die Admin-URL des Kunden ein."
724
+ "Please try to logout and sign in again.","Melden Sie sich ab und melden Sie sich dann erneut an."
725
+ "Please type the letters from the image:","Bitte geben Sie die Buchstaben auf diesem Bild ein:"
726
+ "Please use in this field only ""a-z,0-9,_"".","Bitte verwenden Sie in diesem Feld nur ""a-z,0-9._""."
727
+ "Please use letters only (a-z) in this field.","Benutzen Sie in diesem Feld bitte nur Buchstaben (a-z)."
728
+ "Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas.","Bitte verwenden Sie in diesem Feld nur Zahlen. Vermeiden Sie bitte Leerzeichen und andere Zeichen, wie Punkt oder Komma."
729
+ "Please use only letters (a-z or A-Z), numbers (0-9) or spaces in this field.","Geben Sie in dieses Feld bitte nur Buchstaben (a-z or A-Z), Ziffern (0-9) oder Leerzeichen ein."
730
+ "Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed.","Benutzen Sie in diesem Feld bitte nur Buchstaben (a-z) oder Ziffern (0-9). Erlaubt sind weder Leer- noch andere Zeichen."
731
+ "Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field.","Geben Sie nur Buchstaben (a-z) oder Zahlen (0-9) oder Leerzeichen und das Rautenzeichen (#) in dieses Feld ein."
732
+ "Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.","Verwenden Sie dieses Datumsformat: tt.mm.jjjj. Beispiel: 17.03.2006 für den 17. März 2006."
733
+ "Please wait while the indexes are being refreshed.","Die Indizes werden aktualisiert. Bitte haben Sie einen Moment Geduld."
734
+ "Please wait, loading...","Daten werden geladen, bitte warten ..."
735
+ "Please wait...","Bitte warten..."
736
+ "Please, add some answers to this poll first.","Geben Sie zuerst einige Antworten auf diese Umfrage ein."
737
+ "Please, select ""Visible in Stores"" for this poll first.","Bitte erst ""In Shops sichtbar"" für diese Umfrage wählen."
738
+ "Poll Manager","Umfagemanager"
739
+ "Polls","Umfragen"
740
+ "Popular","Beliebt"
741
+ "Position","Position"
742
+ "Position of Watermark for %s","Position des Wasserzeichens für %s"
743
+ "Pregenerated product images files.","Vorgenerierte Produktbilddateien."
744
+ "Prev. month (hold for menu)","Vormonat (für Menü gedrückt halten)"
745
+ "Prev. year (hold for menu)","Vorheriges Jahr (halten für Menü)"
746
+ "Preview","Vorschau"
747
+ "Preview Template","Vorlagenvorschau"
748
+ "Price","Preis"
749
+ "Price alert subscription was saved.","Preiswarnungsabo wurde gespeichert."
750
+ "Price:","Preis:"
751
+ "Processed <strong>%s%% %s/%d</strong> records","Verarbeitete <strong>%s%% %s/%d</strong> Datensätze"
752
+ "Product","Produkt"
753
+ "Product Name","Produktbezeichnung"
754
+ "Product Reviews","Produktbeurteilungen"
755
+ "Product Tax Classes","Produktsteuerklassen"
756
+ "Product Thumbnail Itself","Produktvorschau selbst"
757
+ "Product is not loaded.","Produkt wurde nicht geladen."
758
+ "Product:","Produkt:"
759
+ "Products","Produkte"
760
+ "Products Bestsellers Report","Bericht meistverkaufte Produkte"
761
+ "Products Most Viewed Report","Bericht zu den meistgesehenen Produkten"
762
+ "Products Ordered","Bestellte Produkte"
763
+ "Products in Carts","Produkte im Einkaufswagen"
764
+ "Profile Action","Profilaktion"
765
+ "Profile Actions XML","Profilaktionen XML"
766
+ "Profile Direction","Profilrichtung"
767
+ "Profile History","Profilverlauf"
768
+ "Profile Information","Profilinformationen"
769
+ "Profile Name","Profilname"
770
+ "Profile Payments","Profilzahlungen"
771
+ "Profile Schedule","Profile-Termine"
772
+ "Profile Wizard","Profil-Assistent"
773
+ "Profiles","Profile"
774
+ "Promo","Werbeaktion"
775
+ "Promotions","Werbeaktionen"
776
+ "Purchased Item","Gekaufter Artikel"
777
+ "Put store on the maintenance mode while backup creation","Versetzen Sie vor einer Sicherung den Speicher in den Wartungsmodus"
778
+ "Put store on the maintenance mode while rollback processing","Während der Durchführung der Wiederherstellung auf den Wartungsmodus verlassen"
779
+ "Quantity","Stückzahl"
780
+ "Queue Refresh","Warteschlange aktualisieren"
781
+ "Queued... Cancel","In Warteschlange ... Abbrechen"
782
+ "REST Roles","REST-Rollen"
783
+ "Radio Buttons","Optionsschaltflächen"
784
+ "Rates","Kurse"
785
+ "Read details","Details lesen"
786
+ "Rebuild","Erneut aufbauen"
787
+ "Rebuild Catalog Index","Katalogindex erneut aufbauen"
788
+ "Rebuild Flat Catalog Category","Flat Catalog-Kategorie erneut aufbauen"
789
+ "Rebuild Flat Catalog Product","Flat Catalog-Produkt erneut aufbauen"
790
+ "Recent Orders","Letzte Bestellungen"
791
+ "Recent statistics have been updated.","Neueste Statistiken sind aktualisiert worden."
792
+ "Recurring Profile View","Wiederkehrende Profilansicht"
793
+ "Recursive Dir","Rekursives Verz."
794
+ "Redirect","Umleiten"
795
+ "Reference","Verweis"
796
+ "Reference ID","Verweis-ID"
797
+ "Refresh","Aktualisieren"
798
+ "Refresh Now*","Jetzt aktualisieren*"
799
+ "Refresh Statistics","Statistiken aktualisieren"
800
+ "Region/State","Region/Staat"
801
+ "Regular Price:","Normalpreis:"
802
+ "Reject","Verwerfen"
803
+ "Reject token authorization Pop Up for admin","Ablehnen des gewählten Popups der Autorisierung für Admin"
804
+ "Reject token authorization for admin","Ablehnen der gewählten Autorisierung für Admin"
805
+ "Rejection Of Authorization","Ablehnung der Autorisierung"
806
+ "Release","Freigeben"
807
+ "Release Stability","Stabilität freigeben"
808
+ "Release Version","Version freigeben"
809
+ "Reload captcha","Captcha neu laden"
810
+ "Remote FTP","Remote-FTP"
811
+ "Remove","Entfernen"
812
+ "Reports","Berichte"
813
+ "Request Path","Anforderungspfad"
814
+ "Required","Erforderlich"
815
+ "Reset","Zurücksetzen"
816
+ "Reset Filter","Filter zurücksetzen"
817
+ "Reset Password","Passwort zurücksetzen"
818
+ "Reset a Password","Passwort zurücksetzen"
819
+ "Resize","Größe ändern"
820
+ "Resource Access","Zugriff auf Ressource"
821
+ "Resources","Mittel"
822
+ "Results","Ergebenisse"
823
+ "Retrieve Password","Passwort abrufen"
824
+ "Return Html Version","HTML-Version ausgeben"
825
+ "Revenue","Umsatz"
826
+ "Reviews","Beurteilungen"
827
+ "Reviews and Ratings","Beurteilungen und Bewertungen"
828
+ "Rewrite Rules","Rewrite-Regeln"
829
+ "Role ID","Rollen-ID"
830
+ "Role Info","Rollen-Info"
831
+ "Role Information","Rollen-Informationen"
832
+ "Role Name","Rollenname"
833
+ "Role Resources","Rollen-Ressourcen"
834
+ "Role Users","Rollenbenutzer"
835
+ "Roles","Rollen"
836
+ "Roles Resources","Rollen-Ressourcen"
837
+ "Root Category","Root Category"
838
+ "Rotate CCW","Gegen den Uhrzeigersinn drehen"
839
+ "Rotate CW","Im Uhrzeigersinn drehen"
840
+ "Run","Ausführen"
841
+ "Run Profile","Profil ausführen"
842
+ "Run Profile Inside This Window","Profil in diesem Fenster ausführen"
843
+ "Run Profile in Popup","Profil in Popup ausführen"
844
+ "Running... Kill","Wird ausgeführt ... Beenden"
845
+ "SKU","Artikelposition"
846
+ "SKU:","SKU:"
847
+ "SSL Error: Invalid or self-signed certificate","SSL-Fehler: Ungültiges oder selbstsigniertes Zertifikat"
848
+ "Sales","Verkäufe"
849
+ "Sales Report","Umsatzbericht"
850
+ "Samples","Proben"
851
+ "Save","Speichern"
852
+ "Save & Generate","Sichern & Generieren"
853
+ "Save Account","Konto speichern"
854
+ "Save Cache Settings","Cache-Einstellungen speichern"
855
+ "Save Config","Konfig. speichern"
856
+ "Save Currency Rates","Wechselkurse speichern"
857
+ "Save Profile","Profil speichern"
858
+ "Save Role","Rolle speichern"
859
+ "Save Template","Vorlage speichern"
860
+ "Save User","Benutzer speichern"
861
+ "Save and Continue Edit","Speichern und Bearbeiten fortsetzen"
862
+ "Search","Suche"
863
+ "Search Index","Suchindex"
864
+ "Search Term","Suchbegriff"
865
+ "Search Terms","Suchbegriffe"
866
+ "Select","Auswählen"
867
+ "Select All","Alle auswählen"
868
+ "Select Category","Kategorie auswählen"
869
+ "Select Date","Datum selektieren"
870
+ "Select Range","Bereich auswählen"
871
+ "Select date","Datum wählen"
872
+ "Selected allowed currency ""%s"" is not available in installed currencies.","Die gewählte erlaubte Währung ""%s"" ist nicht in den installierten Währungen verfügbar."
873
+ "Selected base currency is not available in installed currencies.","Ausgewählte Basiswährung fehlt unter den installierten Währungen."
874
+ "Selected default display currency is not available in allowed currencies.","Die gewählte angezeigte Standardwährung ist nicht in den zulässigen Währungen verfügbar."
875
+ "Selected default display currency is not available in installed currencies.","Ausgewählte Standard-Anzeigewährung fehlt unter den installierten Währungen."
876
+ "Self-assigned roles cannot be deleted.","Selbst zugeordnete Rollen können nicht gelöscht werden."
877
+ "Sender","Absender"
878
+ "Separate Email","Separate E-Mail"
879
+ "Shipment #%s comment added","Lieferun Nr. %s - Kommentar hinzugefügt"
880
+ "Shipment #%s created","Sendung #%s erstellt"
881
+ "Shipment Comments","Lieferungskommentare"
882
+ "Shipment History","Lieferungsverlauf"
883
+ "Shipments","Lieferungen"
884
+ "Shipping","Lieferung"
885
+ "Shipping Address","Lieferadresse"
886
+ "Shipping Address: ","Versandadresse:"
887
+ "Shipping Origin","Herkunft der Lieferung"
888
+ "Shipping Price","Versandkosten"
889
+ "Shipping address selection is not applicable","Ausgewählte Lieferadresse ist nicht zutreffend"
890
+ "Shipping method must be specified.","Die Angabe der Versandart ist erforderlich."
891
+ "Shipping method selection is not applicable","Auswahl der Versandmethode ist nicht anwendbar"
892
+ "Shopping Cart","Einkaufswagen"
893
+ "Shopping Cart Price Rules","Preisvorschriften für den Einkaufswagen"
894
+ "Shopping Cart from %s","Einkaufswagen von %s"
895
+ "Show By","Einkaufen nach"
896
+ "Show Report For:","Bericht anzeigen für:"
897
+ "Show Reviews","Kurze Beurteilungen"
898
+ "Sitemap Information","Sitempa-Informationen"
899
+ "Size for %s","Größe für %s"
900
+ "Skip Category Selection","Kategorieauswahl überspringen"
901
+ "Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created.","Einige Artikel in dieser Bestellung haben unterschiedliche Rechnungs- und Liefertypen. Sie können eine Lieferung erst erstellen, nachdem eine Rechnung erstellt wurde."
902
+ "Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order.","Einige der bestellten Artikel werden nicht mehr im Katalog angeboten und werden entfernt, falls Sie versuchen, den Auftrag zu bearbeiten."
903
+ "Sorry, this feature is coming soon...","Leider ist dieses Angebot erst in Kürze erhältlich ..."
904
+ "Special Price:","Sezialpreis:"
905
+ "Specific Countries","Spezifische Länder"
906
+ "Specified","Angegeben"
907
+ "Specified profile does not exist.","Angegebenes Profil nicht vorhanden."
908
+ "Spreadsheet Name:","Name des Tabellenkalkulationsblattes:"
909
+ "Start Date","Startdatum"
910
+ "Starting profile execution, please wait...","Profilausführung wird gestartet, bitte warten ..."
911
+ "State/Province:","Bundesstaat/Provinz:"
912
+ "Static Blocks","Statische Blöcke"
913
+ "Status","Status"
914
+ "Status:","Status:"
915
+ "Stock Quantity:","Vorratsmenge:"
916
+ "Stock notification was saved.","Bestandsmeldung gesichert."
917
+ "Store","Laden"
918
+ "Store Email Addresses Section","Email-Adressdaten speichern"
919
+ "Store View","Ladenansicht"
920
+ "Store:","Speicher:"
921
+ "Stores","Läden"
922
+ "Subject","Betreff"
923
+ "Submit","Absenden"
924
+ "Subpackage cannot be conflicting.","Teilpaket darf nicht im Konflikt stehen."
925
+ "Subtotal","Zwischensumme"
926
+ "Switch/Solo card issue number: %s","Switch/Solo-Kartennummer: %s"
927
+ "Switch/Solo card start Date: %s/%s","Switch/Solo-Karte Startdatum: %s/%s"
928
+ "Switch/Solo/Maestro Only","Nur Switch/Solo/Maestro"
929
+ "Switch/Solo/Maestro(UK Domestic) Only","Nur Switch/Solo/Maestro(UK Inland)"
930
+ "Switch/Solo/Maestro(UK Domestic) card issue number: %s","Switch/Solo/Maestro(UK Inland) Kartennummer: %s"
931
+ "Switch/Solo/Maestro(UK Domestic) card start Date: %s/%s","Switch/Solo/Maestro(UK Inland) Kartenstartdatum: %s/%s"
932
+ "Symbol","Symbol"
933
+ "Synchronization is required.","Synchronisation ist erforderlich."
934
+ "Synchronization of media storages has been successfully completed.","Synchronisation von Medien-Speichern wurde erfolgreich abgeschlossen."
935
+ "Synchronize","Synchronisieren"
936
+ "Synchronizing %s to %s","Synchronisierung von %s bis %s"
937
+ "Synchronizing...","Synchronisierung..."
938
+ "System","System"
939
+ "System Section","Systembereich"
940
+ "System busy","System belegt"
941
+ "Tags","Tags"
942
+ "Target Path","Zielpfad"
943
+ "Tax","Steuern"
944
+ "Tb","TB"
945
+ "Template","Vorlage"
946
+ "Template Content","Vorlageninhalt"
947
+ "Template Information","Vorlageninformation"
948
+ "Template Name","Vorlagenname"
949
+ "Template Styles","Vorlagenstile"
950
+ "Template Subject","Vorlagenthema"
951
+ "Template Type","Vorlagentyp"
952
+ "Temporary (302)","Temporary (302)"
953
+ "Terms and Conditions","AGB"
954
+ "Text","Text"
955
+ "The Catalog Rewrites were refreshed.","Die Katalog-Rewrites wurden aktualisiert."
956
+ "The CatalogInventory Stock Status has been rebuilt.","Der Status des Katalogbestandes ist aktualisiert worden."
957
+ "The Comment Text field cannot be empty.","Das Kommentarfeld ist auszufüllen."
958
+ "The Flat Catalog Product was rebuilt","Das Flat Catalog-Produkt wurde neu aufgebaut."
959
+ "The JavaScript/CSS cache has been cleaned.","Der JavaScript/CSS-Cache wurde bereinigt."
960
+ "The JavaScript/CSS cache has been cleared.","Der JavaScript/CSS-Cache ist bereinigt worden."
961
+ "The Layered Navigation indexing has been queued.","Die Layered Navigation-Indexerstellung wurde in die Warteschlange gestellt."
962
+ "The Layered Navigation indexing queue has been canceled.","Die Warteschlange für die Layered Navigation-Indexerstellung wurde storniert."
963
+ "The Layered Navigation indices were refreshed.","Die Layered Navigation-Indizes wurden aktualisiert."
964
+ "The Layered Navigation process has been queued to be killed.","Der Layered Navigation-Vorgang wurde zum Beenden in die Warteschlange gestellt."
965
+ "The Magento cache storage has been flushed.","Der Magento-Cachespeicher ist geleert worden."
966
+ "The URL Rewrite has been deleted.","Das URL-Rewrite wurde gelöscht."
967
+ "The URL Rewrite has been saved.","Das URL-Rewrite wurde gespeichert."
968
+ "The account has been saved.","Das Konto wurde gespeichert."
969
+ "The archive can be uncompressed with <a href=""%s"">%s</a> on Windows systems","Das Archiv kann mit <a href=""%s"">% s</a> auf Windows-Systemen dekomprimiert werden."
970
+ "The attribute set has been removed.","Die Attributmenge wurde entfernt."
971
+ "The backup's creation process will take time.","Das Erstellen der Sicherungskopie dauert einige Zeit."
972
+ "The billing agreement has been canceled.","Die Rechnungsvereinbarung wurde storniert."
973
+ "The billing agreement has been deleted.","Die Rechnungsvereinbarung wurde gelöscht."
974
+ "The cache storage has been flushed.","Der Cache-Speicher wurde geleert."
975
+ "The carrier needs to be specified.","Der Spediteur muss spezifiziert werden."
976
+ "The catalog index has been rebuilt.","Der Katalogindex wurde neu aufgebaut."
977
+ "The catalog rewrites have been refreshed.","Die Katalog-Rewrites wurden aktualisiert."
978
+ "The configuration has been saved.","Die Konfiguration wurde gespeichert."
979
+ "The credit memo has been canceled.","Die Gutschrift wurde storniert."
980
+ "The credit memo has been created.","Die Gutschrift wurde erstellt."
981
+ "The credit memo has been voided.","Die Gutschrift ist nicht länger gültig."
982
+ "The custom variable has been deleted.","Die benutzerdefinierte Variable wurde gelöscht."
983
+ "The custom variable has been saved.","Die Kundenvariable ist gespeichert worden."
984
+ "The customer has been deleted.","Der Kunde wurde gelöscht."
985
+ "The customer has been saved.","Der Kunde ist gespeichert worden."
986
+ "The design change has been deleted.","Die Designänderung wurde gelöscht."
987
+ "The design change has been saved.","Die Designänderung wurde gespeichert."
988
+ "The email address is empty.","Die E-Mail-Adresse ist leer."
989
+ "The email template has been deleted.","Die Emailvorlage ist gelöscht worden."
990
+ "The email template has been saved.","Die E-Mail-Vorlage wurde gespeichert."
991
+ "The flat catalog category has been rebuilt.","Die Flat Catalog Category ist neu erstellt worden."
992
+ "The group node name must be specified with field node name.","Der Gruppen-Node-Name muss mit dem Feld-Node-Namen angegeben werden."
993
+ "The image cache was cleaned.","Der Bild-Cache wurde bereinigt."
994
+ "The image cache was cleared.","Der Bild-Cache wurde geleert."
995
+ "The invoice and shipment have been created.","Die Rechnung und die Lieferung wurden erstellt."
996
+ "The invoice and the shipment have been created. The shipping label cannot be created at the moment.","Rechnung und Versand wurden erstellt. Das Versandetikett kann derzeit nicht erstellt werden."
997
+ "The invoice has been canceled.","Die Rechnung wurde storniert."
998
+ "The invoice has been captured.","Die Rechnung wurde erfasst."
999
+ "The invoice has been created.","Die Rechnung wurde erstellt."
1000
+ "The invoice has been voided.","Die Rechnung ist für nichtig erklärt worden."
1001
+ "The invoice no longer exists.","Die Rechnung ist nicht mehr vorhanden."
1002
+ "The item %s (SKU %s) does not exist in the catalog anymore.","Der Artikel %s (SKU %s) ist nicht mehr im Katalog vorhanden."
1003
+ "The order does not allow creating an invoice.","Der Auftrag erlaubt keine Rechnungserstellung."
1004
+ "The order no longer exists.","Der Auftrag besteht nicht mehr."
1005
+ "The poll has been deleted.","Die Umfrage wurde gelöscht."
1006
+ "The poll has been saved.","Die Umfrage ist gesichert worden."
1007
+ "The profile has been deleted.","Das Profil wurde gelöscht."
1008
+ "The profile has been saved.","Das Profil ist gespeichert worden."
1009
+ "The profile has been updated.","Das Profil wurde aktualisiert."
1010
+ "The profile has no changes.","Das Profil hat keine Änderungen."
1011
+ "The profile you are trying to save no longer exists","Das Profil, das Sie speichern wollen, ist nicht mehr vorhanden"
1012
+ "The rating has been deleted.","Die Bewertung ist gelöscht worden."
1013
+ "The rating has been saved.","Die Bewertung wurde gespeichert."
1014
+ "The role has been deleted.","Die Rolle wurde gelöscht."
1015
+ "The role has been saved.","Die Rolle wurde gespeichert."
1016
+ "The role has been successfully saved.","Die Rolle wurde erfolgreich gespeichert."
1017
+ "The search index has been rebuilt.","Der Suchindex wurde neu aufgebaut."
1018
+ "The shipment has been created.","Die Lieferung wurde erstellt."
1019
+ "The shipment has been sent.","Die Sendung ist ausgeliefert worden."
1020
+ "The shipping label has been created.","Das Versandlabel wurde erstellt."
1021
+ "The tag has been deleted.","Das Tag wurde gelöscht."
1022
+ "The tag has been saved.","Der Tag (dt. Etikett, Marke) ist gesichert worden."
1023
+ "The transaction details have been updated.","Die Transaktionsdetails sind aktualisiert worden."
1024
+ "The user has been deleted.","Der Benutzer wurde gelöscht."
1025
+ "The user has been saved.","Der Benutzer ist gespeichert worden."
1026
+ "Themes JavaScript and CSS files combined to one file.","Themes JavaScript- und CSS-Dateien in eine Datei kombiniert."
1027
+ "There is an error in one of the option rows.","In einer der Optionszeilen ist ein Fehler."
1028
+ "This Account is","Dieses Konto ist"
1029
+ "This Email template no longer exists.","Diese E-Mail-Vorlage existiert nicht mehr."
1030
+ "This Role no longer exists","Diese Rolle gibt es nicht mehr."
1031
+ "This Role no longer exists.","Diese Rolle existiert nicht mehr."
1032
+ "This account is","Dieses Konto ist"
1033
+ "This account is inactive.","Dieses Konto ist inaktiv."
1034
+ "This action cannot be undone.","Diese Aktion kann nicht rückgängig gemacht werden."
1035
+ "This attribute set does not have attributes which we can use for configurable product","Diese Attributmenge enthält keine Attribute, die wir für konfigurierbare Produkte verwenden können."
1036
+ "This attribute shares the same value in all the stores","Dieses Attribut hat denselben Wert in allen Läden."
1037
+ "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","Dies ist ein Demo-Handel. In diesem Geschäft aufgegebene Bestellungen werden weder akzeptiert noch ausgeführt."
1038
+ "This is a required field.","Dies ist ein Pflichtfeld."
1039
+ "This product is currently disabled.","Dieses Produkt ist zur Zeit deaktiviert."
1040
+ "This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed.","Dieser Bericht hängt von der Zeitzonenkonfiguration ab. Nachdem die Zeitzone geändert wurde, müssen die Lebenszeitstatistiken aktualisiert werden."
1041
+ "This section is not allowed.","Kein Zugang zu diesem Bereich."
1042
+ "This user no longer exists.","Dieser Benutzer existiert nicht mehr."
1043
+ "Time","Zeit"
1044
+ "Time selection:","Gewählte Zeit:"
1045
+ "Time:","Zeit:"
1046
+ "Timeout limit for response from synchronize process was reached.","Zeitlimit für die Antwort auf den Synchronisierungsvorgang wurde überschritten."
1047
+ "To","Nach"
1048
+ "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","Zum Abbrechen anhängiger Genehmigungen und zur Freigabe von Beträge, die bereits während dieser Zahlung bearbeitet wurden, klicken Sie auf Abbrechen."
1049
+ "To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website.","Wenn Sie den PayPal Payflow-Link verwenden möchten, müssen Sie Ihr Konto PayPal Payflow Link auf der PayPal-Website konfigurieren."
1050
+ "To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.","Um erweiterte PayPal-Zahlungen zu verwenden, müssen Sie Ihr Konto erweiterte PayPal-Zahlungen auf der PayPal-Website konfigurieren."
1051
+ "Toggle Editor","Zum Editor wechseln"
1052
+ "Tools","Werkzeuge"
1053
+ "Top 5 Search Terms","Oberste 5 Suchbegriffe"
1054
+ "Total","Gesamt"
1055
+ "Total Invoiced","Rechnungssumme"
1056
+ "Total Order Amount","Auftrags-Gesamtbetrag"
1057
+ "Total Refunded","Erstattete Summe"
1058
+ "Total of %d record(s) have been deleted.","Insgesamt %d Datensatz/Datensätze wurde(n) gelöscht."
1059
+ "Total of %d record(s) have been updated.","Insgeamt %d Datensätze wurden aktualisiert."
1060
+ "Total of %d record(s) were canceled.","Insgesamt %d Eintragung(en) wurden gelöscht."
1061
+ "Total of %d record(s) were deleted","Insgesamt wurde(n) %d Aufzeichnung(en) gelöscht"
1062
+ "Total of %d record(s) were deleted.","Ingesamt wurde(n) %d Aufzeichnung(en) gelöscht"
1063
+ "Total of %d record(s) were updated","Insgeamt wurde(n) %d Aufzeichnung(en) aktualisiert"
1064
+ "Total of %d record(s) were updated.","Insgeamt wurde(n) %d Aufzeichnung(en) aktualisiert"
1065
+ "Track Order","Bestellung verfolgen"
1066
+ "Track this shipment","Diese Lieferung verfolgen"
1067
+ "Tracking number %s for %s assigned","Auftragsverfolgungsnummer %s für %s zugeordnet"
1068
+ "Tracking number cannot be empty.","Nummer zum Verlaufsstatus kann nicht leer sein."
1069
+ "Transaction Data","Transaktionsdaten"
1070
+ "Transaction Details","Transaktionsdetails"
1071
+ "Transaction ID","Transaktions-ID"
1072
+ "Transaction Type","Transaktionstyp"
1073
+ "Transactional Emails","E-Mails zur Transaktion"
1074
+ "Transactions","Transaktionen"
1075
+ "Try Magento Go for Free","Testen Sie Magento Go kostenlos"
1076
+ "Type","Typ"
1077
+ "Type:","Typ:"
1078
+ "URL Rewrite","URL-Rewrite"
1079
+ "URL Rewrite Information","URL-Rewrite-Information"
1080
+ "URL Rewrite Management","URL-Rewrite-Verwaltung"
1081
+ "Unable to cancel the credit memo.","Gutschrift kann nicht storniert werden."
1082
+ "Unable to find a Email Template to delete.","Keine E-Mail-Vorlage zum Löschen gefunden."
1083
+ "Unable to find a poll to delete.","Keine Umfrage zum Löschen gefunden."
1084
+ "Unable to find a tag to delete.","Kein Tag zum Löschen gefunden."
1085
+ "Unable to find a user to delete.","Kein zu löschender Benutzer auffindbar."
1086
+ "Unable to initialize import model","Importmodell kann nicht initialisiert werden."
1087
+ "Unable to refresh lifetime statistics.","Lebenszeitstatistik kann nicht aktualisiert werden."
1088
+ "Unable to refresh recent statistics.","Letzte Statistik kann nicht aktualisiert werden."
1089
+ "Unable to save Cron expression","Chron. Ausdruck kann nicht gespeichert werden."
1090
+ "Unable to save the cron expression.","Chron. Ausdruck kann nicht gespeichert werden."
1091
+ "Unable to save the invoice.","Rechnung kann nicht gespeichert werden."
1092
+ "Unable to send the invoice email.","E-Mail mit Rechnung kann nicht gesendet werden."
1093
+ "Unable to send the shipment email.","Versand-Email kann nicht gesendet werden."
1094
+ "Unable to update transaction details.","Die Angaben zu Ihrer Transaktion konnten nicht aktualisiert werden."
1095
+ "Unable to void the credit memo.","Gutschrift kann nicht ungültig gemacht werden."
1096
+ "Unknown","Unbekannt"
1097
+ "Unlimited","Unbegrenzt"
1098
+ "Update","Aktualisieren"
1099
+ "Updated At","Aktualisiert um"
1100
+ "Upload File","Datei hochladen"
1101
+ "Upload Files","Dateien hochladen"
1102
+ "Upload HTTP Error","HTTP-Fehler hochladen"
1103
+ "Upload I/O Error","Ein-/Ausgabefehler beim Hochladen"
1104
+ "Upload Security Error","Security-Fehler hochladen"
1105
+ "Upload import file","Importdatei hochladen"
1106
+ "Uploaded file is larger than %.2f kilobytes allowed by server","Hochgeladene Datei ist %.2f Kilobytes größer als der Server ermöglicht."
1107
+ "Use All Available Attributes","Alle verfügbaren Attribute verwenden"
1108
+ "Use Config Settings","Konfig.-Einstellungen verwenden"
1109
+ "Use Default","Standard verwenden"
1110
+ "Use Default Value","Standardwert verwenden"
1111
+ "Use Default Variable Values","Standardvariablenwerte verwenden"
1112
+ "Use FTP Connection","FTP-Verbindung verwenden"
1113
+ "Use Website","Website verwenden"
1114
+ "Used Currently For","Zurzeit verwendet für"
1115
+ "Used as Default For","Als Standard Genutzt Für"
1116
+ "User Email","Benutzer-Email"
1117
+ "User ID","Benutzer-ID"
1118
+ "User Info","Benutzerinfo"
1119
+ "User Information","Benutzer-Information"
1120
+ "User Name","Benutzername"
1121
+ "User Name is required field.","Das Feld 'Benutzername' muss ausgefüllt werden."
1122
+ "User Name:","Benutzername:"
1123
+ "User Password","Benutzerpasswort"
1124
+ "User Role","Benutzerrolle"
1125
+ "User Roles","Benutzerrollen"
1126
+ "User Roles Information","Informationen zu Benutzerrollen"
1127
+ "User Type Resources","Ressourcen Benutzer-Typ"
1128
+ "User name","Benutzername"
1129
+ "Users","Benutzer"
1130
+ "VAT Number is Invalid","Umsatzsteuer-Identifikationsnummer ist Ungültig"
1131
+ "VAT Number is Valid","Umsatzsteuer-Identifikationsnummer ist Gültig"
1132
+ "Validation Results","Prüfergebnisse"
1133
+ "Value","Wert"
1134
+ "Value Delimiter:","Wertbegrenzer:"
1135
+ "Variable","Variable"
1136
+ "Variable Code","Variabler Code"
1137
+ "Variable HTML Value","Variabler HTML-Wert"
1138
+ "Variable ID","Variablen-ID"
1139
+ "Variable Name","Name der Variablen"
1140
+ "Variable Plain Value","Einfacher Variablenwert"
1141
+ "Verifier code: %s","Prüfer-Code: %s"
1142
+ "View Actions XML","XML mit Aktionen anzeigen"
1143
+ "View Full Size","Gesamtgröße ansehen"
1144
+ "View Memo","Memo anzeigen"
1145
+ "View Memo for #%s","Siehe Memo für #%s"
1146
+ "View Shipment","Lieferung anzeigen"
1147
+ "View Statistics For:","Statistiken einsehen für:"
1148
+ "Visibility:","Sichtbarkeit:"
1149
+ "Warning","Warnung"
1150
+ "Warning! Empty value can cause problems with CSV format.","Warnhinweis! Ein leerer Wert kann Probleme beim CSV-Format verursachen."
1151
+ "Warning!\r\nThis action will remove this user from already assigned role\r\nAre you sure?","Warnmeldung!\r\nDurch diese Aktion wird dieser Benutzer von einer bereits zugewiesenen Rolle entfernt.\r\nAktion dennoch ausführen?"
1152
+ "Warning!\r\nThis action will remove those users from already assigned roles\r\nAre you sure?","Warnung!\r\nSie sind dabei, diese Anwender von bereits zugeordneten Rollen zu entfernen\r\nSind Sie sicher?"
1153
+ "Warning: Please do not close the window during importing/exporting data","Warnhinweis: Schließen Sie das Fenster nicht, während Daten importiert/exportiert werden."
1154
+ "Watermark File for %s","Wasserzeichendatei für %s"
1155
+ "We appreciate our merchants\' feedback, please <a href=""#"" onclick=""surveyAction(\'yes\'); return false;"">take our survey</a> to provide insight on the features you would like included in Magento. <a href=""#"" onclick=""surveyAction(\'no\'); return false;"">Remove this notification</a>","Das Feedback unserer\' Händler ist uns wichtig, bitte <a href=""#"" onclick=""surveyAction(\'yes\'); return false;"">Nehmen Sie an unserer Umfrage teil</a>, um uns einen Einblick in die Funktionen zu vermitteln, die Sie sich in Magento wünschen. <a href=""#"" onclick=""surveyAction(\'no\'); return false;"">Diese Mitteilung entfernen</a>"
1156
+ "We\'re in our typing table, coding away more features for Magento. Thank you for your patience.","Wir arbeiten zurzeit an der Entwicklung neuer Angebote für Magento. Vielen Dank für Ihre Geduld."
1157
+ "Web Section","Webbereich"
1158
+ "Web Services","Webdienste"
1159
+ "Web services","Web Services"
1160
+ "Website","Website"
1161
+ "What is this?","Was ist das?"
1162
+ "Wishlist Report","Wunschlistenbericht"
1163
+ "Wishlist item is not loaded.","Der Artikel auf der Wunschliste wird nicht geladen."
1164
+ "Wrong account specified.","Falsches Konto angegeben."
1165
+ "Wrong billing agreement ID specified.","Falsche Zahlungsvereinbarungs-ID angegeben."
1166
+ "Wrong column format.","Falsches Spaltenformat."
1167
+ "Wrong newsletter template.","Falsche Newsletter-Vorlage."
1168
+ "Wrong quote item.","Falsches Inhaltselement."
1169
+ "Wrong tab configuration.","Fehlerhafte Konfiguration der Registerkarte."
1170
+ "Wrong tag was specified.","Falsches Tag angegeben."
1171
+ "Wrong transaction ID specified.","Falsche Transaktions-ID angegeben."
1172
+ "XML","XML"
1173
+ "XML data is invalid.","XML-Daten sind ungültig."
1174
+ "XML object is not instance of ""Varien_Simplexml_Element"".","XML-Objekt ist kein ""Varien_Simplexml_Element""."
1175
+ "YTD","Jahr bis Datum"
1176
+ "Year","Jahr"
1177
+ "Yes","Ja"
1178
+ "Yes (301 Moved Permanently)","Ja (301 dauerhaft entfernt)"
1179
+ "Yes (302 Found)","Ja (302 gefunden)"
1180
+ "Yes (only price with tax)","Ja (nur Preis mit Steuer)"
1181
+ "You cannot delete your own account.","Sie können Ihren eigenen Account nicht löschen."
1182
+ "You have %s unread message(s).","Sie haben %s ungelesene Nachricht(en)."
1183
+ "You have %s unread message(s). <a href=""%s"">Go to messages inbox</a>.","Sie haben %s ungelesene Nachricht(en). <a>Gehen Sie zum Posteingang</a>."
1184
+ "You have %s, %s and %s unread messages. <a href=""%s"">Go to messages inbox</a>.","Sie haben %s, %s und %s ungelesene Nachrichten. <a>Gehen Sie zum Posteingang</a>."
1185
+ "You have logged out.","Sie haben sich abgemeldet."
1186
+ "You have not enough permissions to use this functionality.","Sie haben keine ausreichenden Berechtigungen für die Verwendung dieser Funktion."
1187
+ "You must have JavaScript enabled in your browser to utilize the functionality of this website.","Sie müssen JavaScript in Ihrem Browser aktiviert haben, damit die Funktionen der Webseite ordnungsgemäß genutzt werden können."
1188
+ "You need to specify order items.","Sie müssen Bestellartikel angeben."
1189
+ "You will need to wait when the action ends.","Sie werden das Ende der Aktion abwarten müssen."
1190
+ "Your answers contain duplicates.","Ihre Antworten enthalten Duplikate."
1191
+ "Your password has been updated.","Ihr Passwort wurde geändert."
1192
+ "Your password reset link has expired.","Der Link für das Resetten Ihres Passworts ist abgelaufen."
1193
+ "Your server PHP settings allow you to upload files not more than %s at a time. Please modify post_max_size (currently is %s) and upload_max_filesize (currently is %s) values in php.ini if you want to upload larger files.","Die PHP-Einstellungen Ihres Servers ermöglichen Ihnen das Hochladen von Dateien mit maximal %s gleichzeitig. Bitte ändern Sie die Werte für post_max_size (aktueller Wert: %s) und upload_max_filesize (aktueller Wert: %s) in der php.ini-Datei, wenn Sie größere Dateien hochladen möchten."
1194
+ "Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider.","Ihr Webserver ist falsch konfiguriert. Als Ergebnis sind Konfigurationsdateien mit sensiblen Informationen von außen zugänglich. Bitte kontaktieren Sie Ihren Hosting-Anbieter."
1195
+ "Zip/Postal Code","Postleitzahl"
1196
+ "Zip/Postal Code:","Postleitzahl:"
1197
+ "[ deleted ]","[gelöscht]"
1198
+ "[GLOBAL]","[GLOBAL]"
1199
+ "[STORE VIEW]","[LADENANSICHT]"
1200
+ "[WEBSITE]","[WEBSEITE]"
1201
+ "b","b"
1202
+ "close","schließen"
1203
+ "critical","kritisch"
1204
+ "example: ""sitemap/"" or ""/"" for base path (path must be writeable)","Beispiel: ""Sitemap/"" oder ""/"" für den Basis-Pfad (Pfad muss beschreibbar sein)"
1205
+ "example: sitemap.xml","example: sitemap.xml"
1206
+ "failed","fehlgeschlagen"
1207
+ "from","von"
1208
+ "major","größer"
1209
+ "minor","kleiner"
1210
+ "notice","Bemerkung"
1211
+ "store(%s) scope","Laden(%s)-Umfang"
1212
+ "successful","erfolgreich"
1213
+ "to","bis"
1214
+ "website(%s) scope","Website(%s)-Umfang"
1215
+ "{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%s"">configuration</a>.","{{base_url}} wird nicht empfohlen, in einer Produktionsumgebung zu verwenden, um die Base als Unsichere URL / Base Sicher URL zu erklären. Es wird dringend empfohlen, diesen Wert in Ihrer Magento-<a href=""%s"">Konfiguration</a> zu ändern."
app/locale/de_DE/Mage_AmazonPayments.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " Select Shipping Method","Wählen Sie die Versandart"
2
+ "<br/>Trace confirmation request:<br/>%s","<br/>Bestätigungsanfrage verfolgen:<br/>%s"
3
+ "Access Key","Zugriffsschlüssel"
4
+ "Access Key ID","Zugriffsschlüssel-ID"
5
+ "Amazon Simple Pay","Amazon Simple Pay"
6
+ "Amazon Simple Pay notification error","Amazon Simple Pay Benachrichtigungsfehler"
7
+ "Amazon Simple Pay service capture confirmation error: confirmation request amount is not equal to the amount of order.","Amazon Simple Pay Service Fehler bei der Bestätigung der Erfassung: Betrag der Bestätigungsanfrage entspricht nicht der Summe der Bestellung."
8
+ "Amazon Simple Pay service capture confirmation error: the amount in the existing invoice does not match the amount in the confirmation request.","Amazon Simple Pay Service Fehler bei der Bestätigung der Erfassung: der Betrag der bestehenden Rechnung entspricht nicht dem Betrag in der Bestätigungsanfrage."
9
+ "Amazon Simple Pay service capture confirmation error: the existing transaction ID does not match the transaction ID in the confirmation request.","Amazon Simple Pay Service Fehler bei der Bestätigung der Erfassung: die bestehenden Transaktions-ID entspricht nicht der Transaktions-ID in der Bestätigungsanfrage."
10
+ "Amazon Simple Pay service capture confirmation. The invoice was captured automatically.","Amazon Simple Pay Service Erfassungsbestätigung: Die Rechnung wurde automatisch erfasst."
11
+ "Amazon Simple Pay service confirmation error: order states sequence violation.","Amazon Simple Pay Service Fehler bei der Bestätigung: Bestellung meldet Sequenzverletzung."
12
+ "Amazon Simple Pay service confirmation error: the order currency does not match the currency of the IPN request.","Amazon Simple Pay Service Fehler bei der Bestätigung: die Bestellungswährung entspricht nicht der Währung der IPN-Anfrage."
13
+ "Amazon Simple Pay service confirmation error: the order specified in the IPN request cannot be found.","Amazon Simple Pay Service Fehler bei der Bestätigung: die in der IPN-Anforderung angegebene Bestellung kann nicht gefunden werden."
14
+ "Amazon Simple Pay service confirmation error: the payment method in the order is not Amazon Simple Pay.","Amazon Simple Pay Service Fehler bei der Bestätigung: die Zahlungsart der Bestellung ist nicht Amazon Simple Pay."
15
+ "Amazon Simple Pay service confirmed capture for invoice %s.","Amazon Simple Pay Service bestätigt die Erfassung von Rechnung %s."
16
+ "Amazon Simple Pay service confirmed refund for credit memo %s.","Amazon Simple Pay Service hat die Erstattung für Gutschrift %s bestätigt."
17
+ "Amazon Simple Pay service has confirmed amount authorization.","Amazon Simple Pay Service hat Mengen-Autorisierung bestätigt."
18
+ "Amazon Simple Pay service has confirmed cancelation.","Amazon Simple Pay Service hat die Kündigung bestätigt."
19
+ "Amazon Simple Pay service has confirmed capture for invoice %s. The invoice was automatically captured.","Amazon Simple Pay Service hat die Erfassung der Rechnung %s bestätigt. Die Rechnung wurde automatisch erfasst."
20
+ "Amazon Simple Pay service has confirmed capture initiation.","Amazon Simple Pay Service hat die Einleitung der Erfassung bestätigt."
21
+ "Amazon Simple Pay service has confirmed capture.","Amazon Simple Pay Service hat die Erfassung bestätigt."
22
+ "Amazon Simple Pay service has confirmed payment capture. Invoice %s was automatically created after confirmation.","Amazon Simple Pay Service hat die Erfassung der Zahlung bestätigt. Rechnung %s wurde nach Bestätigung automatisch erstellt."
23
+ "Amazon Simple Pay service has confirmed payment capture. Invoice was created automatically.","Amazon Simple Pay Service hat die Erfassung der Zahlung bestätigt. Rechnung wurde automatisch erstellt."
24
+ "Amazon Simple Pay service has confirmed payment refund. Credit memo %s was automatically created after confirmation.","Amazon Simple Pay Service hat die Erstattung der Zahlung bestätigt. Gutschrift %s wurde nach Bestätigung automatisch erstellt."
25
+ "Amazon Simple Pay service has confirmed payment refund. Credit memo was created automatically.","Amazon Simple Pay Service hat die Erstattung der Zahlung bestätigt. Gutschrift wurde automatisch erstellt."
26
+ "Amazon Simple Pay service has confirmed payment refund. The credit memo was created automatically.","Amazon Simple Pay Service hat die Erstattung der Zahlung bestätigt. Die Gutschrift wurde automatisch erstellt."
27
+ "Amazon Simple Pay service has confirmed refund.","Amazon Simple Pay Service hat die Erstattung bestätigt."
28
+ "Amazon Simple Pay service has confirmed refund. The credit memo was processed automatically.","Amazon Simple Pay Service hat die Erstattung bestätigt. Die Gutschrift wurde automatisch erstellt."
29
+ "Amazon Simple Pay service has confirmed refunded credit memo %s. The credit memo was processed automatically.","Amazon Simple Pay Service hat die Erstattung der Gutschrift %s bestätigt. Die Gutschrift wurde automatisch verarbeitet."
30
+ "Amazon Simple Pay service is not available. Payment was not processed.","Amazon Simple Pay Service ist nicht verfügbar. Zahlung wurde nicht bearbeitet."
31
+ "Amazon Simple Pay service payment confirmation has failed.","Amazon Simple Pay Service Zahlungsbestätigung ist fehlgeschlagen."
32
+ "Amazon Simple Pay service refund confirmation error: the amount in the existing creditmemo does not match the amount in the confirmation request.","Amazon Simple Pay Service Fehler bei der Erstattungsbestätigung: der Betrag in der vorhandenen Gutschrift entspricht nicht dem Betrag in der Bestätigungsanfrage."
33
+ "Amazon Simple Pay service refund confirmation error: the confirmation request amount does not match the order amount.","Amazon Simple Pay Service Fehler bei der Erstattungsbestätigung: der Betrag der Bestätigungsanfrage entspricht nicht dem Bestellbetrag."
34
+ "Amazon Simple Pay service refund confirmation error: the transaction ID in the existing creditmemo does not match the transaction ID in the confirmation request.","Amazon Simple Pay Service Fehler bei der Erstattungsbestätigung: die Transaktions-ID in der vorhandenen Gutschrift entspricht nicht der Transaktions-ID in der Bestätigungsanfrage."
35
+ "Authorize Only","Nur genehmigen"
36
+ "Authorize and Capture","Genehmigen und erfassen"
37
+ "Cancel Description","Beschreibung abbrechen"
38
+ "Cancel Order Notification received from Checkout by Amazon service.","Löschen Sie die eingegangene Bestellbestätigung der Amazon Service-Kasse."
39
+ "Checkout by Amazon","Kasse von Amazon"
40
+ "Continue Shopping","Einkauf fortfahren"
41
+ "Customer was redirected to Amazon Simple Pay site","Kunde wurde auf die Amazon Simple Pay-Seite umgeleitet."
42
+ "Debug","Debug"
43
+ "Debug Log","Debug-Protokoll"
44
+ "Email Sender","E-Mail-Absender"
45
+ "Enable","Aktivieren"
46
+ "Error Log","Fehlerprotokoll"
47
+ "FPS Sandbox Service URI","FPS Sandbox Service URI"
48
+ "FPS Service URI","FPS Service URI"
49
+ "Immediate Return","Sofortige Rückgabe"
50
+ "Invalid action code.","Ungültiger Aktionscode."
51
+ "Invalid request.","Ungültige Anforderung."
52
+ "Invoice was created with Checkout by Amazon.","Rechnung wurde über die Kasse von Amazon erstellt."
53
+ "Merchant ID","Händler-ID"
54
+ "Merchant Login","Händler-Login"
55
+ "Merchant Name","Händlername"
56
+ "Merchant Password","Händler-Passwort"
57
+ "Merchant Token","Händler-Zeichen"
58
+ "Method Choice Checkout Message","Methodenwahl Checkout-Nachricht"
59
+ "New Order Notification received from Checkout by Amazon service.","Neue Bestellbenachrichtigung von der Amazon Service-Kasse."
60
+ "New Order Status","Neuer Bestellstatus"
61
+ "Notification Error Transactional Email","E-Mail-Benachrichtigung Transaktionsfehler"
62
+ "Order Ready To Ship Notification received form Checkout by Amazon service.","Benachrichtigung von der Amazon Service-Kasse empfangen, dass Bestellung zum Versand bereit ist."
63
+ "Order was canceled with Checkout by Amazon.","Bestellung wurde von Amazon an der Kasse abgebrochen."
64
+ "Payment Action","Zahlungsaktion"
65
+ "Payment Description","Zahlungsbeschreibung"
66
+ "Payment Sandbox Service URI","Sandbox Zahlungsservice URI"
67
+ "Payment Service URI","Zahlungsservice URI"
68
+ "Payment authorization canceled with Amazon Simple Pay service.","Zahlungsermächtigung mit Amazon Simple Pay Service abgebrochen."
69
+ "Pending Amazon Simple Pay","Amazon Simple Pay ausstehend"
70
+ "Redirect Message","Umleitungsnachricht"
71
+ "Refund Description","Rückerstattungsbeschreibung"
72
+ "Refund was created with Checkout by Amazon.","Erstattung wurde mit der Kasse von Amazon erstellt."
73
+ "Report Email","E-Mail-Bericht"
74
+ "Report Error to Email","Fehler an E-Mail berichten"
75
+ "Response body is not a valid FPS response.","Antworttext ist keine gültige FPS-Antwort."
76
+ "SUCCESS","ERFOLG"
77
+ "Sandbox","Sandkasten"
78
+ "Secret Key","Geheimer Schlüssel"
79
+ "Secret Key ID","Geheime Schlüssel-ID"
80
+ "Shipment was created with Checkout by Amazon.","Sendung wurde über die Kasse von Amazon erstellt."
81
+ "Thank you for your purchase!","Vielen Dank für Ihren Einkauf!"
82
+ "The customer has canceled payment and successfully returned from Amazon Simple Pay site","Der Kunde hat die Zahlung abgebrochen und wurde von der Amazon Simple Pay-Seite erfolgreich zurückgeleitet."
83
+ "The customer has successfully returned from Amazon Simple Pay site","Der Kunde wurde erfolgreich von der Amazon Simple Pay-Seite zurückgeleitet."
84
+ "The invoice was created (online capture). Waiting for capture confirmation from Amazon Simple Pay service.","Die Rechnung wurde erstellt (Online-Erfassung). Warten auf Bestätigung der Erfassung von Amazon Simple Pay Service."
85
+ "The invoice was not refunded. Amazon Simple Pay service error: [%s] %s","Die Rechnung wurde nicht erstattet. Amazon Simple Pay Service-Fehler: [%s] %s"
86
+ "The item specified in callback request XML was not found in quote.","Das in der Rückrufbitte XML angegebene Element wurde nicht gefunden."
87
+ "The order was not canceled. Amazon Simple Pay service error: [%s] %s","Die Bestellung wurde nicht abgebrochen. Amazon Simple Pay Service-Fehler: [%s] %s"
88
+ "The order was not captured online. Authorization confirmation is required.","Die Bestellung wurde nicht online erfasst. Autorisierungsbestätigung ist erforderlich."
89
+ "The order was not captured. Amazon Simple Pay service error: [%s] %s","Die Bestellung wurde nicht erfasst. Amazon Simple Pay Service-Fehler: [%s] %s"
90
+ "The payment was captured online with Amazon Simple Pay service. The invoice was created. Waiting for capture confirmation from the payment service.","Die Zahlung wurde mit Amazon Simple Pay Service online erfasst. Die Rechnung wurde erstellt. Warten auf Bestätigung der Erfassung vom Zahlungsdienstleister."
91
+ "The payment was refunded online with Amazon Simple Pay service. The credit memo was created. Waiting for refund confirmation from Amazon Simple Pay service.","Die Zahlung wurde mit Amazon Simple Pay Service online erstattet. Die Gutschrift wurde erstellt. Warten auf Bestätigung der Rückerstattung von Amazon Simple Pay Service."
92
+ "The payment was refunded online. Waiting for refund confirmation from Amazon Simple Pay service.","Die Zahlung wurde online erstattet. Warten auf Bestätigung der Rückerstattung von Amazon Simple Pay Service."
93
+ "The request is not a valid IPN request.","Der Antrag ist keine gültige IPN-Anforderung."
94
+ "The request was signed incorrectly or the signature is missing.","Die Anforderung wurde nicht ordnungsgemäß unterzeichnet oder die Signatur fehlt."
95
+ "Title","Titel"
96
+ "Use Callback API","Nutzen Sie die Rückruf-API"
97
+ "You will be redirected to Checkout by Amazon in a few seconds.","Sie werden in wenigen Sekunden zur Kasse von Amazon weitergeleitet."
98
+ "You will receive an order confirmation email with details of your order and a link to track its progress.","Sie erhalten eine Bestellbestätigungs-E-Mail mit den Details zu Ihrer Bestellung und einem Link, um den Verlauf zu verfolgen."
99
+ "You will receive an order confirmation email with details of your order and a link to track its progress.<br/>","Sie erhalten eine Bestätigung der Bestellung per e-Mail mit Informationen zu Ihrer Bestellung und einem Link, um den Fortschritt zu verfolgen.<br/>"
100
+ "Your billing address will be ignored and you will be redirected to Checkout by Amazon website.","Ihre Rechnungsadresse wird ignoriert und Sie werden zur Kasse der Amazon-Website weitergeleitet."
101
+ "Your order has been received.","Ihre Bestellung wurde erhalten."
app/locale/de_DE/Mage_Api.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Access denied.","Zugang verweigert."
2
+ "Can not find webservice adapter.","Webservice-Adapter ist nicht auffindbar."
3
+ "Client Session Timeout (sec.)","Kunde Session-Timeout (in Sekunden)"
4
+ "Default Response Charset","Standard-Schriftsatz für Antwort"
5
+ "Email","E-Mail"
6
+ "Enable WSDL Cache","WSDL-Zwischenspeicher aktivieren"
7
+ "General Settings","Allgemeine Einstellungen"
8
+ "Invalid webservice adapter specified.","Ungültiger Webservice Adapter angegeben."
9
+ "Invalid webservice handler specified.","Ungültiger Webservice Handler angegeben."
10
+ "Magento Core API","Magento Core API"
11
+ "Magento Core API Section","Magento Core API Sektion"
12
+ "SOAP/XML-RPC - Roles","SOAP/XML-RPC - Rollen"
13
+ "SOAP/XML-RPC - Users","SOAP/XML-RPC - Benutzer"
14
+ "Unable to login.","Einloggen nicht möglich."
15
+ "User Name","Benutzername"
16
+ "WS-I Compliance","WS-I Übereinstimmung"
17
+ "Web Services","Webdienste"
18
+ "Your account has been deactivated.","Ihr Benutzerkonto wurde deaktiviert."
app/locale/de_DE/Mage_Api2.csv ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s","%s"
2
+ "%s role is a special one and can\'t be changed.","Die %s-Rolle ist eine spezielle Rolle und kann nicht geändert werden."
3
+ "%s role is a special one and can\'t be deleted.","Die %s-Rolle ist eine spezielle Rolle und kann nicht gelöscht werden."
4
+ "%s role is protected.","Die %s-Rolle ist geschützt."
5
+ "ACL Attribute Rules","ACL Attributregeln"
6
+ "ACL Attributes Information","Information ACL Attribute"
7
+ "Add","Hinzufügen"
8
+ "Add Admin Role","Admin-Rolle hinzufügen"
9
+ "Add New Role","Neue Rolle hinzufügen"
10
+ "Address Type","Adressentyp"
11
+ "Admin","Admin"
12
+ "Allow","Erlauben"
13
+ "An error occurred while deleting the role.","Beim Löschen der Rolle ist ein Fehler aufgetreten."
14
+ "An error occurred while saving attribute rules.","Beim Speichern der Attributregeln ist ein Fehler aufgetreten."
15
+ "An error occurred while saving role.","Beim Speichern der Rolle ist ein Fehler aufgetreten."
16
+ "Api Rules Information","Information Api-Regeln"
17
+ "Assigned","Zugewiesen"
18
+ "Associate to Website","Mit der Webseite verbinden"
19
+ "Attribute Rules Information","Information Attributregeln"
20
+ "Attribute Set","Attributset"
21
+ "Attributes","Attribute"
22
+ "Automatically Return Credit Memo Item to Stock","Gutschriftartikel automatisch zum Lager retournieren"
23
+ "Back","Zurück"
24
+ "Backorders","Lieferückstand"
25
+ "Base Currency","Basiswährung"
26
+ "Base Customer Balance","Basis Kundensaldo"
27
+ "Base Discount","Basis Rabatt"
28
+ "Base Discount Amount","Basis Rabattbetrag"
29
+ "Base Item Subtotal","Basis Zwischensumme Artikel"
30
+ "Base Item Subtotal Including Tax","Basis Zwischensumme Artikel inkl. Steuern"
31
+ "Base Original Price","Basis Ausgangspreis"
32
+ "Base Price","Grundpreis"
33
+ "Base Price Including Tax","Basis Preis inkl. Steuern"
34
+ "Base Shipping","Basis Versand"
35
+ "Base Shipping Discount","Basis Versandrabatt"
36
+ "Base Shipping Tax","Basis Versandsteuer"
37
+ "Base Subtotal","Basis Zwischensumme"
38
+ "Base Subtotal Including Tax","Basis Zwischensumme inkl. Steuern"
39
+ "Base Tax Amount","Basis Steuerbetrag"
40
+ "Base Total Due","Basis fälliger Gesamtbetrag"
41
+ "Base Total Paid","Basis bezahlter Gesamtbetrag"
42
+ "Base Total Refunded","Basis rückerstatteter Gesamtbetrag"
43
+ "Buy Now URL","Jetzt kaufen-URL"
44
+ "Can Be Divided into Multiple Boxes for Shipping","Kann zum Versand auf mehrere Kartons aufgeteilt werden"
45
+ "Canceled Qty","Stornierte Anzahl"
46
+ "Catalog","Katalog"
47
+ "Catalog Product","Katalogprodukt"
48
+ "CatalogInventory","Kataloginventar"
49
+ "Category ID","Kategorie Ident.-Nr."
50
+ "City","Stadt"
51
+ "Company","Unternehmen"
52
+ "Country","Land"
53
+ "Coupon Code","Gutscheincode"
54
+ "Create","Erstellen"
55
+ "Create Permanent Redirect for old URL","Andauernde Umleitung für alte URL erstellen"
56
+ "Created From","Erstellt aus"
57
+ "Customer","Kunde"
58
+ "Customer Address","Kundenadresse"
59
+ "Customer Address ID","Kundenadresse ID"
60
+ "Customer Balance","Kundenguthaben"
61
+ "Customer First Name","Kunden-Vorname"
62
+ "Customer ID","Kundenidentifikationsbezeichnung"
63
+ "Customer Last Name","Nachname des Kunden"
64
+ "Customer Middle Name","Mittlerer Kundenname"
65
+ "Customer Prefix","Kundenpräfix"
66
+ "Customer Suffix","Kundensuffix"
67
+ "Default Image","Standardbild"
68
+ "Delete","Löschen"
69
+ "Deny","Verweigern"
70
+ "Disable automatic group change based on VAT ID","Automatischen Gruppenwechsel auf UID-Basis deaktivieren"
71
+ "Discount","Rabatt"
72
+ "Discount Amount","Rabattbetrag"
73
+ "Discount Description","Rabatt Beschreibung"
74
+ "Edit","Bearbeiten"
75
+ "Edit %s ACL attribute rules","%s ACL Attributregeln bearbeiten"
76
+ "Edit Role","Rolle bearbeiten"
77
+ "Edit attribute rules for %s Role","Attributregeln für %s-Rolle bearbeiten"
78
+ "Email","E-Mail"
79
+ "Enable Qty Increments","Anzahlzunahme aktivieren"
80
+ "Exclude","Auschließen"
81
+ "File Content","Dateiinhalt"
82
+ "File MIME Type","Datei MIME-Typ"
83
+ "File Name","Dateiname"
84
+ "Final Price With Tax","Endpreis inkl. Steuern"
85
+ "Final Price Without Tax","Endpreis exkl. Steuern"
86
+ "First Name","Vorname"
87
+ "Gift Message","Grußnachricht"
88
+ "Grand Total","Gesamtbetrag"
89
+ "Grand Total to Be Charged","Zu verrechnende Gesamtsumme"
90
+ "Group","Gruppe"
91
+ "Guest","Gast"
92
+ "Has Custom Options","hat individuelle Optionen"
93
+ "ID","ID"
94
+ "Inventory Data","Inventardaten"
95
+ "Invoiced Qty","Verrechnete Anzahl"
96
+ "Is Confirmed","ist bestätigt"
97
+ "Is Default Billing Address","ist die Standard-Rechnungsadresse"
98
+ "Is Default Shipping Address","ist die Standard-Lieferadresse"
99
+ "Item ID","Artikel-ID"
100
+ "Item Subtotal","Zwischensumme Artikel"
101
+ "Item Subtotal Including Tax","Zwischensumme Artikel inkl. Steuern"
102
+ "Label","Label"
103
+ "Last Logged In","Zuletzt eingeloggt"
104
+ "Last Name","Letzter Name"
105
+ "Low Stock Date","Datum niedriger Bestand"
106
+ "Manage Stock","Lagerbestand verwalten"
107
+ "Maximum Qty Allowed in Shopping Cart","Maximal im Warenkorb erlaubte Anzahl"
108
+ "Minimum Qty Allowed in Shopping Cart","Im Warenkorb erlaubte Mindestanzahl"
109
+ "New Role","Neue Rolle"
110
+ "Notify for Quantity Below","Bei unterer Anzahl benachrichtigen."
111
+ "OAuth","OAuth"
112
+ "Order","Bestellung"
113
+ "Order Addresses","Bestellungs-Adressen"
114
+ "Order Comments","Kommentare zur Bestellung"
115
+ "Order Currency","Auftragswährung"
116
+ "Order Date","Bestelldatum"
117
+ "Order ID","Bestellungsidentifizierung"
118
+ "Order ID (internal)","Bestellungs-ID (intern)"
119
+ "Order Item ID","Bestellartikel-ID"
120
+ "Order Items","Bestellartikel"
121
+ "Order Status","Status des Auftrags"
122
+ "Ordered Qty","Bestellte Anzahl"
123
+ "Orders","Aufträge"
124
+ "Original Price","Originalpreis"
125
+ "Parent Order Item ID","Übergeordnete Bestellartikel-ID"
126
+ "Payment Method","Zahlungsart"
127
+ "Phone Number","Telefonnummer"
128
+ "Placed from IP","Bestellt von IP Nummer"
129
+ "Please enter a valid number in ""max_sale_qty"" field","Bitte geben Sie in dem Feld ""max_sale_qty"" eine gültige Zahl ein"
130
+ "Please enter a valid number in ""min_qty"" field","Bitte geben Sie in dem Feld ""min_qty"" eine gültige Zahl ein"
131
+ "Please enter a valid number in ""min_sale_qty"" field","Bitte geben Sie in dem Feld ""min_sale_qty"" eine gültige Zahl ein"
132
+ "Please enter a valid number in ""notify_stock_qty"" field","Bitte geben Sie in dem Feld ""notify_stock_qty"" eine gültige Zahl ein"
133
+ "Please use numbers only in ""category_id"" field.","Bitte verwenden Sie Zahlen nur in dem Feld ""category_id""."
134
+ "Please use numbers only in ""qty_increments"" field. Please avoid spaces or other characters such as dots or commas.","Bitte verwenden Sie Zahlen nur in dem Feld ""qty_increments"". Bitte vermeiden Sie Leerzeichen und andere Sonderzeichen wie Punkte oder Kommas."
135
+ "Position","Position"
136
+ "Price","Preis"
137
+ "Price Including Tax","Preis inkl. Steuern"
138
+ "Product","Produkt"
139
+ "Product Category","Produktkategorie"
140
+ "Product ID","Produkt-ID"
141
+ "Product Image","Produktbild"
142
+ "Product Type","Produkttyp"
143
+ "Product URL","Produkt-URL"
144
+ "Product Website","Produkt-Website"
145
+ "Product and Custom Options Name","Name Produkt und individuelle Optionen"
146
+ "Qty","Anzahl"
147
+ "Qty Increments","Mengenzunahme"
148
+ "Qty Uses Decimals","Stückzahl kann dezimal sein"
149
+ "Qty for Item's Status to Become Out of Stock","Menge für Artikel Status Ausverkauft"
150
+ "REST - Attributes","REST - Attribute"
151
+ "REST - Roles","REST - Rollen"
152
+ "REST ACL Attributes","REST ACL Attribute"
153
+ "REST Attributes","REST Attribute"
154
+ "REST Role","REST Rolle"
155
+ "REST Roles","REST-Rollen"
156
+ "REST Roles Information","REST Rollen Information"
157
+ "Read","Lesen"
158
+ "Refunded Qty","Rückerstattete Anzahl"
159
+ "Regular Price With Tax","Regulärer Preis inkl. Steuern"
160
+ "Regular Price Without Tax","Regulärer Preis exkl. Steuern"
161
+ "Rest Roles","Rest Rollen"
162
+ "Retrieve","Abrufen"
163
+ "Role ""%s"" no longer exists","Rolle ""%s"" existiert nicht mehr"
164
+ "Role ""%s"" not found.","Rolle ""%s"" nicht gefunden."
165
+ "Role API Resources","Rolle API-Ressourcen"
166
+ "Role Info","Rollen-Info"
167
+ "Role Information","Rollen-Informationen"
168
+ "Role Name","Rollenname"
169
+ "Role Users","Rollenbenutzer"
170
+ "Role has been deleted.","Rolle wurde gelöscht."
171
+ "Roles","Rollen"
172
+ "SKU","SKU"
173
+ "Salability Status","Verkäuflichkeitsstatus"
174
+ "Sales","Verkäufe"
175
+ "Save","Speichern"
176
+ "Shipped Qty","Versandte Anzahl"
177
+ "Shipping Amount","Lieferungsbetrag"
178
+ "Shipping Discount","Versandrabatt"
179
+ "Shipping Including Tax","Versand inklusive Steuern"
180
+ "Shipping Method","Liefermethode"
181
+ "Shipping Tax","Versandsteuer"
182
+ "State","Staat"
183
+ "Stock Availability","Lagerbestand"
184
+ "Stock ID","Lagerbestands-ID"
185
+ "Stock Item","Lagerartikel"
186
+ "Stock Status","Lagerstatus"
187
+ "Store Currency to Order Currency Rate","Währung für Wechselkurs der Bestellung speichern"
188
+ "Store Name","Store Name"
189
+ "Street","Straße"
190
+ "Subtotal","Zwischensumme"
191
+ "Subtotal Including Tax","Zwischensumme inklusive Steuern"
192
+ "System","System"
193
+ "Tax Amount","Steuerbetrag"
194
+ "Tax Name","Steuername"
195
+ "Tax Percent","Steuer Prozent"
196
+ "Tax Rate","Steuersatz"
197
+ "The ""enable_qty_increments"" field must be set to 0 or 1.","Das Feld ""enable_qty_increments"" muss auf 0 oder 1 gesetzt werden."
198
+ "The ""is_decimal_divided"" field must be set to 0 or 1.","Das Feld ""is_decimal_divided"" muss auf 0 oder 1 gesetzt werden."
199
+ "The ""is_in_stock"" field must be set to 0 or 1.","Das Feld ""is_in_stock"" muss auf 0 oder 1 gesetzt werden."
200
+ "The ""is_qty_decimal"" field must be set to 0 or 1.","Das Feld ""is_qty_decimal"" muss auf 0 oder 1 gesetzt werden."
201
+ "The ""is_qty_decimal"" field must be set to 0, 1, or 2.","Das Feld ""is_qty_decimal"" muss auf 0, 1 oder 2 gesetzt werden."
202
+ "The ""manage_stock"" field must be set to 0 or 1.","Das Feld ""manage_stock"" muss auf 0 oder 1 gesetzt werden."
203
+ "The ""stock_status_changed_auto"" field must be set to 0 or 1.","Das Feld ""stock_status_changed_auto"" muss auf 0 oder 1 gesetzt werden."
204
+ "The ""use_config_backorders"" field must be set to 0 or 1.","Das Feld ""use_config_backorders"" muss auf 0 oder 1 gesetzt werden."
205
+ "The ""use_config_enable_qty_inc"" field must be set to 0 or 1.","Das Feld ""use_config_enable_qty_inc"" muss auf 0 oder 1 gesetzt werden."
206
+ "The ""use_config_manage_stock"" field must be set to 0 or 1.","Das Feld ""use_config_manage_stock"" muss auf 0 oder 1 gesetzt werden."
207
+ "The ""use_config_max_sale_qty"" field must be set to 0 or 1.","Das Feld ""use_config_max_sale_qty"" muss auf 0 oder 1 gesetzt werden."
208
+ "The ""use_config_min_qty"" field must be set to 0 or 1.","Das Feld ""use_config_min_qty"" muss auf 0 oder 1 gesetzt werden."
209
+ "The ""use_config_min_sale_qty"" field must be set to 0 or 1.","Das Feld ""use_config_min_sale_qty"" muss auf 0 oder 1 gesetzt werden."
210
+ "The ""use_config_notify_stock_qty"" field must be set to 0 or 1.","Das Feld ""use_config_notify_stock_qty"" muss auf 0 oder 1 gesetzt werden."
211
+ "The ""use_config_qty_increments"" field must be set to 0 or 1.","Das Feld ""use_config_qty_increments"" muss auf 0 oder 1 gesetzt werden."
212
+ "The attribute rules were saved.","Die Attributregeln wurden gespeichert."
213
+ "The role has been saved.","Die Rolle wurde gespeichert."
214
+ "The role is a special one and not for assigning it to admin users.","Dabei handelt es sich um eine spezielle Rolle, die nicht für die Zuweisung an Admin-Benutzer vorgesehen ist."
215
+ "Total Due","Gesamtsumme fällig"
216
+ "Total Paid","Gesamtsumme bezahlt"
217
+ "Total Refunded","Gesamtsumme rückerstattet"
218
+ "Total Reviews Count","Gesamtzahl Bewertungen"
219
+ "Type","Typ"
220
+ "URL","URL"
221
+ "Update","Aktualisieren"
222
+ "Use Config Settings for Allow Gift Message","Verwenden Sie die Konfigurationseinstellungen zum Zulassen von Geschenksnachrichten"
223
+ "Use Config Settings for Allow Gift Wrapping","Verwenden Sie die Konfigurationseinstellungen zum Zulassen von Geschenksverpackung"
224
+ "Use Config Settings for Backorders","Verwenden Sie die Konfigurationseinstellungen für Rückstände"
225
+ "Use Config Settings for Enable Qty Increments","Verwenden Sie die Konfigurationseinstellungen für das Zulassen von Erhöhungen der Anzahl"
226
+ "Use Config Settings for Manage Stock","Verwenden Sie die Konfigurationseinstellungen für das Verwalten der Lagerbestände"
227
+ "Use Config Settings for Maximum Qty Allowed in Shopping Cart","Verwenden Sie die Konfigurationseinstellungen für die zulässige Höchstanzahl im Einkaufswagen"
228
+ "Use Config Settings for Minimum Qty Allowed in Shopping Cart","Verwenden Sie die Konfigurationseinstellungen für die zulässige Mindestanzahl im Einkaufswagen"
229
+ "Use Config Settings for Notify for Quantity Below","Verwenden Sie die Konfigurationseinstellungen für eine Benachrichtigung bei nachstehender Anzahl"
230
+ "Use Config Settings for Qty Increments","Verwenden Sie die Konfigurationseinstellungen für eine Erhöhung der Anzahl"
231
+ "Use Config Settings for Qty for Item's Status to Become Out of Stock","Verwenden Sie die Konfigurationseinstellungen für die Anzahl, ab der der Artikelstatus auf Nicht lagernd gesetzt wird"
232
+ "User Type","Benutzertyp"
233
+ "User type ""%s"" no longer exists","Benutzertyp ""%s"" existiert nicht mehr"
234
+ "User type ""%s"" not found.","Benutzertyp ""%s"" nicht gefunden."
235
+ "Web Services","Webdienste"
236
+ "Web services","Web Services"
237
+ "Write","Schreiben"
238
+ "ZIP/Postal Code","Postleitzahl"
app/locale/de_DE/Mage_Authorizenet.csv ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "--Please Select--","--Bitte wählen--"
2
+ "API Login ID","API Login ID"
3
+ "Accepted Currency","Akzeptierte Währung"
4
+ "Amount of %s approved by payment gateway. Transaction ID: ""%s"".","Menge der durch das Zahlungs-Gateway bestätigten %s. Transaktions-Id: „%s“."
5
+ "Authorize.net Direct Post","Authorize.net Direktpost"
6
+ "Card Verification Number","Kreditkartenprüfnummer"
7
+ "Card Verification Number Visual Reference","Kartenprüfnummer Sichtmerkmale"
8
+ "Close","Schließen"
9
+ "Credit Card Information","Kreditkarteninformationen"
10
+ "Credit Card Number","Kreditkartennummer"
11
+ "Credit Card Type","Kreditkartentyp"
12
+ "Credit Card Types","Kreditkartentypen"
13
+ "Credit Card Verification","Kreditkarten-Verifizierung"
14
+ "Debug","Fehlerbeseitigung"
15
+ "Email Customer","Kunden-Email"
16
+ "Enabled","Aktiviert"
17
+ "Expiration Date","Ablaufdatum"
18
+ "Gateway URL","Gateway URL"
19
+ "Maximum Order Total","Maximale Bestellung Total"
20
+ "Merchant MD5","Händler MD5"
21
+ "Merchant's Email","Händler-Email"
22
+ "Minimum Order Total","Minimale Bestellung Total"
23
+ "New Order Status","Neuer Bestellstatus"
24
+ "Order saving error: %s","Fehler beim Speichern der Order:"
25
+ "Payment Action","Zahlungsaktion"
26
+ "Payment authorization error.","Fehler bei der Zahlungsermächtigung."
27
+ "Payment authorization error. Transacion id is empty.","Fehler bei der Zahlungsbestätigung. Transaktions-ID ist leer."
28
+ "Payment error. Order was not found.","Zahlungsfehler. Bestellung konnte nicht gefunden werden."
29
+ "Payment error. Paid amount doesn\'t match the order amount.","Zahlungsfehler. Gezahlter Betrag entspricht nicht dem Rechnungsbetrag."
30
+ "Payment from Applicable Countries","Zahlung aus geeigneten Ländern"
31
+ "Payment from Specific Countries","Zahlung aus spezifischen Ländern"
32
+ "Please, choose payment method","Bitte wählen Sie die Zahlungsmethode"
33
+ "Response hash validation failed. Transaction declined.","Überprüfung der Zahlungsfähigkeit fehlgeschlagen. Transaktion abgelehnt."
34
+ "Sort Order","Sortierfolge"
35
+ "Test Mode","Testmodus"
36
+ "The order has been created.","Die Bestellung wurde aufgenommen."
37
+ "There was an error processing your order. Please contact us or try again later.","Bei der Bearbeitung Ihrer Bestellung ist ein Fehler aufgetreten. Bitte kontaktieren Sie uns oder versuchen Sie es später noch einmal."
38
+ "Title","Titel"
39
+ "Transaction Key","Transaktionsschlüssel"
40
+ "What is this?","Was ist das?"
41
+ "You will be required to enter your payment details before you place an order.","Bevor Sie eine Bestellung aufgeben können, müssen Sie Ihre Zahlungsdetails angeben."
app/locale/de_DE/Mage_Backup.csv ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Action","Aktion"
2
+ "An error occurred while creating the backup.","Beim Anlegen der Sicherungskopie ist ein Fehler aufgetreten."
3
+ "An error occurred while writing to the backup file ""%s"".","Während des Speichervorgangs auf der Sicherungsdatei ""%s"". trat ein Fehler auf."
4
+ "Are you sure you want to delete the selected backup(s)?","Sind Sie sicher, dass Sie die ausgewählten Sicherungskopie(n) löschen wollen?"
5
+ "Backup Type","Typ der Sicherungskopie"
6
+ "Backup file ""%s"" cannot be read from or written to.","Sicherungsdatei ""%s"" lässt sich weder beschreiben noch auslesen."
7
+ "Backup file ""%s"" does not exist.","Sicherungsdatei ""%s"" existiert nicht."
8
+ "Backup file does not exist.","Sicherungsdatei existiert nicht."
9
+ "Backup file handler was unspecified.","Anwender der Sicherungsdatei nicht spezifiziert."
10
+ "Backup file not found","Sicherungskopie nicht gefunden"
11
+ "Backup file path was not specified.","Pfad der Sicherungsdatei nicht spezifiziert."
12
+ "Backups","Sicherungsdateien"
13
+ "Cannot read backup file.","Sicherungsdatei kann nicht gelesen werden."
14
+ "Create Backup","Sicherungsdatei anlegen"
15
+ "Database","Datenbank"
16
+ "Database Backup","Sicherungskopie der Datenbank"
17
+ "Database and Media","Datenbank und Medien"
18
+ "Database and Media Backup","Sicherungskopie von Datenbank und Medien"
19
+ "Database was successfuly backed up.","Datenbank erfolgreich gesichert."
20
+ "Download","Download"
21
+ "Enable Scheduled Backup","Planmäßige Datensicherung aktivieren"
22
+ "Failed to connect to FTP","Verbindung mit FTP fehlgeschlagen"
23
+ "Failed to delete one or several backups.","Löschen einer oder mehrerer Sicherungskopien fehlgeschlagen"
24
+ "Failed to rollback","Rollback fehlgeschlagen"
25
+ "Failed to validate FTP","FTP-Validierung fehlgeschlagen"
26
+ "Frequency","Frequenz"
27
+ "Invalid Password.","Ungültiges Passwort"
28
+ "Maintenance Mode","Wartungsmodus"
29
+ "Name","Name"
30
+ "Not enough free space to create backup.","Nicht genug freier Speicher zum Anlegen der Sicherungskopie"
31
+ "Not enough permissions to create backup.","Keine ausreichende Berechtigung zum Anlegen der Sicherungskopie"
32
+ "Not enough permissions to perform rollback","Keine ausreichende Berechtigung zur Durchführung des Rollback"
33
+ "Please either unselect the ""Put store on the maintenance mode"" checkbox or update your permissions to proceed with the backup.""","Bitte deaktivieren Sie entweder das Kästchen ""Store auf Wartungsmodus setzen"" oder aktualisieren Sie Ihre Berechtigungen, um mit der Sicherung fortzufahren."
34
+ "Please either unselect the ""Put store on the maintenance mode"" checkbox or update your permissions to proceed with the rollback.""","Bitte deaktivieren Sie entweder das Kästchen ""Store auf Wartungsmodus setzen"" oder aktualisieren Sie Ihre Berechtigungen, um mit dem Zurücksetzen fortzufahren."""
35
+ "Put store on the maintenance mode while backup's creation","Setzen Sie den Shop während des Anlegens der Sicherungskopie in den Wartungsmodus."
36
+ "Rollback","Rollback"
37
+ "Scheduled Backup Settings","Einstellungen für die planmäßige Datensicherung"
38
+ "Size, Bytes","Größe, Bytes"
39
+ "Start Time","Startzeit"
40
+ "System","System"
41
+ "System (excluding Media)","System (exkl. Medien)"
42
+ "System Backup","Systemsicherung"
43
+ "System couldn't put store on the maintenance mode","Das System konnte den Shop nicht in den Wartungsmodus setzen."
44
+ "The database and media backup has been created.","Die Sicherungskopie von Datenbank und Medien wurde angelegt."
45
+ "The database backup has been created.","Die Sicherungskopie der Datenbank wurde angelegt."
46
+ "The file was compressed with Zlib, but this extension is not installed on server.","Die Datei wurde mit Zlib komprimiert, diese Erweiterung ist jedoch auf dem Server nicht installiert."
47
+ "The selected backup(s) has been deleted.","Die ausgewählte(n) Datenkopie(n) wurde(n) gelöscht."
48
+ "The system (excluding Media) backup has been created.","Die System-Sicherung (exkl. Medien) wurde erstellt."
49
+ "The system backup has been created.","Die Sicherungskopie des Systems wurde angelegt."
50
+ "Time","Zeit"
51
+ "Type","Typ"
52
+ "Unable to create backup. Please, try again later.","Sicherungskopie konnte nicht erstellt werden. Bitte versuchen Sie es später noch einmal."
53
+ "Unable to save the cron expression.","Der Cron-Ausdruck kann nicht gespeichert werden."
54
+ "Wrong order of creation for new backup.","Falscher Befehl zum Erstellen einer neuen Sicherungskopie."
55
+ "You do not have sufficient permissions to enable Maintenance Mode during this operation.","Sie haben nicht die erforderlichen Berechtigungen, um den Wartungsmodus während dieses Vorgangs zu aktivieren."
app/locale/de_DE/Mage_Bundle.csv ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%1$s incl tax.","%1$s incl tax."
2
+ "* Required Fields","* Pflichtfelder"
3
+ "-- Select --","-- Auswählen --"
4
+ "Add New Option","Neue Option hinzufügen"
5
+ "Add Selection","Auswahl hinzufügen"
6
+ "As Low as","So niedrig wie"
7
+ "As low as","So niedrig wie"
8
+ "Bundle Items","Bundleartikel"
9
+ "Bundle Product","Bundleprodukt"
10
+ "Bundle Product View Summary","Ansicht Produktpakete Zusammenfassung"
11
+ "Buy %1$s","Buy %1$s"
12
+ "Buy %1$s for","Buy %1$s for"
13
+ "Buy %1$s for %2$s","Buy %1$s for %2$s"
14
+ "Buy %1$s for %2$s (%3$s incl. tax) each","Buy %1$s for %2$s (%3$s incl. tax) each"
15
+ "Buy %1$s for %2$s each","Buy %1$s for %2$s each"
16
+ "Buy %1$s with %2$s discount each","Kaufen Sie %1$s mit je %2$s Rabatt"
17
+ "Catalog Product View (Bundle)","Katalog Produkt Ansicht (Bundle)"
18
+ "Checkbox","Checkbox"
19
+ "Choose a selection...","Wählen Sie eine Auswahl..."
20
+ "Click for price","Click for price"
21
+ "Close","Schließen"
22
+ "Default","Standard"
23
+ "Default Qty","Standardanzahl"
24
+ "Default Title","Standardtitel"
25
+ "Drop-down","Drop-down"
26
+ "Dynamic","Dynamisch"
27
+ "Excl. Tax","Steuer weglassen"
28
+ "Excl. Tax:","Excl. Tax:"
29
+ "Fixed","Fix"
30
+ "From","Von"
31
+ "From:","Von:"
32
+ "Gift Message","Geschenkmitteilung"
33
+ "Incl. Tax","Steuer inkludieren"
34
+ "Incl. Tax:","Incl. Tax:"
35
+ "Input Type","Eingabetyp"
36
+ "Is Required","Ist erforderlich"
37
+ "Message:","Nachricht:"
38
+ "Multiple Select","Mehrfache Auswahl"
39
+ "N/A","Nicht verfügbar"
40
+ "No options of this product are available.","Es sind keine Optionen dieses Produkts verfügbar."
41
+ "None","Keine"
42
+ "Percent","Prozent"
43
+ "Percent Discount","Prozent Rabatt"
44
+ "Please Select Products to Add","Bitte wählen Sie hinzuzufügende Produkte"
45
+ "Please enter a number greater 0 in this field.","Bitte geben Sie eine Zahl größer als 0 in dieses Feld ein."
46
+ "Please enter search conditions to view products.","Bitte geben Sie Suchbedingungen ein, um Produkte zu sehen."
47
+ "Please select options for product.","Bitte wählen Sie Optionen für das Produkt."
48
+ "Please specify product option(s).","Bitte spezifizieren Sie Produktoption(en)."
49
+ "Position","Position"
50
+ "Price Range","Preisklasse"
51
+ "Price Type","Preistyp"
52
+ "Price as configured","Preis wie konfiguriert"
53
+ "Qty:","Anzahl:"
54
+ "Radio Buttons","Radiobutton"
55
+ "Required options are not selected.","Pflichtoptionen sind nicht ausgewählt."
56
+ "Selected required options are not available.","Ausgewählte Pflichtoptionen sind nicht verfügbar."
57
+ "Separately","Separat"
58
+ "Ship Bundle Items","Bundleartikel versenden"
59
+ "Shipment","Versand"
60
+ "Store View Title","Shopansicht Titel"
61
+ "There is no defined renderer for ""%s"" option type.","Es gibt keine bestimmten Angaben für den ""%s"" Option-Typ."
62
+ "This product is also part of bundle(s)","Dieses Produkt ist Teil eines Bundles."
63
+ "To","An"
64
+ "To:","An:"
65
+ "Together","Zusammen"
66
+ "Total incl. Tax: %1$s","Total incl. Tax: %1$s"
67
+ "Use Default Value","Standardwert verwenden"
68
+ "User Defined Qty","Benutzerdefinierte Anzahl"
69
+ "and","and"
70
+ "each","each"
71
+ "save","save"
app/locale/de_DE/Mage_Captcha.csv ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "<strong>Attention</strong>: Captcha is case sensitive.","<strong>Achtung</strong>: Beim Captcha Groß- und Kleinschreibung beachten."
2
+ "After number of attempts to login","Nach Anzahl von Anmeldungsversuchen"
3
+ "Always","Immer"
4
+ "CAPTCHA","CAPTCHA"
5
+ "CAPTCHA Timeout (minutes)","CAPTCHA Timeout (Minuten)"
6
+ "CAPTCHA for ""Create user"" and ""Forgot password"" forms is always enabled if chosen","CAPTCHA für ""Benutzer erstellen"" und ""Passwort vergessen"" Formen ist immer aktiviert wenn ausgewählt"
7
+ "Case Sensitive","Groß-und Kleinschreibung beachten"
8
+ "Displaying Mode","Anzeige Modus"
9
+ "Enable CAPTCHA in Admin","CAPTCHA in Admin aktivieren"
10
+ "Enable CAPTCHA on Frontend","CAPTCHA im Frontend aktivieren"
11
+ "Font","Schriftart"
12
+ "Forms","Formen"
13
+ "If 0 is specified, CAPTCHA on the Login form will be always available.","Wenn 0 angegeben ist, ist CAPTCHA auf dem Login-Formular immer verfügbar."
14
+ "Incorrect CAPTCHA.","Falsches CAPTCHA."
15
+ "Number of Symbols","Symbolanzahl"
16
+ "Number of Unsuccessful Attempts to Login","Anzahl der fehlgeschlagenen Anmeldungsversuche"
17
+ "Please specify 8 symbols at the most. Range allowed (e.g. 3-5)","Bitte geben Sie höchstens 8 Symbole an. Zulässiger Bereich (z.B. 3-5)"
18
+ "Please type the letters below","Bitte geben Sie die untenstehenden Buchstaben ein"
19
+ "Please type the letters from the image:","Bitte geben Sie die Buchstaben auf diesem Bild ein:"
20
+ "Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer.","Bitte verwenden Sie nur Buchstaben (a-z oder A-Z) oder Zahlen (0-9) in diesem Feld. Keine Leerzeichen oder andere Zeichen sind erlaubt.
21
+ <br />Ähnliche Zeichen (z.B. ""i"", ""I', ""1"") verringern die Chance der richtigen Erkennung durch den Kunden."
22
+ "Reload captcha","Captcha neu laden"
23
+ "Symbols Used in CAPTCHA","Symbole, die im CAPTCHA verwendet werden"
app/locale/de_DE/Mage_Catalog.csv ADDED
@@ -0,0 +1,848 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "# of Use","Anzahl der Verwendungen"
2
+ "%1$s incl tax.","%1$s inkl. Steuern"
3
+ "%s - %s","%s - %s"
4
+ "%s Item(s)","%s Artikel"
5
+ "%s and above","%s und darüber"
6
+ "%s-%s of %s","%s-%s von %s"
7
+ "(%d)","(%d)"
8
+ "(Copy data from: %s)","(Kopiere Daten von: %s)"
9
+ "* Required Fields","* Notwendige Felder"
10
+ "-- Please Select --","-- Bitte auswählen --"
11
+ "86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache.","Standardwert 86400 wenn nicht eingetragen. Zum sofortigen Aktualisieren die Blocks HTML Ausgabe Cache leeren."
12
+ "<strong style=""color:red"">Warning!</strong> Applying MAP by default will hide all product prices on the frontend.","<strong style=""color:red"">Warnung!</strong> Wenn Sie MAP als Standard anwenden, werden alle Produktpreise im Frontend versteckt."
13
+ "A group with the same name already exists.","Gruppe mit dem gleichen Namen existiert bereits."
14
+ "A name is required","Ein Name wird benötigt"
15
+ "A product type is not defined for the indexer.","Produkttyp ist für den Indexer nicht definiert."
16
+ "ALL GROUPS","ALLE GRUPPEN"
17
+ "AM","AM"
18
+ "Action","Aktion"
19
+ "Actual Price","Tatsächlicher Preis"
20
+ "Add","Hinzufügen"
21
+ "Add Attribute","Eigenschaft hinzufügen"
22
+ "Add Design Change","Designänderung hinzufügen"
23
+ "Add Group","Gruppe hinzufügen"
24
+ "Add Group Price","Gruppenpreis hinzufügen"
25
+ "Add New","Neu hinzufügen"
26
+ "Add New Attribute","Neues Attribut hinzufügen"
27
+ "Add New Attribute Set","Neuer Eigenschaftensatz hinzufügen"
28
+ "Add New Group","Neue Gruppe hinzufügen"
29
+ "Add New Images","Neue Bilder hinzufügen"
30
+ "Add New Option","Neue Option hinzufügen"
31
+ "Add New Row","Neue Zeile hinzufügen"
32
+ "Add New Search Term","Neuen Suchbegriff hinzufügen"
33
+ "Add New Set","Neuen Satz hinzufügen"
34
+ "Add Product","Produkt hinzufügen"
35
+ "Add Product To Websites","Produkt zu Webseiten hinzufügen"
36
+ "Add Root Category","Stammkategorie hinzufügen"
37
+ "Add Subcategory","Unterkategorie hinzufügen"
38
+ "Add Tax","Steuer hinzufügen"
39
+ "Add Tier","Ebene hinzufügen"
40
+ "Add attribute into attribute set","Attribut zum Attribute-Set hinzufügen"
41
+ "Add group into attribute set","Gruppe zum Attribute-Set hinzufügen"
42
+ "Add new custom option into product","Spezifische Option zum Produkt hinzufügen"
43
+ "Add new values into custom option","Neue Werte zur benutzerdefinierten Option hinzufügen"
44
+ "Add option","Option hinzufügen"
45
+ "Add to Cart","Zum Warenkobrn hinzufügen"
46
+ "Add to Compare","Hinzufügen um zu vergleichen"
47
+ "Add to Wishlist","Zum Wunschzettel hinzufügen"
48
+ "Additional Information","Zusätzliche Information"
49
+ "Alert Urls","Warn-Urls"
50
+ "All","Alle"
51
+ "All Product Types","Alle Produkttypen"
52
+ "All Websites","Alle Webseiten"
53
+ "All products","Alle Produkte"
54
+ "All products - recently added products, New products - products marked as new","Alle Artikel - Kürzlich hinzugefügte, neue - als neu gekennzeichnete"
55
+ "All products of this set will be deleted! Are you sure you want to delete this attribute set?","Alle Produkte dieses Satzes werden gelöscht! Sind Sie sicher, dass Sie diesen Eigenschaftensatz löschen möchten?"
56
+ "Allow All Products per Page","Alle Produkte pro Seite zulassen"
57
+ "Allow Dynamic Media URLs in Products and Categories","Dynamische Medien-URLs in Produkten und Kategorien zu lassen"
58
+ "Allow HTML Tags on Frontend","HTML-Tags am Frontend zulassen"
59
+ "Allowed File Extensions","Erlaubte Dateierweiterungen"
60
+ "Allowed file extensions to upload","Erlaubte Dateierweiterungen zum Hochladen"
61
+ "Amount","Summe"
62
+ "An error occurred while adding products to websites.","Ein Fehler ist aufgetreten, während Produkte zu Webseiten hinzugefügt wurden."
63
+ "An error occurred while clearing comparison list.","Beim Löschen der Vergleichsliste ist ein Fehler aufgetreten."
64
+ "An error occurred while deleting this review.","Beim Löschen dieser Rezension ist ein Fehler aufgetreten."
65
+ "An error occurred while removing products from websites.","Ein Fehler ist aufgetreten, während Produkte von Webseiten entfernt wurden."
66
+ "An error occurred while saving the URL rewrite","Ein Fehler ist beim Speichern der URL-Umschreibung aufgetreten."
67
+ "An error occurred while saving the attribute set.","Beim Speichern des Eigenschaftensatzes ist ein Fehler aufgetreten."
68
+ "An error occurred while saving the collection, aborting. Error message: %s","Beim Speichern der Sammlung ist ein Fehler aufgetreten. Abbruch erfolgt. Fehlermeldung: %s"
69
+ "An error occurred while saving the product. ","Beim Speichern des Produktes ist ein Fehler aufgetreten."
70
+ "An error occurred while saving the search query.","Beim Speichern der Suchanfrage ist ein Fehler aufgetreten."
71
+ "An error occurred while saving this group.","Beim Speichern dieser Gruppe ist ein Fehler aufgetreten."
72
+ "An error occurred while saving this review.","Beim Speichern der Rezension ist ein Fehler aufgetreten."
73
+ "An error occurred while trying to delete the category.","Beim Versuch die Kategorie zu löschen ist ein Fehler aufgetreten."
74
+ "An error occurred while updating the product(s) attributes.","Beim Aktualisieren der Eigenschaften der/des Produkte(s) ist ein Fehler aufgetreten."
75
+ "An error occurred while updating the product(s) status.","Bei der Aktualisierung des Status der/des Produkte(s) ist ein Fehler aufgetreten."
76
+ "An invalid group ID is specified, skipping the record.","Ungültige Gruppen-ID, Datensatz wird übersprungen."
77
+ "An invalid option ID is specified for %s (%s), skipping the record.","Eine ungültige Options-ID wurde für %s angegeben (%s). Eintrag wird übersprungen."
78
+ "An invalid store was specified.","Es wurde ein ungültiges Geschäft angegeben."
79
+ "Anchor Custom Text","Anchor eigener Text"
80
+ "Anchor Custom Title","Anchor eigener Titel"
81
+ "Applicable to catalog products and categories only. Any media content will be inserted into editor as a static URL. It is not updated if the system configuration base URL changes.","Nur auf Katalogprodukte und Kategorien anwendbar. Jeder Medieninhalt wird in den Editor als ein statischer URL eingefügt. Er wird nicht aktualisiert, wenn der Systemkonfigurations-Basis-URL sich ändert."
82
+ "Apply MAP (Default Value)","MAP anwenden (Standardwert)"
83
+ "Apply To","Anwenden auf"
84
+ "Approved","Bestätigt"
85
+ "Are you sure you want to delete this category?","Möchten Sie diese Kategorie wirklich löschen?"
86
+ "Are you sure you would like to remove all products from your comparison?","Sind Sie sicher, dass Sie alle Produkte von Ihrem Vergleich entfernen möchten?"
87
+ "Are you sure you would like to remove this item from the compare products?","Sind Sie sicher, dass Sie diese Position vom Produktvergleich entfernen möchten?"
88
+ "Are you sure?","Sind Sie sicher?"
89
+ "As low as:","So niedrig wie:"
90
+ "Assign","Zuordnen"
91
+ "Assign product link","Produktlink zuordnen"
92
+ "Assign product to category","Produkt zu Kategorie zuordnen"
93
+ "Assigned Products","Zugeordnete Produkte"
94
+ "Associated Products","Zugehörige Produkte"
95
+ "Attrib. Set Name","Name des Eigenschaftensatzes"
96
+ "Attribute ""%s"" is invalid.","Attribut ""%s"" ist ungültig."
97
+ "Attribute ""%s"" is required.","Attribut ""%s"" erforderlich."
98
+ "Attribute Information","Eigenschafteninformation"
99
+ "Attribute Model","Eigenschaftenmodell"
100
+ "Attribute Name:","Eigenschaftenname:"
101
+ "Attribute Set","Attributset"
102
+ "Attribute Sets","Attribute-Sets"
103
+ "Attribute add","Attribut hinzufügen"
104
+ "Attribute code is invalid. Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.","Eingabecode ist ungültig. Bitte benutzen Sie nur Buchstaben (a-z), Zahlen (0-9) oder Unterstreichungen (_) in diesem Feld, das erste Zeichen sollte ein Buchstabe sein."
105
+ "Attribute group with the \"/name/\" name already exists","Attributgruppe mit dem \"/name/\"-Namen existiert bereits"
106
+ "Attribute group with the \/name/\ name already exists","Es besteht schone eine Gruppe von Attributen mit dem \/name/\ Namen."
107
+ "Attribute remove","Attribut löschen"
108
+ "Attribute with the same code already exists","Die Eigenschaft ist mit dem gleichen Code bereits vorhanden"
109
+ "Attributes","Attribute"
110
+ "Attrribute names can be specified per store.","Eigenschaftennamen können pro Geschäft angegeben werden."
111
+ "Autogenerate","Automatisch generieren"
112
+ "Availability:","Verfügbarkeit:"
113
+ "Back","Zurück"
114
+ "Backend Model","Backend-Modell"
115
+ "Backend Table","Backend-Tabelle"
116
+ "Backend Table Title","Backend-Tabellentitel"
117
+ "Backorders","Lieferückstand"
118
+ "Based On","Basierend auf"
119
+ "Before Order Confirmation","Vor der Bestellungsbestätigung"
120
+ "Best Value","Bester Wert"
121
+ "Block after Info Column","Nach Infospalte sperren"
122
+ "Bottom Block Options Wrapper","Unterseite Sperroptionendeckblatt"
123
+ "Bottom/Left","Unten/Links"
124
+ "Bottom/Right","Unten/Rechts"
125
+ "Browse By","Durchsuchen nach"
126
+ "Bundle Items","Gebündelte Artikel"
127
+ "Buy %1$s","Kaufen Sie %1$s"
128
+ "Buy %1$s for","Kaufen Sie %1$s für"
129
+ "Buy %1$s for %2$s","Kaufen Sie %1$s für %2$s"
130
+ "Buy %1$s for %2$s (%3$s incl. tax) each","Kaufen Sie %1$s für je %2$s (%3$s inkl. Steuer)"
131
+ "Buy %1$s for %2$s each","Kaufen Sie %1$s für je %2$s"
132
+ "Cache Lifetime (Seconds)","Cache-Lebensdauer (Sekunden)"
133
+ "Cache refresh needed.","Cache-Auffrischung erforderlich."
134
+ "Can be Divided into Multiple Boxes for Shipping","Kann für den Versand in mehrere Pakete unterteilt werden"
135
+ "Can be used only with catalog input type Dropdown","Kann nur mit Katalogeingabeart Dropdown verwendet werden"
136
+ "Can be used only with catalog input type Dropdown, Multiple Select and Price","Kann nur mit Katalogeingabeart Dropdown, Mehrfachauswahl und Preis verwendet werden."
137
+ "Can\'t create image.","Kann kein Bild erzeugen."
138
+ "Cancel","Abbrechen"
139
+ "Cannot create image.","Kann kein Bild erzeugen."
140
+ "Cannot create writeable directory '%s'.","Kann keine schreibbares Verzeichnis erstellen.'%s'."
141
+ "Cart Item Attribute","Merkmal eines Einkaufswagen-Artikels"
142
+ "Catalog","Katalog"
143
+ "Catalog Category (Anchor)","Katalogkategorie (Fixpunkt)"
144
+ "Catalog Category (Non-Anchor)","Katalogkategorie (kein Fixpunkt)"
145
+ "Catalog Category (Without Subcategories)","Katalogkategorie (ohne Unterkategorien)"
146
+ "Catalog Category Link","Katalogkategorie-Link"
147
+ "Catalog New Products List","Neue Produktliste des Katalogs"
148
+ "Catalog Price Scope","Preisspanne im Katalog"
149
+ "Catalog Product Compare List","Katalogprodukte-Vergleichsliste"
150
+ "Catalog Product Email to a Friend","Produkt aus dem Katalog per E-Mail an einen Freund senden"
151
+ "Catalog Product Image Gallery Popup","Katalog-Popup der Produktbildergallerie"
152
+ "Catalog Product Link","Link zu den Produkten im Katalog"
153
+ "Catalog Product View (Any)","Produktansicht des Katalogs (beliebig)"
154
+ "Catalog Product View (Configurable)","Produktansicht des Katalogs (konfigurierbar)"
155
+ "Catalog Product View (Grouped)","Produktansicht des Katalogs (in Gruppen)"
156
+ "Catalog Product View (Simple)","Produktansicht des Katalogs (vereinfacht)"
157
+ "Catalog Product View (Virtual)","Produktansicht des Katalogs (virtuell)"
158
+ "Catalog Section","Katalogabschnitt"
159
+ "Catalog Seo Sitemap (Category List)","Suchmaschinenoptimierungsindex des Katalogs (Kategorienliste)"
160
+ "Catalog Seo Sitemap (Category Tree)","Suchmaschinenoptimierungsindex des Katalogs (Kategoriebaum)"
161
+ "Catalog Seo Sitemap (Common)","Suchmaschinenoptimierungsindex des Katalogs (allgemein)"
162
+ "Catalog Seo Sitemap (Product List)","Suchmaschinenoptimierungsindex des Katalogs (Produktliste)"
163
+ "Catalog URL Rewrites","Umschreibung der Katalog-URL"
164
+ "Catalog product custom option values API","API für benutzerdefinierte Optionswerte für Katalogprodukte"
165
+ "Catalog product custom options API","API für benutzerdefinierte Katalogprodukt-Optionen"
166
+ "Catalog, Search","Katalog, Suche"
167
+ "Categories","Kategorien"
168
+ "Categories Sitemap","Kategorienindex"
169
+ "Category","Kategorie"
170
+ "Category API","Kategorien-Programmierschnittstelle"
171
+ "Category Data","Kategoriedaten"
172
+ "Category Flat Data","Flache Kategoriedaten"
173
+ "Category Link Block Template","Kategorielink, Blockschablone"
174
+ "Category Link Inline Template","Kategorielink, eingebettet in Schablone"
175
+ "Category Products","Kategorieprodukte"
176
+ "Category Top Navigation","Obere Kategorien-Navigationsleiste"
177
+ "Category URL Suffix","Kategorie, URL-Suffix"
178
+ "Category attributes API","Kategorie-Merkmale, Programmierschnittstelle"
179
+ "Category move error","Kategorie-Bewegungsfehler"
180
+ "Category move error %s","Kategorieverschiebungsfehler %s"
181
+ "Category move operation is not possible: parent category is equal to child category.","Verschieben der Kategorie ist nicht möglich: Der übergeordnete Ordner gleicht dem untergeordneten."
182
+ "Category move operation is not possible: the current category was not found.","Verschieben der Kategorie ist nicht möglich: Die aktuelle Kategorie wurde nicht gefunden."
183
+ "Category move operation is not possible: the new parent category was not found.","Kategorie-Verschiebevorgang nicht möglich: die neue Position in der Baumstruktur konnte nicht gefunden werden."
184
+ "Category must be an instance of Mage_Catalog_Model_Category.","Kategorie muss eine Instanz von Mage_Catalog_Model_Category sein."
185
+ "Center","Mitte"
186
+ "Change","Ändern"
187
+ "Change or Retrieve attribute store view","Ändern und Wiederfinden der Speicheransicht der Eigenschaften"
188
+ "Change status","Status ändern"
189
+ "Check items to add to the cart or","Artikel überprüfen, um sie dem Einkaufswagen zuzufügen oder"
190
+ "Choose an Option...","Eine Option auswählen..."
191
+ "Clear All","Alle löschen"
192
+ "Clear Price","Preis löschen"
193
+ "Click for price","Klicken für den Preis"
194
+ "Close Window","Fenster Schließen"
195
+ "Collapse All","Alle einklappen"
196
+ "Comma-separated.","Durch Komma getrennt."
197
+ "Comparable","Vergleichbar"
198
+ "Comparable on Front-end","Vergleichbar am Frontend"
199
+ "Comparable on the Frontend","Vergleichbar am Frontend"
200
+ "Compare","Vergleichen"
201
+ "Compare Products","Produkte vergleichen"
202
+ "Conditions Combination","Bedingungenkombination"
203
+ "Configurable Product","Konfigurierbare Produkte"
204
+ "Configurable Product Settings","Konfigurierbare Produkteinstellungen"
205
+ "Configure Product","Produkt konfigurieren"
206
+ "Continue","Fortsetzen"
207
+ "Copy From Configurable","Aus konfigurierbaren Produkteinstellungen kopieren"
208
+ "Country/State","Land/Staat"
209
+ "Create","Erstellen"
210
+ "Create (Upload)","Erstellen (hochladen)"
211
+ "Create Empty","Leere Datei erstellen"
212
+ "Create Permanent Redirect for URLs if URL Key Changed","Permanente Weiterleitung für URLs erstellen, wenn der URL-Schlüssel geändert wird"
213
+ "Create Permanent Redirect for old URL","Andauernde Umleitung für alte URL erstellen"
214
+ "Create Product Settings","Produkteinstellungen erstellen"
215
+ "Create Simple Associated Product","Erstellen eines einfachen dazugehörigen Produkts"
216
+ "Create attribute set based on another set","Attribute-Set aus einem anderen Set erstellen"
217
+ "Create new attribute","Neues Attribut erstellen"
218
+ "Create new category","Neue Kategorie erstellen"
219
+ "Create new product","Neues Produkt erstellen"
220
+ "Cross-sells","Querverkäufe"
221
+ "Currently Shopping by:","Derzeit einkaufend bei:"
222
+ "Custom Design","Eigene Gestaltung"
223
+ "Custom Options","Kundenoptionen"
224
+ "Custom options","Benutzerdefinierte Optionen"
225
+ "Customer Group","Kundengruppe"
226
+ "Customers Reviews","Berichte der Kunden"
227
+ "Customers Tagged Product","Produkt vom Kunden markiert"
228
+ "Data Type for Saving in Database","Datentyp für das Speichern in Datenbank"
229
+ "Date & Time Custom Options","Benutzerdefinierten Optionen bezüglich Datum und Uhrzeit"
230
+ "Date Fields Order","Feldbefehl Datum"
231
+ "Date Subscribed","Anmeldedatum"
232
+ "Datetime","Datetime"
233
+ "Decimal","Dezimal"
234
+ "Declare attribute value saving scope","Definiere Attribut ""Wertsparender Spielraum"""
235
+ "Default ""What's This"" Text Message","""Was ist das""-Standard-Textmitteilung"
236
+ "Default Popup Text Message","Standard-Popup-Textmitteilung"
237
+ "Default Price","Vorgegebener Preis"
238
+ "Default Price Navigation Step","Navigationsschritt vorgegebener Preis"
239
+ "Default Qty","Standardanzahl"
240
+ "Default Values","Standardwerte"
241
+ "Defines the base currency scope (""Currency Setup"" > ""Currency Options"" > ""Base Currency"").","Definiert den Umfang der Basiswährung (""Einstellen der Währung"" > ""Währungsoptionen"" > ""Basiswährung"")."
242
+ "Delete","Löschen"
243
+ "Delete Attribute","Attribute löschen"
244
+ "Delete Attribute Set","Attributreihe löschen"
245
+ "Delete Category","Kategorie löschen"
246
+ "Delete Group Price","Gruppenpreis löschen"
247
+ "Delete Option","Option löschen"
248
+ "Delete Row","Reihe löschen"
249
+ "Delete Search","Suche löschen"
250
+ "Delete Selected Group","Ausgewählte Gruppe löschen"
251
+ "Delete Tier","Ebene löschen"
252
+ "Delete attribute","Attribut löschen"
253
+ "Delete category","Kategorie entfernen"
254
+ "Delete product","Produkt löschen"
255
+ "Depends on design theme","abhängig vom Design Thema"
256
+ "Design","Gestaltung"
257
+ "Details","Details"
258
+ "Disabled","Deaktiviert"
259
+ "Disallowed file type.","Nicht erlaubter Dateityp"
260
+ "Display Actual Price","Tatsächlichen Preis anzeigen"
261
+ "Display Page Control","Seitensteuerung anzeigen"
262
+ "Display Price Interval as One Price","Preisintervall als einen Preis anzeigen"
263
+ "Display Product Count","Produktanzahl anzeigen"
264
+ "Display Type","Typ anzeigen"
265
+ "Display in Suggested Terms","Anzeige laut vorgeschlagener Nutzungsbedingungen"
266
+ "Double click on a group to rename it","Doppel-Klick auf eine Gruppe um sie umzubennenen"
267
+ "Double click on above image to view full picture","Doppel-Klick auf das obige Image um Vollbild anzuzeigen"
268
+ "Downloadable Information","Informationen zum Herunterladen"
269
+ "Duplicate","duplizieren"
270
+ "Duplicate amount found.","Dupliziere die gefundene Menge (Summe)."
271
+ "Duplicate website group price customer group.","Webseite Gruppenpreis Kundengruppe duplizieren."
272
+ "Duplicate website tier price customer group and quantity.","Preisstruktur, Kundengruppe und Menge duplizieren."
273
+ "Duplicate website, country and state tax found.","Dupliziere die gefundene Website, Land und Gebühr."
274
+ "E.g. {{media url=""path/to/image.jpg""}} {{skin url=""path/to/picture.gif""}}. Dynamic directives parsing impacts catalog performance.","Zum Beispiel: {{media url=""path/to/image.jpg""}} {{skin url=""path/to/picture.gif""}}. Dynamische Richtlinien-Analyse wirkt sich auf die Katalogleistung aus."
275
+ "Edit","Bearbeiten"
276
+ "Edit Attribute Set '%s'","Eigenschaftensatz '%s' bearbeiten"
277
+ "Edit Product Attribute","Produkteigenschaften bearbeiten"
278
+ "Edit Product Attribute ""%s""","Produkteigenschaft ""%s"" bearbeiten"
279
+ "Edit Search","Suche bearbeiten"
280
+ "Edit Search '%s'","Suche '%s' bearbeiten"
281
+ "Edit Set Name","Name bearbeiten einstellen"
282
+ "Email","E-Mail"
283
+ "Email to a Friend","E-Mail an einen Freund"
284
+ "Empty","Leer"
285
+ "Enable MAP","MAP aktivieren"
286
+ "Enable Qty Increments","Anzahlzunahme aktivieren"
287
+ "Enable WYSIWYG","WYSIWYG aktivieren"
288
+ "Enable for reindexing a big number of SKUs.","Aktivieren Sie eine große Anzahl von SKUs für die Neuindizierung."
289
+ "Enabled","Aktiviert"
290
+ "Error during retrieval of option value: %s","Fehler bei Abfragen von Optionswert: %s"
291
+ "Exclude","Auschließen"
292
+ "Expand All","Alle erweitern"
293
+ "Failed","Fehlgeschlagen"
294
+ "Failed to copy file %s. Please, delete media with non-existing images and try again.","Datei %s ließ sich nicht kopieren. Bitte löschen sie die Medien mit fehlenden Bildern und versuchen sie es erneut."
295
+ "Failed to move file: %s","Datei konnte nicht verschoben werden: %s"
296
+ "Feature Products","Produkte bieten"
297
+ "Field is not complete","Feld ist nicht vollständig"
298
+ "File options format is not valid.","Dateioptionsformat ist nicht gültig."
299
+ "File upload failed","Dateiupload fehlgeschlagen"
300
+ "Filter","Filter"
301
+ "Filter model name must be declared.","Filtermodulname muss angegeben werden."
302
+ "Filter must be an object. Please set correct filter.","Filter muss ein Objekt sein. Stellen Sie bitte den korrekten Filter ein."
303
+ "Filterable (no results)","Filterbar (keine Ergebnisse)"
304
+ "Filterable (with results)","Filterbar (mit Ergebnissen)"
305
+ "First Name","Vorname"
306
+ "Fixed","Fix"
307
+ "For internal use.","Für interne Verwendung"
308
+ "For the last time placed.","Letzte Bestellung aufgegeben am"
309
+ "Frontend","Oberfläche"
310
+ "Frontend Model","Oberflächenmodell"
311
+ "Frontend Properties","Frontend-Eigenschaften"
312
+ "Gallery","Gallerie"
313
+ "General Information","Allgemeine Information"
314
+ "Get full information about attribute with list of options","Vollständige Angaben zum Attribut mit Liste möglicher Optionen einblenden"
315
+ "Get full information about custom option in product","Vollständige Informationen über die benutzerdefinierten Produktoptionen abrufen"
316
+ "Get list of available custom option types","Liste der verfügbaren benutzerdefinierten Optionstypen abrufen"
317
+ "Get list of non-default attributes by product type and attributes set","Liste nicht-standardmäßiger Attribute nach Art und Attributsatz einblenden"
318
+ "Get list of possible attribute types","Liste möglicher Attributtypen abrufen"
319
+ "Get special price","Angebote"
320
+ "Global","Global"
321
+ "Globally Editable","Global bearbeitbar"
322
+ "Go to Home Page","Zur Startseite gehen"
323
+ "Grid","Raster"
324
+ "Group add","Gruppe hinzufügen"
325
+ "Group remove","Gruppe entfernen"
326
+ "Grouped Product","Gruppiertes Produkt"
327
+ "Groups","Gruppen"
328
+ "Home","Startseite"
329
+ "ID","ID"
330
+ "ID: %s","ID: %s"
331
+ "If empty, the Category Name will be used","Falls leer, wird der Kategoriename verwendet"
332
+ "If empty, the Product Name will be used","Wenn nicht ausgefüllt, wird der Produktname genutzt"
333
+ "If you do not specify an option value for a specific store view then the default (Admin) value will be used.","Wenn Sie keinen Optionswert für eine spezifische Shopansicht festlegen wird der Standard (Admin) Wert verwendet."
334
+ "Image","Bild"
335
+ "Image content is not valid base64 data.","Bildinhalt ist keine gültige base64 Datei."
336
+ "Image does not exist.","Bild existiert nicht"
337
+ "Image file was not found.","Bilddatei wurde nicht gefunden."
338
+ "Image type and information need to be specified for each store view.","Bildtyp und Informationen müssen für jede Shopansicht festgelegt werden."
339
+ "In Cart","Im Einkaufswagen"
340
+ "In Stock","Auf Lager"
341
+ "In stock","Auf Lager"
342
+ "Incl. Tax","Mit Mwst."
343
+ "Index product and categories URL rewrites","Index Produkt und Kategorien URL Neuschreibungen"
344
+ "Index product attributes for layered navigation building","Produktattribute für einen mehrstufigen Navigationsaufbau indizieren"
345
+ "Index product prices","Index Produktpreise"
346
+ "Indexed category/products association","Indizierte Kategorie/Produkassoziierung"
347
+ "Info","Informationen"
348
+ "Info Column Options Wrapper","Deckblatt Optionen für Infospalte"
349
+ "Input Type","Eingabetyp"
350
+ "Integer","Integer"
351
+ "Interval Division Limit","Internes Teilungslimit"
352
+ "Invalid Tier Prices","Üngültige Stufenpreise"
353
+ "Invalid attribute %s","Ungültiges Attribut %s"
354
+ "Invalid attribute option specified for attribute %s (%s), skipping the record.","Ungültige Option für Attribut %s definiert (%s), Eintrag wird übersprungen."
355
+ "Invalid attribute set specified, skipping the record.","Ungültige Merkmale angegeben, Aufzeichnung wird übersprungen."
356
+ "Invalid block: %s.","Ungültiger Block: %s."
357
+ "Invalid category IDs.","Ungültige KategorieIDs."
358
+ "Invalid category.","Ungültige Kategorie"
359
+ "Invalid image file type.","Ungültiger Bilddateityp."
360
+ "Invalid image type.","Ungültige Bildart."
361
+ "Invalid option ID specified for %s (%s), skipping the record.","Ungültige OptionsID für %s (%s) festgelegt, wird übersprungen."
362
+ "Invalid product type specified, skipping the record.","Ungültiger Produkttyp ausgewählt, Aufzeichnung wird übersprungen."
363
+ "Invalid store specified","Ungültiger Store definiert"
364
+ "Invalid store specified, skipping the record.","Ungültiger Store definiert, Eintrag wird übersprungen."
365
+ "Invalid tier prices. The product is not associated to the requested website.","Ungültige Preisebene. Das Produkt ist nicht mit der angeforderten Webseite verbunden."
366
+ "Inventory","Inventar"
367
+ "Is Default","Als Standard"
368
+ "Is Required","Ist erforderlich"
369
+ "Items %s to %s of %s total","Artikel %s auf %s von %s gesamt"
370
+ "Items that you do not want to show in the catalog or search results should have status 'Disabled' in the desired store.","Gegenstände die im Katalog oder den Suchergebnissen nicht erscheinen sollen, sollten den Status ""Deaktiviert"" im gewünschten Shop haben."
371
+ "Items that you don't want to show in the catalog or search results should have status 'Disabled' in the desired store.","Artikel, die nicht in den Suchergebnissen oder im Katalog angezeigt werden sollen, sollten den Status 'Deaktiviert' im gewünschten Shop haben."
372
+ "Keep your eyes open for our special Back to School items and save A LOT!","Halten Sie die Augen offen für unsere speziellen Angebote zum Schulanfang und sparen Sie VIEL GELD!"
373
+ "Label","Label"
374
+ "Last Name","Letzter Name"
375
+ "Last Notification","Letzte Benachrichtigung"
376
+ "Layered Navigation","Mehstufige Navigation"
377
+ "Learn More","mehr dazu"
378
+ "Line %d, Email: %s","Zeile %d, Email: %s"
379
+ "Line %d, SKU: %s","Zeile %d, SKU: %s"
380
+ "Link (Related, Up sell, Cross sell)","Link (Verwandt, Angebot, Mehrfachangebot)"
381
+ "Link product does not exist.","Verknüpftes Produkt existiert nicht."
382
+ "Link to a Specified Category","Link zu einer bestimmten Kategorie"
383
+ "Link to a Specified Product","Link zum angegebenen Produkt"
384
+ "List","Liste"
385
+ "List Mode","Listenmodus"
386
+ "List of Products that are set as New","Liste von Produkten, die als neu klassifiziert sind"
387
+ "List of types","Artenliste"
388
+ "Manage Attribute Sets","Attributsets verwalten"
389
+ "Manage Attributes","Attribute verwalten"
390
+ "Manage Catalog Categories","Katalogkategorien verwalten"
391
+ "Manage Categories","Kategorien verwalten"
392
+ "Manage Label / Options","Bezeichnungen/Optionen verwalten"
393
+ "Manage Options (values of your attribute)","Optionen (Werte Ihrer Attribute) verwalten"
394
+ "Manage Product Attributes","Produktattribute verwalten"
395
+ "Manage Product Sets","Produktsets verwalten"
396
+ "Manage Products","Produkte verwalten"
397
+ "Manage Stock","Lagerbestand verwalten"
398
+ "Manage Titles (Size, Color, etc.)","Titel verwalten (Größe, Farbe, etc.)"
399
+ "Max Characters","Maximale Anzahl Zeichen"
400
+ "Maximal Depth","Maximale Tiefe"
401
+ "Maximum Image Size","Maximale Bildgröße"
402
+ "Maximum Number of Price Intervals","Maximale Anzahl an Preisintervallen"
403
+ "Maximum Qty Allowed in Shopping Cart","Maximal im Warenkorb erlaubte Anzahl"
404
+ "Maximum allowed image size for '%s' is %sx%s px.","Maximal erlaubte Bildgröße für '%s' ist %sx%s px."
405
+ "Maximum image height","Maximale Bildhöhe"
406
+ "Maximum image width","Maximale Bildbreite"
407
+ "Maximum number of characters:","Maximale Anzahl Zeichen:"
408
+ "Maximum number of price intervals is 100","Die maximale Anzahl an Preisintervallen ist 100."
409
+ "Media Image","Bild"
410
+ "Minimum Advertised Price","Beworbener Mindestpreis"
411
+ "Minimum Lines per Page","Minimale Zeilenanzahl pro Seite"
412
+ "Minimum Qty Allowed in Shopping Cart","Minimal im Warenkorb zulässige Menge"
413
+ "Minimum Qty for Item\'s Status to be Out of Stock","Minimale Stückzahl für Nicht auf Lager-Status"
414
+ "Missing SKU, skipping the record.","Artikelnummer fehlt, Eintrag übersprungen."
415
+ "More Views","Mehr Ansichten"
416
+ "Move","Verschieben"
417
+ "Move category in tree","Kategorie in Verzeichnis verschieben"
418
+ "Multi update product","Produkt mit Mehrfach-Aktualisierung"
419
+ "Must be in the allowed values list.","Muss ein Wert aus der Liste gültiger Werte sein."
420
+ "My Account","Mein Konto"
421
+ "N/A","Nicht zutreffend"
422
+ "Name","Name"
423
+ "Name in %s","Name in %s"
424
+ "New Product","Neues Produkt"
425
+ "New Product Attribute","Neues Produktattribut"
426
+ "New Products","Neue Produkte"
427
+ "New Products Grid Template","Neue Produkt Rastervorlage"
428
+ "New Products List Template","Neue Produkt Listenvorlage"
429
+ "New Root Category","Neue Root Kategorie"
430
+ "New Search","Neue Suchabfrage"
431
+ "New Set Name","Neuer Setname"
432
+ "New Subcategory","Neue Unterkategorie"
433
+ "New products","Neue Produkte"
434
+ "Next","Weiter"
435
+ "No","Nein"
436
+ "No image","Kein Bild"
437
+ "No layout updates","Keine Aktualisierungen des Layouts"
438
+ "No options of this product are available.","Es sind keine Optionen dieses Produkts verfügbar."
439
+ "No product collections found.","Keine Produktsammlungen gefunden."
440
+ "None","Keine"
441
+ "Not Visible Individually","Nicht individuell sichtbar"
442
+ "Notify Low Stock RSS","Lagerbestand RSS"
443
+ "Notify for Quantity Below","Bei unterer Anzahl benachrichtigen."
444
+ "Number of Products per Page","Anzahl der Produkte pro Seite"
445
+ "Number of Products to Display","Anzahl angezeigter Produkte"
446
+ "Number of Uses","Anzahl der Verwendungen"
447
+ "Number of results","Anzahl der Ergebnisse"
448
+ "Number of results (For the last time placed)","Anzahl der Ergebnisse (für die letzte platzierte Zeit)"
449
+ "OK","OK"
450
+ "OR","ODER"
451
+ "Old Price:","Alter Preis:"
452
+ "On Gesture","Gestik An"
453
+ "Option validation failed to add product to cart.","Überprüfung von Produkt-Optionen beim Hinzufügen zum Warenkorb fehlgeschlagen."
454
+ "Option values","Optionswerte"
455
+ "Option:","Option:"
456
+ "Options","Optionen"
457
+ "Options Control","Optionenkontrolle"
458
+ "Options is required","Optionen ist obligatorisch"
459
+ "Our customer service is available 24/7. Call us at (555) 555-0123.","Unser Kunden-Service ist 24/7 erreichbar. Kontaktieren Sie uns unter (555)555-0123."
460
+ "Out of Stock","Nicht vorrätig"
461
+ "Out of stock","Ausverkauft"
462
+ "PM","Nachmittags"
463
+ "Page Title Separator","Trennzeichen im Seitentitel"
464
+ "Parent Category","Überkategorie"
465
+ "Pending","Ausstehend"
466
+ "Pending Reviews RSS","Ausstehende Kundenmeinungen RSS"
467
+ "Percentage","Prozentsatz"
468
+ "Please add rows to option.","Bitte Zeilen zur Option hinzufügen."
469
+ "Please be careful as once you click on the row it will load package data form the selected file and all unsaved form data will be lost.","ACHTUNG: Bei einem Klick auf die Zeile werden die Paketdaten geladen und überschreiben alle ungespeicherten Formulardaten."
470
+ "Please click on the Close Window button if it is not closed automatically.","Klicken Sie bitte auf die Schaltfläche Fenster Schließen, wenn dies nicht automatisch erfolgt."
471
+ "Please enter a new group name","Bitte geben Sie einen neuen Gruppennamen ein"
472
+ "Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -&gt; <a href=""%s"">Index Management</a>","Bitte aktualisieren Sie ""Neufassungen der Katalog-URLs"" und ""Produktattribute"" in der -&gt; <a href=""%s"">Indexverwaltung</a> des Systems"
473
+ "Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>","Bitte aktualisieren sie ""Katalog URL Versionen"" und ""Produkteigenschaften"" in System -> <a href=""%s"">Index Management</a>"
474
+ "Please refresh ""Product Attributes"" in System -&gt; <a href=""%s"">Index Management</a>","Bitte aktualisieren Sie ""Produktattribute"" in der -&gt; <a href=""%s"">Indexverwaltung</a> des Systems"
475
+ "Please select a static block ...","Wählen Sie bitte einen statischen Block..."
476
+ "Please select items.","Bitte wählen Sie Artikel."
477
+ "Please select one or more attributes.","Bitte wählen Sie ein oder mehrere Attribut(e)."
478
+ "Please select product(s).","Wählen Sie bitte ein Produkt(e)."
479
+ "Please select products for attributes update","Wählen Sie bitte Produkte für die Aktualisierung der Merkmale"
480
+ "Please set up merge date/time","Bitte Datum/Zeit-Verbindung einrichten"
481
+ "Please set up merge date/time later then present date","Zusammenfassung von Datum/Uhrzeit einstellen und dann das Datum anzeigen"
482
+ "Please specify date required option(s).","Bitte die benötigten Datum-Optionen angeben."
483
+ "Please specify the number of products, that will not be divided into subintervals.","Geben sie bitte die Anzahl an Artikeln an, die nicht in Teilintervalle geteilt werden."
484
+ "Please specify the product required option(s)","Bitte die obligatorischen Produktoption(en) angeben"
485
+ "Please specify the product required option(s).","Geben Sie bitte die obligatorischen Produktoption(en) an."
486
+ "Please specify the product\'s option(s).","Bitte die Produkt-Optionen angeben."
487
+ "Please specify the product\'s required option(s).","Geben Sie bitte die obligatorischen Option(en) für das Produkt an."
488
+ "Please specify the quantity of product(s).","Geben Sie bitte die Anzahl an Produkten an."
489
+ "Please specify time required option(s).","Bitte die benötigten Zeit-Optionen angeben."
490
+ "Please wait...","Bitte warten..."
491
+ "Position","Position"
492
+ "Position in Layered Navigation","Position in Filter-Navigation"
493
+ "Position of attribute in layered navigation block","Position des Attributs in Filter-Navigation"
494
+ "Prev","Vorschau"
495
+ "Previous","Vorige"
496
+ "Price","Preis"
497
+ "Price Navigation Step Calculation","Preis-Navigation Schritt Berechnung"
498
+ "Price Type","Preistyp"
499
+ "Price is not available","Preis ist nicht verfügbar"
500
+ "Price values for options should be specified in system base currency.","Preisangaben für Optionen sollten in der im Shop eingestellten Basiswährung eingegeben werden."
501
+ "Price:","Preis:"
502
+ "Price: %s","Preis: %s"
503
+ "Print This Page","Diese Seite drucken"
504
+ "Product","Produkt"
505
+ "Product API","Produkt-API"
506
+ "Product Alerts","Produktmeldungen"
507
+ "Product Attribute","Produktattribut"
508
+ "Product Attributes","Produkt Attribute"
509
+ "Product Categories","Produktkategorien"
510
+ "Product Description","Produktbeschreibung"
511
+ "Product Extra Info","Zusatzinfo Produkt"
512
+ "Product Flat Data","Produkt Flat Daten"
513
+ "Product ID","ProduktId"
514
+ "Product Image Placeholders","Produktbild Platzhalter"
515
+ "Product Image Watermarks","Produktbild Wasserzeichen"
516
+ "Product Images","Produktbilder"
517
+ "Product Images API","Produktbilder-API"
518
+ "Product In Websites","Produkt auf Webseiten"
519
+ "Product Info Column","Produktinformationsspalte"
520
+ "Product Information","Produktinformation"
521
+ "Product Link Block Template","Produkt-Link Block Vorlage"
522
+ "Product Link Inline Template","Produkt-Link Inline Vorlage"
523
+ "Product Listing Sort by","Verfügbare Produktauflistung sortiert nach"
524
+ "Product Name","Produktbezeichnung"
525
+ "Product Prices","Produktpreise"
526
+ "Product Reviews","Produktreviews"
527
+ "Product Tags","Produkttags"
528
+ "Product Tier Price API","Produktstaffelpreis API"
529
+ "Product Type","Produkttyp"
530
+ "Product URL Suffix","URL-Suffix des Produkts"
531
+ "Product View Extra Hint","Produktansicht extra Hint"
532
+ "Product attribute sets API","Produkt-Attributset API"
533
+ "Product attributes API","Produktmerkmale API"
534
+ "Product collection expected.","Produktsammlung erwartet."
535
+ "Product is not loaded","Produkt wurde nicht geladen"
536
+ "Product links API (related, cross sells, up sells)","Produktlink-API (Ähnliches, Cross-Selling, Up-Selling)"
537
+ "Product types API","API Produkttypen"
538
+ "Product with this combination of attributes already associated to configurable.","Produktkombination mit diesen Attributen existiert bereits im konfigurierbaren Produkt."
539
+ "Products","Produkte"
540
+ "Products Comparison List","Produkt Vergleichsliste"
541
+ "Products Information","Produktinformationen"
542
+ "Products Reviews","Artikelbewertungen"
543
+ "Products Sitemap","Sitemap Produkte"
544
+ "Products only","Nur Produkte"
545
+ "Products per Page on Grid Allowed Values","Produkte pro Seite (erlaubte Werte für Gitter)"
546
+ "Products per Page on Grid Default Value","Produkte pro Seite (Standardwert für Gitter)"
547
+ "Products per Page on List Allowed Values","Produkte pro Seite (erlaubte Werte für Liste)"
548
+ "Products per Page on List Default Value","Produkte pro Seite (Standardwert für Liste)"
549
+ "Properties","Eigenschaften"
550
+ "Qty","Anzahl"
551
+ "Qty Increments","Menge Zuwachsrate"
552
+ "Qty Uses Decimals","Stückzahl kann dezimal sein"
553
+ "Qty for Item\'s Status to Become Out of Stock","Menge, bei der der Produktstatus zu ""Nicht vorrätig"" wechselt"
554
+ "Qty:","Anzahl:"
555
+ "Quantity","Menge"
556
+ "Quick Create","Schnellanlegen"
557
+ "Quick Overview","Schnellübersicht"
558
+ "Quick simple product creation","Schnelle und einfache Produkterstellung"
559
+ "Records for ""%s"" store found.","Datensätze für ""%s""-Shop gefunden."
560
+ "Redirect","Umleiten"
561
+ "Redirect URL","Weiterleitungs-URL"
562
+ "Regular Price:","Regulärer Preis:"
563
+ "Related Products","Zubehör"
564
+ "Remove","Löschen"
565
+ "Remove Product From Websites","Produkt von Websites entfernen"
566
+ "Remove This Item","Diesen Gegenstand entfernen"
567
+ "Remove attribute from attribute set","Attribut aus dem Attributsatz entfernen"
568
+ "Remove attribute set","Attributsatz entfernen"
569
+ "Remove custom option","Benutzerdefinierte Option entfernen"
570
+ "Remove group from attribute set","Gruppe aus dem Attributsatz entfernen"
571
+ "Remove option","Option löschen"
572
+ "Remove product assignment","Produktzuweisungen entfernen"
573
+ "Remove product image","Produktbild entfernen"
574
+ "Remove product link","Produktlink entfernen"
575
+ "Remove value from custom option","Wert aus benutzerdefinierter Option löschen"
576
+ "Rename existing group","Existierende Gruppe umbenennen"
577
+ "Rename group","Gruppe umbenennen"
578
+ "Reorganize EAV category structure to flat structure","EAV Kategorie-Struktur in Flat-Struktur umwandeln"
579
+ "Reorganize EAV product structure to flat structure","EAV Produkt-Struktur in Flat-Struktur umwandeln"
580
+ "Reset","Zurücksetzen"
581
+ "Results","Ergebnisse"
582
+ "Results per page","Ergebnisse pro Seite"
583
+ "Retrieve attribute data","Merkmalsdaten abfragen"
584
+ "Retrieve attribute list","Attributliste abrufen"
585
+ "Retrieve attribute options","Optionen für Attribute abrufen"
586
+ "Retrieve categories tree","Kategorien abfragen"
587
+ "Retrieve category attributes","Kategorieattribute abrufen"
588
+ "Retrieve category data","Kategoriedaten abrufen"
589
+ "Retrieve hierarchical tree","Hierarchischen Baum abrufen"
590
+ "Retrieve linked products","Verknüpfte Produkte abrufen"
591
+ "Retrieve list of assigned products","Liste mit zugewiesenen Produkten abrufen"
592
+ "Retrieve list of option values","Liste mit Optionswerten abrufen"
593
+ "Retrieve list of product custom options","Liste der benutzerdefinierten Produktoptionen abrufen"
594
+ "Retrieve one level of categories by website/store view/parent category","Eine Ebene von Kategorien pro Website/StoreView/Überkategorie abrufen"
595
+ "Retrieve option value info","Optionswert-Informationen abrufen"
596
+ "Retrieve product","Produkt abrufen"
597
+ "Retrieve product attribute sets","Produktmerkmale abfragen"
598
+ "Retrieve product image","Produktbild abrufen"
599
+ "Retrieve product image list","Liste der Produktbilder abfragen"
600
+ "Retrieve product image types","Produktbildtypen abrufen"
601
+ "Retrieve product link type attributes","Attribute des Produktlinktyps abrufen"
602
+ "Retrieve product link types","Produktlinktypen abrufen"
603
+ "Retrieve product tier prices","Produktstaffelpreise abrufen"
604
+ "Retrieve product types","Produkttypen abrufen"
605
+ "Retrieve products data","Produktdaten abfragen"
606
+ "Retrieve products list by filters","Produktliste gemäß Filter abrufen"
607
+ "Reviews","Bewertungen"
608
+ "Roll Over for preview","Darüber scrollen für eine Vorschau"
609
+ "Root","Root"
610
+ "SKU","Artikelposition"
611
+ "SKU length should be %s characters maximum.","Die SKU-Länge sollte maximal %s Zeichen betragen"
612
+ "Save","speichern"
613
+ "Save Attribute","Eigenschaft speichern"
614
+ "Save Attribute Set","Merkmale speichern"
615
+ "Save Category","Kategorie speichern"
616
+ "Save Search","Suche speichern"
617
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
618
+ "Saved %d record(s)","%d gespeicherte(r) Eintrag/Einträge"
619
+ "Scope","Umfang"
620
+ "Scope must not be changed, because the attribute is used in configurable products.","Der Umfang darf nicht geändert werden, da dieses Attribut bei konfigurierbaren Produkten verwendet wird."
621
+ "Search","Suche"
622
+ "Search Engine Optimizations","Suchmaschinen Optimierung"
623
+ "Search Information","Suchinformationen"
624
+ "Search Query","Suchanfrage"
625
+ "Search Term with such search query already exists.","Suchbegriff mit dieser Suchanfrage existiert bereits."
626
+ "Search Weight","Gewicht durchsuchen"
627
+ "Searchable","Suchbar"
628
+ "See price before order confirmation.","Preis vor Bestellbestätigung ansehen."
629
+ "Select Category...","Kategorie auswählen…"
630
+ "Select Configurable Attributes ","Konfigurierbare Merkmale auswählen"
631
+ "Select Product...","Produkt aussuchen…"
632
+ "Select type of option","Optionsart auswählen"
633
+ "Select type options required values rows.","Typenoptionen für benötigte Wertezeilen auswählen."
634
+ "Selected Product Types","Ausgewählte Produkttypen"
635
+ "Send Count","Zählerstand senden"
636
+ "Set Ascending Direction","Aufsteigende Sortierung einstellen"
637
+ "Set Descending Direction","In absteigender Reihenfolge"
638
+ "Set Name","Name einstellen"
639
+ "Set Root Category for Store","Rootkategorie für Store festlegen"
640
+ "Set root category for this store in the <a href=""%s"">configuration</a>","Stellen Sie eine Stammkategorie für diesen Shop in der <a href=""%s"">Konfiguration</a> ein."
641
+ "Set special price","Sonderpreis festlegen"
642
+ "Set/Get current store view","Aktuelle Shopansicht auswählen/anfordern"
643
+ "Settings","Einstellungen"
644
+ "Share Facebook","Facebook teilen"
645
+ "Share on Facebook","Auf Facebook teilen"
646
+ "Share on Twitter","Auf Twitter teilen"
647
+ "Shop By","Shop nach"
648
+ "Shopping Options","Einkaufsoptionen"
649
+ "Show","Anzeigen"
650
+ "Show Details","Details anzeigen"
651
+ "Show Tags","Schlagworte anzeigen"
652
+ "Simple Product","Einfaches Produkt"
653
+ "Site Map","Sitemap"
654
+ "Sitemap","Sitemap"
655
+ "Skip import row, is not valid value ""%s"" for field ""%s""","Import-Zeile überspringen, kein gültiger Wert ""%s"" für Feld ""%s"""
656
+ "Skip import row, required field ""%s"" for the new customer is not defined.","Import der Reihe übersprungen. Das benötigte Feld ""%s"" für den neuen Kunden ist nicht definiert."
657
+ "Skip import row, the value ""%s"" is invalid for field ""%s""","Import-Zeile überspringen, der Wert ""%s"" ist für Feld ""%s"" nicht gültig"
658
+ "Skipping import row, required field ""%s"" for new products is not defined.","Importzeile übersprungen, das benötigte Feld ""%s"" für neue Produkte ist nicht definiert"
659
+ "Skipping import row, required field ""%s"" is not defined.","Import der Reihe wird jetzt übersprungen. Das benötigte Feld ""%s"" ist nicht definiert."
660
+ "Skipping import row, store ""%s"" field does not exist.","Import-Zeile wird übersprungen, ""%s"" Feld als nicht vorhanden speichern"
661
+ "Skipping import row, the value ""%s"" is not valid for the ""%s"" field.","Import der Reihe übersprungen. Der Wert ""%s"" ist nicht gültig für das Feld ""%s""."
662
+ "Some of the processed products have no SKU value defined. Please fill it prior to performing operations on these products.","Für einige der verarbeiteten Produkte wurde kein SKU-Wert angegeben. Bitte geben Sie diese an, bevor Sie diese Produkte weiter bearbeiten."
663
+ "Some of the selected item options are not currently available.","Einige ausgewählte Elementoptionen sind zurzeit nicht verfügbar."
664
+ "Sort By","Sortieren nach"
665
+ "Sort Order","Sortierfolge"
666
+ "Source Model","Source-Modell"
667
+ "Special Expires On: %s","Angebot läuft ab am: %s"
668
+ "Special Price:","Sonderpreis:"
669
+ "Special Price: %s","Sonderpreis: %s"
670
+ "Starting at:","Ab:"
671
+ "Static","Statisch"
672
+ "Static block and products","Statischer Block und Produkte"
673
+ "Static block only","Nur statischer Block"
674
+ "Status","Status"
675
+ "Stock Availability","Lagerbestand"
676
+ "Store","Shop"
677
+ "Store View","Store-Ansicht"
678
+ "Stretch","Dehnen"
679
+ "Subscribe to RSS Feed","Für RSS Feed anmelden"
680
+ "Super product attributes configuration","Überprodukt Attributkonfiguration"
681
+ "Synonym For","Synonym für"
682
+ "System Properties","Systemeinstellungen"
683
+ "Tag Name","Tagname"
684
+ "Tax","Steuer"
685
+ "Template","Vorlage"
686
+ "Text","Text"
687
+ "The Flat Catalog module has a limit of %2\$d filterable and/or sortable attributes. Currently there are %1\$d of them. Please reduce the number of filterable/sortable attributes in order to use this module","Der Wohnungskatalog lässt sich nur nach %2\$d Eigenschaften durchsuchen oder sortieren. Im Moment sind aber %1\$d angegeben. Für die Verwendung dieses Moduls verringern sie bitte die Anzahl der Filter-/Sortiereigenschaften."
688
+ "The From Date value should be less than or equal to the To Date value.","Der ""von Datum""-Wert sollte kleiner oder gleich dem ""bis Datum""-Wert sein."
689
+ "The attribute code \'%s\' is reserved by system. Please try another attribute code","Der Attributcode \'%s\' wurde vom System reserviert. Bitte probieren Sie einen anderen Attributcode aus."
690
+ "The attribute model is not defined","Das Attributmuster ist nicht definiert"
691
+ "The attribute set has been saved.","Die Merkmale wurden gespeichert"
692
+ "The base directory to upload file is not specified.","Das Basisverzeichnis, in das die Datei hochgeladen werden soll, wurde nicht angegeben."
693
+ "The category has been deleted.","Die Kategorie wurde gelöscht."
694
+ "The category has been saved.","Die Kategorie wurde gespeichert."
695
+ "The comparison list was cleared.","Die Vergleichsliste wurde geleert."
696
+ "The file '%s' for '%s' has an invalid extension","Die Datei '%s' für '%s' hat eine unerlaubte Dateiendung"
697
+ "The file '%s' you uploaded is larger than %s Megabytes allowed by server","Die von Ihnen hochgeladene Datei '%s' ist größer als die vom Server erlaubten %s Megabyte"
698
+ "The file you uploaded is larger than %s Megabytes allowed by server","Die Datei, die Sie hochladen möchten, ist größer als die vom Server erlaubten %s Megabytes."
699
+ "The filters must be an array.","Die Filter müssen als Array vorliegen."
700
+ "The image contents is not valid base64 data.","Die Bildinhalte sind keine gültigen Base64-Daten."
701
+ "The image is not specified.","Das Bild ist nicht angegeben."
702
+ "The model collection resource name is not defined.","Der Ressourcenname der Modellsammlung ist nicht definiert."
703
+ "The product %s has been added to comparison list.","Das Produkt %s wurde zur Vergleichsliste hinzugefügt."
704
+ "The product %s has been removed from comparison list.","Das Produkt %s wurde von Vergleichsliste entfernt."
705
+ "The product attribute has been deleted.","Das Produktattribut wurde gelöscht."
706
+ "The product attribute has been saved.","Das Produktattribut wurde gespeichert."
707
+ "The product has been created.","Das Produkt wurde angelegt."
708
+ "The product has been deleted.","Das Produkt wurde gelöscht."
709
+ "The product has been duplicated.","Das Produkt wurde dupliziert."
710
+ "The product has been saved.","Das Produkt wurde gespeichert."
711
+ "The product has required options","Das Produkt hat Pflichtangaben"
712
+ "The review has been deleted","Diese Bewertung wurde gelöscht"
713
+ "The review has been saved.","Diese Bewertung wrude gespeichert."
714
+ "The review was removed by another user or does not exist.","Diese Bewertung wurde von einem anderen Benutzer entfernt oder existiert nicht."
715
+ "The search was deleted.","Diese Suche wurde gelöscht."
716
+ "The text is too long","Der Text ist zu lang"
717
+ "There are no %s available.","Es sind keine %s verfügbar."
718
+ "There are no customers for this alert","Es gibt keine Kunden für diesen Wanhinweis"
719
+ "There are no customers for this alert.","Es gibt keine Kunden für diesen Wanhinweis."
720
+ "There are no products matching the selection.","Es gibt keine Produkte, die dieser Auswahl entsprechen."
721
+ "There was an error while request processing.","Bei der Bearbeitung der Anfrage ist ein Fehler aufgetreten."
722
+ "This Attribute no longer exists","Dieses Merkmal existiert nicht mehr"
723
+ "This attribute cannot be deleted.","Diese Eigenschaft kann nicht gelöscht werden."
724
+ "This attribute cannot be edited.","Dieses Merkmal kann nicht bearbeitet werden."
725
+ "This attribute cannot be updated.","Diese Eigenschaft kann nicht aktualisiert werden."
726
+ "This attribute is used in configurable products.","Das Attribut wurde in konfigurierbaren Produkten verwendet."
727
+ "This attribute is used in configurable products. You cannot remove it from the attribute set.","Diese Eigenschaft wird für konfigurierbare Produkte benötigt. Sie können sie nicht aus dem Eigenschaftenset entfernen."
728
+ "This attribute no longer exists","Dieses Attribut existiert nicht mehr."
729
+ "This attribute set no longer exists.","Dieses Eigenschaftenset existiert nicht mehr."
730
+ "This group contains attributes, used in configurable products. Please move these attributes to another group and try again.","Diese Gruppe enthält Eigenschaften, die für konfigurierbare Produkte benutzt werden. Bitte verschieben Sie diese Eigenschaften in eine andere Gruppe und versuchen Sie es noch einmal."
731
+ "This group contains system attributes. Please move system attributes to another group and try again.","Diese Gruppe enthält System Eigenschaften. Bitte verschieben Sie System Eigenschaften in eine andere Gruppe und versuchen Sie es noch einmal."
732
+ "This is a required option","Dies ist eine obligatorische Option"
733
+ "This product no longer exists.","Dieses Produkt existiert nicht mehr."
734
+ "This search no longer exists.","Diese Suche existiert nicht mehr."
735
+ "This setting will be applied when all prices in the specific price interval are equal.","Diese Einstellung wird angewandt, wenn alle Preise in dem spezifischen Preisintervall gleich sind."
736
+ "Tier Pricing","Preisebene"
737
+ "Tile","Kachel"
738
+ "Time Format","Zeitformat"
739
+ "Title","Titel"
740
+ "To reindex the enabled product(s), the store or product must be specified","Um die aktivierten Produkte neu zu indexieren, muss der Shop oder das Produkt angegeben werden."
741
+ "To see product price, add this item to your cart. You can always remove it later.","Um den Produktpreis sehen zu können, müssen Sie das Produkt in Ihren Einkaufswagen legen. Sie können es später wieder löschen."
742
+ "Top/Left","Oben links"
743
+ "Top/Right","Oben/Rechts"
744
+ "Total Qty Base Items","Gesamtanzahl der Produkte bei Google Base"
745
+ "Total Qty Content Items","Gesamtmenge der Content-Artikel"
746
+ "Total incl. Tax: %1$s","Gesamtsumme inkl. Steuern: %1$s"
747
+ "Total of %d record(s) have been deleted.","Insgesamt %d Einträge wurden gelöscht."
748
+ "Total of %d record(s) have been updated.","Insgesamt %d Einträge wurden aktualisiert."
749
+ "Total of %d record(s) were updated","Insgeamt wurde(n) %d Aufzeichnung(en) aktualisiert"
750
+ "Type","Typ"
751
+ "URL Rewrite Management","URL Umformulierungsverwaltung"
752
+ "Unable to complete this request.","Anfrage konnte nicht ausgeführt werden."
753
+ "Unable to find a search term to delete.","Es wurde kein Suchbegriff zum Löschen gefunden."
754
+ "Unable to find an attribute to delete.","Es wurde kein Attribut zum Löschen gefunden."
755
+ "Unable to get the product ID.","Produktnummer konnte nicht ermittelt werden."
756
+ "Unassigned Attributes","Nicht zugewiesene Attribute"
757
+ "Unknown EAV indexer type ""%s"".","Unbekannter EAV Indizierungstyp ""%s""."
758
+ "Unknown attribute: %s.","Unbekanntes Attribut: %s."
759
+ "Unsupported product type ""%s"".","Nicht unterstützter Produkttyp ""%s""."
760
+ "Up-sells","Up-Selling"
761
+ "Update","Aktualisieren"
762
+ "Update Attributes","Merkmale aktualisieren"
763
+ "Update Tier Price","Staffelpreise aktualisieren"
764
+ "Update assigned product","Zugewiesenes Produkt aktualisieren"
765
+ "Update attribute","Attribut aktualisieren"
766
+ "Update attributes","Attribute aktualisiert"
767
+ "Update category","Kategorie aktualisieren"
768
+ "Update custom option of product","Benutzerdefinierte Option des Produkts überspringen"
769
+ "Update product","Produkt aktualisieren"
770
+ "Update product image","Produktbild aktualisieren"
771
+ "Update product link","Produktlink aktualisieren"
772
+ "Update product tier prices","Produktstaffelpreise aktualisieren"
773
+ "Update value of custom option","Wert der benutzerdefinierten Option aktualisieren"
774
+ "Upload new product image ","Neues Produktbild hochladen"
775
+ "Use Canonical Link Meta Tag For Categories","Canonical Link Element für Kategorien verwenden"
776
+ "Use Canonical Link Meta Tag For Products","Canonical Link Meta Tag für Produkte nutzen"
777
+ "Use Categories Path for Product URLs","Kategoriepfad für Produkt-URLs verwenden"
778
+ "Use Config Settings","Konfigurations-Einstellungen verwenden"
779
+ "Use Default Value","Standardwert verwenden"
780
+ "Use Flat Catalog Category","Flat Catalog Category verwenden"
781
+ "Use Flat Catalog Product","Flat Catalog Product verwenden"
782
+ "Use In Layered Navigation","Filternavigation auf Suchergebnisseiten verwenden"
783
+ "Use In Search Results Layered Navigation","Navigation in Suchergebnissen nutzen"
784
+ "Use JavaScript Calendar","JavaScript Kalender verwenden"
785
+ "Use Static URLs for Media Content in WYSIWYG for Catalog","Statische URLs für Medieninhalt in WYSIWYG für Katalog nutzen"
786
+ "Use To Create Configurable Product","Verwenden um konfigurierbares Produkt zu erstellen"
787
+ "Use Tree Like Category Sitemap","Kategorie-Sitemap in Baumansicht verwenden"
788
+ "Use config","config verwenden"
789
+ "Use default","Standard verwenden"
790
+ "Use for Promo Rule Conditions","Für Promo Regelbedingungen verwenden"
791
+ "Use four-digit year format.","Das 4-stellige Jahresformat verwenden."
792
+ "Use in Advanced Search","In erweiterter Suche verwenden"
793
+ "Use in Layered Navigation","In mehrschichtiger Navigation verwenden"
794
+ "Use in Layered Navigation<br/>(Can be used only with catalog input type 'Dropdown')","In Filter-Navigation verwenden<br/>(Kann nur mit 'Dropdown' verwendet werden)"
795
+ "Use in Quick Search","Bei Schnellsuche nutzen"
796
+ "Used for Sorting in Product Listing","Für Sortierung im Produkt-Listing verwendet"
797
+ "Used in Product Listing","Im Produkt-Listing verwendet"
798
+ "Value for ""%s"" is invalid.","Wert für ""%s"" ist ungültig."
799
+ "Value for ""%s"" is invalid: %s","Wert für ""%s"" ist ungültig: %s"
800
+ "Varchar","Varchar"
801
+ "View Details","Details anzeigen"
802
+ "View as","Darstellung als"
803
+ "Virtual Product","Virtuelles Produkt"
804
+ "Visibility","Sichtbarkeit"
805
+ "Visible","Sichtbar"
806
+ "Visible on Catalog Pages on Front-end","Sichtbar auf Katalogseiten im Frontend"
807
+ "Visible on Product View Page on Front-end","Sichtbar auf Produkt-Infoseite im Frontend"
808
+ "WYSIWYG Editor","WYSIWYG Editor"
809
+ "Watermark","Wasserzeichen"
810
+ "Watermark Default Size","Wasserzeichen Standardgröße"
811
+ "Watermark Opacity, Percent","Wasserzeichen Opazität, Prozent"
812
+ "Watermark Position","Wasserzeichen Position"
813
+ "We Also Recommend","Wir empfehlen auch"
814
+ "Website","Website"
815
+ "Website Item Must be checked","Website Artikel muss geprüft sein"
816
+ "Website Store Must be checked","Shop der Webseite muss geprüft werden"
817
+ "Websites","Webseiten"
818
+ "What's this?","Was ist das?"
819
+ "Whether to show ""All"" option in the ""Show X Per Page"" dropdown.","Ob die ""Alle""-Option in dem ""Zeige X pro Seite""-Dropdown-Menü angezeigt werden soll."
820
+ "Will make search for the query above return results for this search.","Werde für die obenstehende Frage eine Suche starten und die Suchergebnisse mitteilen."
821
+ "Wrong BuyRequest instance in options group.","Falsche Kauf-Anfrage der Instanz in der Options-Gruppe."
822
+ "Wrong configuration item instance in options group.","Falsches Konfigurationselement Beispiel in Gruppe Optionen."
823
+ "Wrong configuration item option instance in options group.","Falsches Konfigurationselement Optionsbeispiel in Gruppe Optionen."
824
+ "Wrong option instance type in options group.","Falscher Optionsinstanz-Typ in der Options-Gruppe."
825
+ "Wrong option type to get group instance.","Falscher Options-Typ um die Gruppen-Instanz zu erhalten."
826
+ "Wrong product instance type in options group.","Falsches Produktbeispiel in Optionengruppe."
827
+ "Wrong product type filter specified","Falscher Produkttyp Filter festgelegt"
828
+ "Wrong product type to extract configurable options.","Falscher Produkt-Typ, um konfigurierbare Optionen zu extrahieren."
829
+ "Year Range","Jahres-Zeitraum"
830
+ "Yes","Ja"
831
+ "You cannot remove system attribute from this set.","Dieses Systemattribut kann aus dieser Gruppe nicht entfernt werden."
832
+ "You have no items to compare.","Sie haben keine Gegenstände zum Vergleich."
833
+ "You may also be interested in the following product(s)","Sie könnten auch an folgenden Produkten interessiert sein"
834
+ "Zoom In","Vergrößern"
835
+ "Zoom Out","Verkleinern"
836
+ "and","und"
837
+ "and above","und oben"
838
+ "categories","Kategorien"
839
+ "each","jede"
840
+ "ex. http://domain.com","z.B. http://domain.com"
841
+ "leave blank if its not an image","Leer lassen falls es kein Bild ist"
842
+ "per page","pro Seite"
843
+ "products","Produkte"
844
+ "px.","px."
845
+ "save","Speichern"
846
+ "select all","Alles auswählen"
847
+ "unselect all","Alles abwählen"
848
+ "x","x"
app/locale/de_DE/Mage_CatalogInventory.csv ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """%s"" is not available in the requested quantity. %s of the items will be backordered.","""%s"" ist nicht in der gewünschten Menge verfügbar. %s der Artikel werden nachbestellt."
2
+ "%s is available for purchase in increments of %s only.","%s ist nur in Schritten von%s erhältlich."
3
+ "%s is not a correct comparsion method.","%s ist keine korrekte Vergleichsmethode."
4
+ "<strong>Note</strong> that these settings are applicable to cart line items, not the whole cart.","<strong>Beachten Sie</strong>, dass diese Einstellungen für Warenkorbartikel gelten und nicht für den gesamten Warenkorb."
5
+ "Add Minimum Qty","Mindestanzahl hinzufügen"
6
+ "Allow Qty Below 0","Anzahl unter 0 erlauben"
7
+ "Allow Qty Below 0 and Notify Customer","Anzahl unter 0 erlauben und Kunden benachrichtigen"
8
+ "Automatically Return Credit Memo Item to Stock","Gutschriftartikel automatisch zum Lager retournieren"
9
+ "Backorders","Lieferückstand"
10
+ "By Fixed value","Nach festen Wert"
11
+ "By Percentage","Nach Prozent"
12
+ "Cannot specify product identifier for the order item.","Produktidentifier für den Artikel kann nicht spezifiziert werden."
13
+ "Catalog Inventory","Kataloginventar"
14
+ "Decrease Stock When Order is Placed","Lagerbestand verringern wenn Bestellung erfolgt ist"
15
+ "Display Out of Stock Products","Ausverkaufte Produkte anzeigen"
16
+ "Display products availability in stock in the frontend","Lagerbestand des Produktes im Front-End anzeigen"
17
+ "Enable Qty Increments","Anzahlzunahme aktivieren"
18
+ "In Stock","Auf Lager"
19
+ "Index Product Stock Status","Index Produkt Lagerstatus"
20
+ "Inventory","Inventar"
21
+ "Inventory API","Inventar API"
22
+ "Inventory Section","Invetarbereich"
23
+ "Manage Stock","Lagerbestand verwalten"
24
+ "Maximum Qty Allowed in Shopping Cart","Maximal im Warenkorb erlaubte Anzahl"
25
+ "Minimum Qty","Mindestanzahl"
26
+ "Minimum Qty Allowed in Shopping Cart","Im Warenkorb erlaubte Mindestanzahl"
27
+ "Multi update product stock data","Multiple Aktualisierung der Produktbestand-Daten"
28
+ "No Backorders","Kein Lieferrückstand"
29
+ "Not all products are available in the requested quantity","Nicht alle Produkte sind in der gewünschten Menge verfügbar"
30
+ "Notify for Quantity Below","Bei unterer Anzahl benachrichtigen."
31
+ "Only %s left","Nur %s verbleibend"
32
+ "Only X left Threshold","Nur X übrig Schwellenwert"
33
+ "Out of Stock","Nicht auf Lager"
34
+ "Product Name","Produktname"
35
+ "Product Stock Options","Produktlageroptionen"
36
+ "Products will still be shown by direct product URLs.","Die Produkte werden immer noch über direkte Produkt-URLs gezeigt."
37
+ "Qty","Anz"
38
+ "Qty Increments","Mengenzunahme"
39
+ "Qty for Item's Status to Become Out of Stock","Menge für Artikel Status Ausverkauft"
40
+ "Retrieve stock data","Lagerdaten abfragen."
41
+ "Retrieve stock data by product ids","Lagerdaten nach ProduktID abfragen"
42
+ "Rule price","Regeilpreis"
43
+ "Set Items' Status to be In Stock When Order is Cancelled","Artikelstatus auf Lagernd Wenn Bestellung Storniert Wird setzen"
44
+ "Some of the products are currently out of stock.","Einige der Produkte sind momentan nicht vorrätig."
45
+ "Some of the products cannot be ordered in requested quantity.","Einige Produkte können nicht in der gewünschten Menge bestellt werden."
46
+ "Some of the products cannot be ordered in the requested quantity.","Einige der Produkte können nicht in der erwünschten Menge bestellt werden."
47
+ "Stock Options","Lageroptionen"
48
+ "Stock Status","Lagerstatus"
49
+ "The maximum quantity allowed for purchase is %s.","Die Höchstmenge zum Kauf beträgt %s."
50
+ "The minimum quantity allowed for purchase is %s.","Die Mindestmenge für den Kauf beträgt %s."
51
+ "The requested quantity for ""%s"" is not available.","Die gewünschte Menge für ""%s"" ist nicht verfügbar."
52
+ "The stock item for Product in option is not valid.","Der Lagerartikel für das Produkt in Option ist nicht gültig."
53
+ "The stock item for Product is not valid.","Der Lagerartikel für das Produkt ist nicht gültig."
54
+ "This product is available for purchase in increments of %s only.","Dieses Produkt ist nur in Erhöhungen von %s verfügbar."
55
+ "This product is currently out of stock.","Dieses Produkt ist derzeit ausverkauft."
56
+ "This product is not available in the requested quantity. %s of the items will be backordered.","Dieses Produkt ist nicht in der gewünschten Menge verfügbar. %s der Artikel werden nachbestellt."
57
+ "To Fixed Value","Zu festen Wert"
58
+ "To Percentage","Zu Prozent"
59
+ "Undefined product type.","Undefinierter Produkttyp."
60
+ "Update","Aktualisieren"
61
+ "Update product stock data","Produkt Lagerdaten aktualisieren"
62
+ "Update the Product","Produkt aktualisieren"
app/locale/de_DE/Mage_CatalogRule.csv ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%d Catalog Price Rules based on ""%s"" attribute have been disabled.","Auf Attribut ""%s"" basierende %d-Katalogpreisregeln wurden deaktiviert."
2
+ "Actions","Aktionen"
3
+ "Active","Aktiv"
4
+ "Add New Rule","Neue Regel hinzufügen"
5
+ "An error occurred while deleting the rule. Please review the log and try again.","Beim Löschen der Regel trat ein Fehler auf. Bitte überprüfen Sie das Log und versuchen Sie es erneut."
6
+ "An error occurred while saving the rule data. Please review the log and try again.","Beim Speichern der Regeldaten trat ein Fehler auf. Bitte überprüfen Sie das Log und versuchen Sie es erneut."
7
+ "Apply","Anwenden"
8
+ "Apply Rules","Regeln anwenden"
9
+ "Attribute Set","Attributset"
10
+ "By Fixed Amount","Durch festen Betrag"
11
+ "By Percentage of the Original Price","Durch Prozentsatz des Orginalpreises"
12
+ "Catalog","Katalog"
13
+ "Catalog Price Rule","Katalogpreis Regel"
14
+ "Catalog Price Rules","Katalogpreis Regeln"
15
+ "Category","Kategorie"
16
+ "Conditions","Bedingungen"
17
+ "Conditions (leave blank for all products)","Bedingungen (leer lassen für Alle Produkte)"
18
+ "Conditions Combination","Bedingungenkombination"
19
+ "Customer Groups","Kundengruppen"
20
+ "Date Expire","Verfalldatum"
21
+ "Date From","Datum ab"
22
+ "Date Start","Startdatum"
23
+ "Date To","Datum bis"
24
+ "Description","Beschreibung"
25
+ "Discount Amount","Rabattsumme"
26
+ "Edit Rule","Regel ändern"
27
+ "Edit Rule '%s'","Regel '%s' ändern"
28
+ "Enable Discount to Subproducts","Rabatt für Unterprodukte aktivieren"
29
+ "Expiration Date","Ablaufdatum"
30
+ "From Date","Von Datum"
31
+ "General Information","Allgemeine Information"
32
+ "ID","ID"
33
+ "Inactive","Nicht aktiv"
34
+ "New Rule","Neue Regel"
35
+ "No","Nein"
36
+ "Options","Optionen"
37
+ "Priority","Priorität"
38
+ "Product Attribute","Produktattribut"
39
+ "Promotions","Promotionen"
40
+ "Rule Information","Regelinformation"
41
+ "Rule Name","Regelname"
42
+ "Save and Apply","Speichern und anwenden"
43
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
44
+ "Start Date","Startdatum"
45
+ "Status","Status"
46
+ "Stop Further Rules Processing","Weitere Regelbearbeitung abbrechen"
47
+ "The rule has been deleted.","Die Regel wurde gelöscht."
48
+ "The rule has been saved.","Die Regel wurde gespeichert."
49
+ "The rules have been applied.","Die Regeln wurden angewendet."
50
+ "There are rules that have been changed but were not applied. Only users with exclusive access can apply rules.","Dies sind Regeln, welche geändert aber noch nicht eingesetzt wurden. Nur Benutzer mit exklusiven Zugang können diese Regeln anwenden."
51
+ "There are rules that have been changed but were not applied. Please, click Apply Rules in order to see immediate effect in the catalog.","Einige Regeln wurden geändert, aber nicht angewendet. Bitte klicken Sie „Regeln anwenden“ um sofortige Anwendung im Katalog zu erhalten."
52
+ "This rule no longer exists.","Diese Regel existiert nicht mehr."
53
+ "To Date","Bis Datum"
54
+ "To Fixed Amount","Zu festem Betrag"
55
+ "To Percentage of the Original Price","Zu Prozentsatz des Originalpreises"
56
+ "Type","Typ"
57
+ "Unable to apply rules.","Regeln können nicht angewendet werden."
58
+ "Unable to find a rule to delete.","Keine Regel zum Löschen gefunden."
59
+ "Update Prices Using the Following Information","Preise mit folgenden Informationen aktualisieren"
60
+ "Update product's %s %s: %s","%s %s: %s von Produkt aktualisieren"
61
+ "Website","Webseite"
62
+ "Websites","Webseiten"
63
+ "Wrong rule specified.","Falsche Regel angegeben."
64
+ "Yes","Ja"
app/locale/de_DE/Mage_CatalogSearch.csv ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s and greater","%s und darüber"
2
+ "<strong>%d item(s)</strong> were found using the following search criteria","<strong>%d Artikel</strong> wurden unter Verwendung der folgenden Suchkriterien gefunden"
3
+ "Advanced Search","Erweiterte Suche"
4
+ "Advanced Search Form","Formular Erweiterte Suche"
5
+ "Advanced Search Result","Erweiterte Suche Ergebnisse"
6
+ "All","Alle"
7
+ "Applies for ""Like"" search type only.","Gilt nur für ""Like""-Suchtyp."
8
+ "Apply Layered Navigation if Search Results are Less Than","Geschichtete Navigation verwenden falls weniger Suchergebnisse als"
9
+ "Attribute setting change related with Search Index. Please run <a href=""%s"">Rebuild Search Index</a> process.","Attribut-Einstellungsänderung mit Bezug auf Suchindex. Bitte <a href=""%s"">Rebuild-Suchindex</a>-Prozess starten."
10
+ "Autogenerated Site Map","Automatisch generierte Site Map"
11
+ "Catalog Advanced Search","Katalog Erweiterte Suche"
12
+ "Catalog Search","Katalog Suche"
13
+ "Catalog Search Index","Katalog Suchindex"
14
+ "Don't see what you're looking for?","Nicht gefunden, was Sie suchen?"
15
+ "Enter ""0"" to enable layered navigation for any number of results.","Um Ebenennavigation für eine beliebige Anzahl von Ergebnissen zu aktivieren bitte ""0"" eingeben."
16
+ "Go","Los"
17
+ "Go to Home Page","Zur Startseite gehen"
18
+ "Grid","Raster"
19
+ "Home","Startseite"
20
+ "List","Liste"
21
+ "Maximum Query Length","Maximale Abfragenlänge"
22
+ "Maximum Query Words Count","Maximale Wortanzahl für Abfragen"
23
+ "Maximum Search query length is %s. Your query was cut.","Maximale Suchanfragenlänge ist %s. Ihre Anfrage wurde gekürzt."
24
+ "Maximum words count is %1$s. In your search query was cut next part: %2$s.","Die maximale Zahl an Wörtern beträgt %1$s. Ihre Suchanfrage wurde bei %2$s abgeschnitten."
25
+ "Minimal Query Length","Mindestlänge für Abfragen"
26
+ "Minimum Search query length is %s","Mindestlänge für Suchabfrage ist %s."
27
+ "Modify your search","Verändern Sie Ihre Suche"
28
+ "No","Nein"
29
+ "No items were found using the following search criteria.","Es wurden keine Artikel mit den folgenden Suchkriterien gefunden."
30
+ "Please specify at least one search term.","Bitte geben Sie zumindest einen Suchbegriff ein."
31
+ "Popular Search Terms","Beliebte Suchbegriffe"
32
+ "Quick Search Form","Formular Schnellsuche"
33
+ "Rebuild Catalog product fulltext search index","Katalog Produktvolltext Suchindex neu generieren."
34
+ "Relevance","Relevanz"
35
+ "Results","Ergebnisse"
36
+ "Search","Suche"
37
+ "Search Settings","Sucheinstellungen"
38
+ "Search Terms","Suchbegriffe"
39
+ "Search Type","Suchtyp"
40
+ "Search entire store here...","Den gesamten Shop durchsuchen..."
41
+ "Search results for '%s'","Suchergebnisse für '%s'"
42
+ "Search results for: '%s'","Suchergebnisse für: '%s'"
43
+ "Search:","Suche:"
44
+ "Specified date is invalid.","Angegebene Daten sind ungültig."
45
+ "Subscribe to Feed","Feed abonnieren"
46
+ "There are no search terms available.","Es sind keine Suchbegriffe verfügbar."
47
+ "Yes","Ja"
48
+ "Your search returns no results.","Ihre Suche ergab keine Ergebnisse."
49
+ "up to %s","bis zu %s."
app/locale/de_DE/Mage_Centinel.csv ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "3D Secure CAVV","3D Secure CAVV"
2
+ "3D Secure Card Validation","3D Secure Kartenvalidierung"
3
+ "3D Secure Cardholder Validation","3D Secure Karteninhabervalidierung"
4
+ "3D Secure Electronic Commerce Indicator","3D Secure Electronic Commerce Indicator"
5
+ "3D Secure Verification Result","3D Secure Verifizierungsergebnis"
6
+ "3D Secure XID","3D Secure XD"
7
+ "Card Issuer Liability","Haftung für Kartenausteller"
8
+ "Card Verification","Kartenverifizierung"
9
+ "Enrolled","Eingeschrieben"
10
+ "Enrolled but Authentication Unavailable","Eingeschrieben, aber Authentifizierung nicht verfügbar"
11
+ "Failed","Fehlgeschlagen"
12
+ "MasterCard SecureCode","MasterCard SecureCode"
13
+ "Merchant Liability","Haftung für Händler"
14
+ "Not Enrolled","Nicht eingeschrieben"
15
+ "Order cannot be placed.","Bestellung kann nicht durchgeführt werden."
16
+ "Payment information error. Please start over.","Fehler bei Zahlungsinformation. Bitte versuchen Sie es erneut."
17
+ "Please continue with placing order.","Bitte fahren Sie mit der Bestellung fort."
18
+ "Please verify the card with the issuer bank before placing the order.","Bitte verifizieren Sie die Karte mit der Ausstellerbank bevor Sie die Bestellung durchführen."
19
+ "Please verify the card with the issuer bank:","Bitte verifizieren Sie die Karte mit der Ausstellerbank:"
20
+ "Start/Reset Validation...","Validierung starten/zurücksetzen..."
21
+ "Successful","Erfolgreich"
22
+ "Successful attempt","Erfolgreicher Versuch"
23
+ "The card has failed verification with the issuer bank.","Die Karte konnte nicht mit der Ausstellerbank verifiziert werden."
24
+ "There has been wrong payment information submitted or the time limit has expired. Please, try again.","Es wurden falsche Zahlungsinformationen abgeschickt, oder das Zeitlimit ist abgelaufen. Bitte versuchen Sie es erneut."
25
+ "There has been wrong payment information submitted or time limit has expired. Please, try again.","Es wurden falsche Zahlungsinformationen abgeschickt, oder Zeitlimit ist abgelaufen. Bitte versuchen Sie es erneut."
26
+ "This card has failed validation and cannot be used.","Diese Karte konnte nicht validiert werden und kann nicht benützt werden."
27
+ "To ensure the security of your transactions","Um die Sicherheit ihrer Transaktionen zu gewährleisten"
28
+ "Unable to complete","Fertigstellung nicht möglich"
29
+ "Validation failed.","Validierung ist fehlgeschlagen."
30
+ "Verification Failed","Verifizierung fehlgeschlagen"
31
+ "Verification Successful","Verifizierung erfolgreich"
32
+ "Verification cannot be processed","Verifizierung kann nicht verarbeitet werden"
33
+ "Verified by Visa","Verified by Visa"
app/locale/de_DE/Mage_Checkout.csv ADDED
@@ -0,0 +1,360 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s was added to your shopping cart.","%s wurde zu Ihrem Warenkorb hinzugefügt."
2
+ "%s was updated in your shopping cart.","%s wurde in ihren Einkaufswagen gelegt"
3
+ "* Required Fields","* Notwendige Felder"
4
+ "Add New Address","Neue Adresse hinzufügen"
5
+ "Add New Condition","Neue Kondition hinzufügen"
6
+ "Add coupon code for shopping cart","Gutscheincode für Einkaufswagen eingeben"
7
+ "Add gift messages to shopping cart","Grußmitteilungen für Einkaufswagen eingeben"
8
+ "Add product to shopping cart","Weiteren Artikel in den Einkaufswagen legen"
9
+ "Add product(s) to shopping cart","Weitere Artikel in den Einkaufswagen legen"
10
+ "Add to Cart","Zum Warenkobrn hinzufügen"
11
+ "Add to Compare","Hinzufügen um zu vergleichen"
12
+ "Add to Wishlist","Zum Wunschzettel hinzufügen"
13
+ "Additional Product Info","Zusätzliche Angaben zum Produkt"
14
+ "Address","Adresse"
15
+ "Address %s of %s","Adresse %s von %s"
16
+ "After Adding a Product Redirect to Shopping Cart","Nach Hinzufügen eines Produktes zum Warenkorb weiterleiten"
17
+ "Allow Guest Checkout","Gast Checkout erlauben"
18
+ "Already registered?","Schon registriert?"
19
+ "An error occurred in the process of payment","Beim Prozessieren der Zahlung ist ein Fehler aufgetreten."
20
+ "An error occurred while deleting this condition.","Beim Löschen dieser Kondition ist ein Fehler aufgetreten."
21
+ "An error occurred while saving this condition.","Beim Speichern dieser Kondition ist ein Fehler aufgetreten."
22
+ "Apply","Anwenden"
23
+ "Apply Coupon","Coupon anwenden"
24
+ "Are you sure you want to leave this page? You will need to go through the checkout steps again.","Sind Sie sicher, dass Sie diese Seite verlassen wollen? Sie müssen wieder die Checkout-Schritte durchlaufen."
25
+ "Are you sure you would like to remove this item from the shopping cart?","Sind Sie sicher, dass sie diesen Artikel aus Ihrem Warenkorb entfernen wollen?"
26
+ "Back","Zurück"
27
+ "Back to Billing Information","Zurück zur Rechnungsinformation"
28
+ "Back to Select Addresses","Zurück zur Adressenauswahl"
29
+ "Back to Shipping Information","Zurück zur Versandinformation"
30
+ "Back to Shopping Cart","Zurück zum Warenkorb"
31
+ "Based on your selection, you may be interested in the following items:","Ihrer Auswahl zufolge könnten Sie möglicherweise an folgenden Artikeln interessiert sein:"
32
+ "Billing Address","Rechnungsadresse"
33
+ "Billing Information","Rechnungsinformation"
34
+ "Billing Information - %s","Rechnungsinformation - %s"
35
+ "Can not remove the item.","Das Element kann nicht entfernt werden."
36
+ "Can not save item.","Element kann nicht gespeichert werden."
37
+ "Cancel","Abbrechen"
38
+ "Cancel Coupon","Coupon abbrechen"
39
+ "Cannot add item to the shopping cart.","Artikel kann nicht zum Warenkorb hinzugefügt werden."
40
+ "Cannot add the item to shopping cart","Artikel kann nicht zu Warenkorb hinzugefügt werden"
41
+ "Cannot add the item to shopping cart.","Kann das Objekt nicht zum Warenkorb hinzufügen."
42
+ "Cannot apply the coupon code.","Coupon Code kann nicht angewendet werden."
43
+ "Cannot configure product.","Produkt kann nicht konfiguriert werden."
44
+ "Cannot open the overview page","Überblickseite kann nicht geöffnet werden."
45
+ "Cannot process the item.","Artikel kann nicht verarbeitet werden."
46
+ "Cannot remove the item.","Artikel kann nicht entfernt werden."
47
+ "Cannot update shopping cart.","Warenkorb kann nicht aktualisiert werden."
48
+ "Cannot update the item.","Artikel kann nicht aktualisiert werden."
49
+ "Card Verification Number Visual Reference","Kartenprüfnummer Visueller Hinweis"
50
+ "Cart","Warenkorb"
51
+ "Cart Product API","Einkaufswagen Produkt-API"
52
+ "Cart Subtotal:","Warenkorb Zwischensumme:"
53
+ "Change","Ändern"
54
+ "Change Billing Address","Rechnungsadresse ändern"
55
+ "Checkbox Text","Checkbox Text"
56
+ "Checkout","Checkout"
57
+ "Checkout Conditions","Checkout Konditionen"
58
+ "Checkout Forms Extra","Kassenformen Extra"
59
+ "Checkout Method","Checkout Methode"
60
+ "Checkout Options","Checkout Optionen"
61
+ "Checkout Progress Wrapper","Kasse Fortschrittsanzeige"
62
+ "Checkout Section","Checkout Bereich"
63
+ "Checkout Terms and Conditions","Checkout allgemeine Geschäftsbedingungen"
64
+ "Checkout as Guest","Checkout als Gast"
65
+ "Checkout as a Guest or Register","Checkout als Gast oder registrieren"
66
+ "Checkout with Multiple Addresses","Checkout mit mutiplen Adressen"
67
+ "City","Stadt"
68
+ "Clear Shopping Cart","Einkaufswagen leeren"
69
+ "Click <a href=""%s"" onclick=""this.target=\'_blank\'"">here to print</a> a copy of your order confirmation.","Klicken sie <a href=""%s"">hier um ihre Bestellbestätigung auszudrucken </a>."
70
+ "Click <a href=""%s"">here</a> to continue shopping.","<a href=""%s"">Hier</a> klicken, um das Einkaufen fortzusetzen."
71
+ "Close","Schließen"
72
+ "Company","Firma"
73
+ "Condition Name","Konditionsname"
74
+ "Configurable Product Image","Konfigurierbares Produktbild"
75
+ "Configure Cart Item","Artikel im Korb konfigurieren"
76
+ "Confirm Password","Passwort bestätigen"
77
+ "Content","Inhalt"
78
+ "Content Height","Inhalthöhe"
79
+ "Content Height (css)","Inhalthöhe (css)"
80
+ "Continue","Fortsetzen"
81
+ "Continue Shopping","Einkauf fortfahren"
82
+ "Continue to Billing Information","Weiter zur Rechnungsinformation"
83
+ "Continue to Review Your Order","Weiter zur Bestellungsüberprüfung"
84
+ "Continue to Shipping Information","Weiter zur Versandinformation"
85
+ "Country","Land"
86
+ "Coupon code ""%s"" is not valid.","Der Gutscheincode ""%s"" ist nicht mehr gültig."
87
+ "Coupon code ""%s"" was applied.","Der Gutscheincode ""%s"" wurde eingelöst."
88
+ "Coupon code was canceled.","Coupon Code """"%s"""" wurde abgebrochen."
89
+ "Create Billing Address","Rechnungsadresse erstellen"
90
+ "Create Shipping Address","Versandadresse erstellen"
91
+ "Create an order from shopping cart","Geben sie eine Bestellung aus ihrem Einkaufswagen auf."
92
+ "Create shopping cart","Ihr Einkaufswagen"
93
+ "Customer Address is not valid.","Die Kundenadresse ist nicht gültig."
94
+ "Customer Information","Kundeninformation"
95
+ "Customer's information","Kundeninformation"
96
+ "Data saving problem","Problem beim Speichern der Daten"
97
+ "Default Billing","Standard Rechnung"
98
+ "Default Shipping","Standard Versand"
99
+ "Delete Condition","Kondition löschen"
100
+ "Details","Details"
101
+ "Disabled","Deaktiviert"
102
+ "Discount Codes","Rabattcodes"
103
+ "Display Cart Summary","Warenkorb Zusammenfassung anzeigen"
104
+ "Display Shopping Cart Sidebar","Warenkorb Sidebar anzeigen"
105
+ "Display item quantities","Artikelmengen anzeigen"
106
+ "Display number of items in cart","Anzahl der Artikel im Warenkorb anzeigen"
107
+ "Display number of items in wishlist","Zeige die Menge der Artikel auf der Wunschliste an."
108
+ "Easy access to your order history and status","Schneller Zugriff auf Ihre Bestellungshistorie und Status"
109
+ "Edit","Bearbeiten"
110
+ "Edit Address","Adresse bearbeiten"
111
+ "Edit Billing Address","Rechnungsadresse bearbeiten"
112
+ "Edit Condition","Konditionen bearbeiten"
113
+ "Edit Items","Artikel bearbeiten"
114
+ "Edit Shipping Address","Versandadresse bearbeiten"
115
+ "Edit Terms and Conditions","Allgemeine Geschäftsbedingungen bearbeiten"
116
+ "Edit Your Cart","Ihren Warenkorb bearbeiten"
117
+ "Edit item","Artikel ändern"
118
+ "Edit item parameters","Artikelangaben ändern"
119
+ "Email Address","E-Mail-Adresse"
120
+ "Empty Cart","Warenkorb leeren"
121
+ "Empty Shopping Cart Content Before","Zuvor Warenkorbinhalt leeren"
122
+ "Enable Onepage Checkout","Onepage Checkout aktivieren"
123
+ "Enable Terms and Conditions","Allgemeine Geschäftsbedingungen aktivieren"
124
+ "Enabled","Aktiviert"
125
+ "Enter a New Address","Neue Adresse eingeben"
126
+ "Enter your coupon code if you have one.","Geben Sie Ihren Coupon Code ein, falls Sie einen haben."
127
+ "Enter your destination to get a shipping estimate.","Geben Sie Ihren Standort an, um die geschätzten Versandkosten/dauer zu ermitteln."
128
+ "Estimate","Schätzung"
129
+ "Estimate Shipping and Tax","Geschätzte Versandkosten und Steuern"
130
+ "Excl. Tax","Steuer weglassen"
131
+ "Fast and easy check out","Schnell und einfaches Checkout"
132
+ "Fax","Fax"
133
+ "Forgot an Item?","Sie haben einen Artikel vergessen?"
134
+ "Forgot your password?","Sie haben Ihr Passwort vergessen?"
135
+ "Get a Quote","Eine Preisangabe bekommen"
136
+ "Get list of available payment methods","Liste der verfügbaren Zahlungsarten"
137
+ "Get list of available shipping methods","Liste der verfügbaren Versandarten"
138
+ "Get list of products in shopping cart","Liste der Produkte im Warenkorb anzeigen"
139
+ "Get terms and conditions","Allgemeine Geschäftsbedingungen anzeigen"
140
+ "Get total prices for shopping cart","Gesamtpreis für Warenkorb anzeigen"
141
+ "Gift Message","Grußnachricht"
142
+ "Grand Total:","Gesamtbetrag:"
143
+ "Grouped Product Image","Gruppiertes Produktbild"
144
+ "HTML","HTML"
145
+ "ID","ID"
146
+ "Incl. Tax","Steuer inkludieren"
147
+ "Invalid checkout type.","Ungültiger Kassenbereich-Typ"
148
+ "Invalid data.","Ungültige Daten."
149
+ "Invalid email address ""%s""","Ungültige E-Mail-Adresse ""%s"""
150
+ "Invalid method: %s","Ungültige Methode: %s"
151
+ "Invalid shipping method.","Ungültige Versandart."
152
+ "Item not found or already ordered","Artikel nicht gefunden oder schon bestellt"
153
+ "Item was removed successfully.","Element wurde erfolgreich entfernt."
154
+ "Item was updated successfully.","Element wurde erfolgreich aktualisiert."
155
+ "Items","Artikel"
156
+ "Items After","Artikel danach"
157
+ "Items Before","Artikel davor"
158
+ "Load customer quote error","Fehler bei Kundenpreisangabe laden"
159
+ "Loading next step...","Nächster Schritt wird geladen ..."
160
+ "Login","Einloggen"
161
+ "Login/Registration Before","Anmeldung/ Registrierung davor"
162
+ "Manage Terms and Conditions","Allgemeine Geschäftsbedingungen verwalten"
163
+ "Maximum Display Recently Added Item(s)","Maximalanzeige kürzlich hinzugefügter Artikel"
164
+ "Maximum qty allowed for Shipping to multiple addresses is %s","Maximale Menge für Lieferung an mehrfache Adressen ist %s"
165
+ "Mini-cart promotion block","Promotionblock Mini-Warenkorb"
166
+ "Minimum order amount is %s","Mindestbestellwert ist %s"
167
+ "Move","Verschieben"
168
+ "Move to Wishlist","Auf Wunschzettel schreiben"
169
+ "Move to wishlist","Auf den Wunschzettel verschieben"
170
+ "Multishipping Checkout","Mehrfachlieferung Kasse"
171
+ "Multishipping Checkout Address (Any) Form","Mehrfachlieferung Kasse Adresse (Beliebiges) Formular"
172
+ "Multishipping Checkout Billing Address Creation","Mehrfachlieferung Kasse Rechnungsadresse Erstellung"
173
+ "Multishipping Checkout Billing Address Edit Form","Mehrfachlieferung Kasse Rechnungsadresse Formular bearbeiten"
174
+ "Multishipping Checkout Billing Address Selection","Mehrfachlieferung Kasse Rechnungsadresse Auswahl"
175
+ "Multishipping Checkout Billing Information Step","Mehrfachlieferung Kasse Rechnungsinformation Schritt"
176
+ "Multishipping Checkout Customer Address Edit Form","Mehrfachlieferung Kasse Kundenadresse Formular bearbeiten"
177
+ "Multishipping Checkout Overview","Mehrfachlieferung Kasse Übesicht"
178
+ "Multishipping Checkout Shipping Address Creation","Mehrfachlieferung Kasse Rechnungsadresse Erstellung"
179
+ "Multishipping Checkout Shipping Address Edit Form","Mehrfachlieferung Kasse Lieferadresse Formular bearbeiten"
180
+ "Multishipping Checkout Shipping Address Selection","Mehrfachlieferung Kasse Lieferadresse Auswahl"
181
+ "Multishipping Checkout Shipping Information Step","Mehrfachlieferung Kasse Lieferinformation Schritt"
182
+ "Multishipping Checkout Success","Mehrfachlieferung Kasse Erfolg"
183
+ "My Cart","Mein Einkaufswagen"
184
+ "My Cart (%s item)","Mein Einkaufswagen (%s Artikel)"
185
+ "My Cart (%s items)","Mein Einkaufswagen (%s Artikel)"
186
+ "My Cart Extra Actions","Mein Einkaufskorb Extra-Aktionen"
187
+ "My Cart Link","Link zu meinem Einkaufswagen"
188
+ "New Address","Neue Adresse"
189
+ "New Condition","Neuer Bedingung"
190
+ "New Terms and Conditions","Neue allgemeine Geschäftsbedingungen"
191
+ "No Payment Methods","Keine Zahlungsmethoden"
192
+ "ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER","GESAMTSUMME WIRD VOR ABSENDEN DER BESTELLUNG ANGEZEIGT"
193
+ "One Page Checkout","Eine Seite Kasse"
194
+ "One Page Checkout Failure","Eine Seite Fehler bei Kassenausgang"
195
+ "One Page Checkout Overview","Checkout-Übersicht auf einer Seite"
196
+ "One Page Checkout Success","Eine Seite Erfolg bei Kassenausgang"
197
+ "One item of products do not have identifier or sku","Ein Artikel Ihrer Produkte hat keine Kennung oder keine SKU-Nummer"
198
+ "One item of products is not belong any of quote item","Ein Artikel Ihrer Produkte gehört nicht zu den angebotenen Artikeln"
199
+ "Order #","Bestellung #"
200
+ "Order Review","Bestellungsübersicht"
201
+ "Order Success","Bestellung mit Erfolg"
202
+ "Order place error.","Falscher Bestellungsort."
203
+ "Other Items in Your Order","Andere Artikel in Ihrer Bestellung"
204
+ "Overview Items After","Überblick Artikel danach"
205
+ "Password","Passwort"
206
+ "Payment Failed Email Reciever","E-Mail-Adresse für fehlgeschlagene Bezahlung"
207
+ "Payment Failed Email Sender","Zahlung fehlgeschlagen E-Mail-Sender"
208
+ "Payment Failed Emails","Zahlung fehlgeschlagen E-Mails"
209
+ "Payment Failed Template","Zahlung fehlgeschlagen Vorlage"
210
+ "Payment Information","Information zur Zahlung"
211
+ "Payment Method","Zahlungsart"
212
+ "Payment Methods After","Zahlungsarten nach"
213
+ "Payment Methods After Checkout Button","Zahlungsmethoden nach Schaltfläche Kasse"
214
+ "Payment Methods Before","Zahlungsarten vor"
215
+ "Payment Methods Before Checkout Button","Zahlungsarten vor Schalter Kasse"
216
+ "Payment method information","Informationen zur Zahlungsmethode"
217
+ "Payment method is not defined","Zahlungsmethode ist nicht definiert"
218
+ "Payment methods in shopping cart","Zahlungsmethoden im Warenkorb"
219
+ "Payment profile # %s: ""%s"".","Zahlungsprofil # %s: ""%s""."
220
+ "Place Order","Bestellung aufgeben"
221
+ "Please agree to all Terms and Conditions before placing the order.","Bitte stimmen Sie allen Geschäftsbedingungen vor der Auftragserteilung zu."
222
+ "Please agree to all Terms and Conditions before placing the orders.","Bitte stimmen Sie allen Geschäftsbedingungen vor Erteilung der Aufträge zu."
223
+ "Please agree to all the terms and conditions before placing the order.","Bitte Stimmen Sie allen Geschäftsbedingungen vor Auftragserteilung zu."
224
+ "Please check billing address information.","Bitte prüfen Sie die Informationen zur Rechnungsadresse."
225
+ "Please check shipping address information.","Bitte prüfen Sie die Informationen zur Lieferadresse."
226
+ "Please check shipping addresses information.","Bitte prüfen Sie die Informationen zur Lieferadresse."
227
+ "Please choose to register or to checkout as a guest","Bitte registrieren Sie sich oder gehen Sie als Gast zum Checkout"
228
+ "Please log in below:","Bitte loggen Sie sich unten ein:"
229
+ "Please select region, state or province","Bitte Region, Staat oder Provinz auswählen"
230
+ "Please select shipping address for applicable items","Bitte wählen Sie die Versandadresse für zutreffende Positionen aus"
231
+ "Please select shipping methods for all addresses","Bitte wählen Sie die Versandmethoden für alle Adressen"
232
+ "Please select valid payment method.","Wählen Sie bitte eine gültige Zahlungsmethode aus."
233
+ "Please specify payment method.","Bitte geben Sie die Zahlungsmethode an."
234
+ "Please specify shipping method.","Bitte die Versandmethode spezifizieren."
235
+ "Please specify shipping methods for all addresses.","Bitte spezifizieren Sie die Versandmethoden für alle Adressen."
236
+ "Price","Preis"
237
+ "Proceed to Checkout","Bestellung aufgeben"
238
+ "Product","Produkt"
239
+ "Product Name","Produktbezeichnung"
240
+ "Products","Produkte"
241
+ "Qty","Menge"
242
+ "Qty:","Menge:"
243
+ "Quantity was recalculated from %d to %d","Menge wurde von %d auf %d neu berechnet"
244
+ "Quote Lifetime (days)","Lebensdauer angeben (Tage)"
245
+ "Quote item does not exist.","Der angegebene Artikel existiert nicht."
246
+ "Quote item is not found.","Der angegebene Artikel wurde nicht gefunden."
247
+ "Recently added item(s)","Kürzlich hinzugefügte Position(en)"
248
+ "Register","Registrieren"
249
+ "Register and save time!","Melden Sie sich an und sparen Sie Zeit!"
250
+ "Register to Create an Account","Registrieren, um ein Konto zu erstellen"
251
+ "Register with us for future convenience:","Melden Sie sich bei uns an für zukünftigen Komfort:"
252
+ "Remove Item","Objekt entfernen"
253
+ "Remove This Item","Dieses Objekt entfernen"
254
+ "Remove coupon code from shopping cart","Couponcode aus Warenkorb entfernen"
255
+ "Remove item","Artikel löschen"
256
+ "Remove product from shopping cart","Produkt aus Warenkorb entfernen"
257
+ "Remove product(s) from shopping cart","Produkt(e) aus Warenkorb entfernen"
258
+ "Require Customer To Be Logged In To Checkout","Kunde muss angemeldet sein, um zur Kasse gehen zu können"
259
+ "Retrieve information about shopping cart","Informationen zum Warenkorb abrufen"
260
+ "Review Order","Auftrag überprüfen"
261
+ "Review Order - %s","Auftrag überprüfen - %s"
262
+ "SKU","SKU"
263
+ "Sales","Verkäufe"
264
+ "Save Condition","Bedingung speichern"
265
+ "Save in address book","Speichern im Adressbuch"
266
+ "See price before order confirmation.","Preis vor Bestellbestätigung ansehen."
267
+ "Select Address","Adresse auswählen"
268
+ "Select Addresses","Adressen auswählen"
269
+ "Select Shipping Method","Versandmethode auswählen"
270
+ "Select State/Province...","Land/Provinz auswählen"
271
+ "Select a billing address from your address book or enter a new address.","Wählen Sie eine Rechnungsadresse aus ihrem Adressbuch oder geben Sie eine neue Adresse ein."
272
+ "Select a shipping address from your address book or enter a new address.","Wählen Sie eine Versandadresse aus ihrem Adressbuch oder geben sie eine neue Adresse ein."
273
+ "Send Payment Failed Email Copy Method","Zahlung-fehlgeschlagen-E-Mail-Kopie-Methode"
274
+ "Send Payment Failed Email Copy To","Zahlung-fehlgeschlagen-E-Mail-Kopie senden an"
275
+ "Send To","Senden an"
276
+ "Separate by "","".","Getrennt nach "", ""."
277
+ "Set customer for shopping cart","Kunden für Warenkorb festlegen"
278
+ "Set customer's addresses in shopping cart","Kundenadressen im Einkaufswagen einstellen"
279
+ "Set payment method","Bezahlungsmethode festlegen"
280
+ "Set shipping method","Versandart festlegen"
281
+ "Ship to Multiple Addresses","An mehrere Adressen senden"
282
+ "Ship to different address","Versand an andere Adresse"
283
+ "Ship to this address","Versand an diese Adresse"
284
+ "Shipping Address","Lieferungsadresse"
285
+ "Shipping Information","Lieferungsinformation"
286
+ "Shipping Method","Lieferungsart"
287
+ "Shipping Methods","Versandarten"
288
+ "Shipping To","Versendet an"
289
+ "Shipping information","Versandinformation"
290
+ "Shipping method has not been selected yet","Versandart wurde noch nicht ausgewählt"
291
+ "Shipping methods in shopping cart","Versandarten im Einkaufswagen"
292
+ "Shipping selection is not applicable.","Versandauswahl ist nicht anwendbar"
293
+ "Shopping Cart","Einkaufswagen"
294
+ "Shopping Cart Form Before","Einkaufswagen Formular vor"
295
+ "Shopping Cart Items After","Artikel im Warenkorb nach"
296
+ "Shopping Cart Items Before","Artikel im Warenkorb vor"
297
+ "Shopping Cart Sidebar","Einkaufswagen Seitenleiste"
298
+ "Shopping Cart Sidebar Extra Actions","Zusätzliche Aktionen in der Einkaufswagen-Sidebar"
299
+ "Shopping Cart is Empty","Einkaufswagen ist leer"
300
+ "Shopping cart ability to set coupon code","Möglichkeit, im Einkaufwagen einen Couponcode einzustellen"
301
+ "Show Content as","Inhalt anzeigen als"
302
+ "Some of the requested products are not available in the desired quantity.","Einige der angefragten Produkte sind nicht in der gewünschten Anzahl verfügbar."
303
+ "Some of the requested products are unavailable.","Einige der gewünschten Produkte sind nicht verfügbar."
304
+ "Some products quantities were recalculated because of quantity increment mismatch","Einige Produktmengen wurden neu berechnet aufgrund einer Zuwachsdifferenz."
305
+ "Sorry, guest checkout is not enabled. Please try again or contact store owner.","Entschuldigung, Gäste-Checkout ist nicht aktiviert. Versuchen Sie es erneut oder kontaktieren Sie den Shopbesitzer."
306
+ "Sorry, no quotes are available for this order at this time.","Es tut uns Leid, es gibt derzeit keine Preisangabe für diese Bestellung."
307
+ "State/Province","Staat/Provinz"
308
+ "Status","Status"
309
+ "Store View","Store-Ansicht"
310
+ "Street Address","Adresse"
311
+ "Street Address %s","Hausanschrift %s"
312
+ "Submitting order information...","Bestellung wird versandt..."
313
+ "Subtotal","Zwischensumme"
314
+ "Subtotal must exceed minimum order amount","Zwischensumme muss den Mindestbestellwert überschreiten"
315
+ "Telephone","Telefon"
316
+ "Terms and Conditions","Allgemeine Geschäftsbedingungen"
317
+ "Terms and Conditions Information","Informatiuon zu den Allgemeine Geschäftsbedingungen"
318
+ "Terms and conditions","Allgemeine Geschäftsbedingungen"
319
+ "Text","Text"
320
+ "Thank you for your purchase!","Danke für Ihren Einkauf!"
321
+ "The condition has been deleted","Die Kondition wurde gelöscht"
322
+ "The condition has been saved.","Die Kondition wurde gespeichert."
323
+ "The onepage checkout is disabled.","Der Bezahlvorgang mit nur einer Seite ist deaktiviert."
324
+ "The product could not be found.","Das Produkt konnte nicht gefunden werden."
325
+ "The product does not exist.","Das Produkt existiert nicht."
326
+ "There are <a href=""%s"">%s items</a> in your cart.","<a href=""%s"">%s Artikel</a> sind derzeit in Ihrem Einkaufswagen."
327
+ "There is <a href=""%s"">1 item</a> in your cart.","<a href=""%s"">1 Artikel</a> ist derzeit in Ihrem Einkaufswagen."
328
+ "There is already a customer registered using this email address. Please login using this email address or enter a different email address to register your account.","Es ist bereits ein Kunde mit dieser E-Mail-Adresse registriert. Bitte loggen Sie sich mit dieser E-Mail-Adresse ein oder geben Sie eine andere E-Mail-Adresse ein, um ein Konto zu eröffnen."
329
+ "There was an error processing your order. Please contact us or try again later.","Bei der Bearbeitung Ihrer Bestellung ist ein Fehler aufgetreten. Bitte kontaktieren Sie und oder versuchen Sie es später noch einmal."
330
+ "This condition no longer exists.","Diese Kondition existiert nicht mehr,"
331
+ "Total","Gesamtbetrag"
332
+ "Total for this address","Gesamtsumme für diese Adresse"
333
+ "Unable to set Payment Method.","Zahlungsart kann nicht eingestellt werden."
334
+ "Unit Price","Einheitspreis"
335
+ "Update","Aktualisieren"
336
+ "Update Cart","Einkaufswagen aktualisieren"
337
+ "Update Qty &amp; Addresses","Anzahl &amp; Adressen aktualisieren"
338
+ "Update Shopping Cart","Einkaufswagen aktualisieren"
339
+ "Update Total","Gesamtsumme aktualisieren"
340
+ "Update product quantities in shopping cart","Produktanzahl im Einkaufswagen aktualisieren"
341
+ "Update product(s) quantities in shopping cart","Produktanzahl im Einkaufswagen aktualisieren"
342
+ "Use Billing Address","Rechnungsadresse verwenden"
343
+ "VAT Number","MwSt.-Nummer"
344
+ "View Shopping Cart","Einkaufswagen anzeigen"
345
+ "Visible items in minicart","Sichtbare Elemente im Mini-Warenkorb"
346
+ "We are processing your order and you will soon receive an email with details of the order. Once the order has shipped you will receive another email with a link to track its progress.","Wir bearbeiten Ihre Bestellung und Sie werden in Kürze eine eMail mit den Details der Bestellung erhalten. Sobald die Bestellung versendet wurde, erhalten Sie eine weitere eMail mit einem Link, um deren Verlauf verfolgen zu können."
347
+ "What&#39;s this?","Was ist das?"
348
+ "What's this?","Was ist das?"
349
+ "You have no items in your shopping cart.","Sie haben keine Artikel in Ihrem Einkaufswagen."
350
+ "You will receive an order confirmation email with details of your order and a link to track its progress.","Sie erhalten eine eMail mit der Bestätigung Ihrer Bestellung und einem Link, um deren Verlauf verfolgen zu können."
351
+ "Your Checkout Progress","Ihr Abmeldeverlauf"
352
+ "Your billing agreement # is: %s.","Die Nummer Ihrer Zustimmung zur Abrechnung lautet: %s."
353
+ "Your order # is: %s.","Die Nummer Ihrer Bestellung lautet: %s."
354
+ "Your order cannot be completed at this time as there is no payment methods available for it.","Ihre Bestellung kann momentan nicht abgeschlossen werden, da keine Zahlungsmethode zur Verfügung steht."
355
+ "Your order cannot be completed at this time as there is no shipping methods available for it. Please make necessary changes in your shipping address.","Ihre Bestellung kann derzeit nicht abgeschlossen werden, da keine Versandart hierfür verfügbar ist. Bitte führen Sie die notwendigen Veränderungen bei Ihrer Lieferadresse durch."
356
+ "Your order has been received.","Ihre Bestellung wurde erhalten."
357
+ "Your order number is ","Ihre Bestellnummer ist"
358
+ "Your recurring payment profiles:","Ihre Profile für wiederkehrende Zahlungen:"
359
+ "Zip/Postal Code","Postleitzahl"
360
+ "ok","Okay"
app/locale/de_DE/Mage_Cms.csv ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "A block identifier with the same properties already exists in the selected store.","Ein Block Bezeichner mit denselben Eigenschaften existiert bereits in dem ausgewählten Store."
2
+ "A directory with the same name already exists. Please try another folder name.","Ein Verzeichnis mit dem gleichen Namen existiert bereits. Bitte versuchen Sie einen anderen Ordnernamen."
3
+ "A page URL key for specified store already exists.","Ein Seiten URL Key für den angegebenen Store existiert bereits."
4
+ "Action","Aktion"
5
+ "Add New Block","Neuen Block hinzufügen"
6
+ "Add New Page","Neue Seite hinzufügen"
7
+ "All Countries","Alle Länder"
8
+ "An error occurred while saving the page.","Fehler beim Speichern der Seite."
9
+ "Anchor Custom Text","Anchor eigener Text"
10
+ "Anchor Custom Title","Anchor eigener Titel"
11
+ "Are you sure you want to delete current folder?","Soll der aktuelle Ordner wirklich gelöscht werden?"
12
+ "Are you sure you want to delete the selected file?","Soll die ausgewählte Datei wirklich gelöscht werden?"
13
+ "Block","Block"
14
+ "Block Information","Blockinformation"
15
+ "Block Title","Blocktitel"
16
+ "CMS","CMS"
17
+ "CMS Content Wrapper","CMS Content Wrapper"
18
+ "CMS Home Page","CMS Startseite"
19
+ "CMS No Cookies Page","CMS keine Cookies Seite"
20
+ "CMS No Route Page","CMS keine Route Seite"
21
+ "CMS No-Route Page","CMS Keine-Route Seite"
22
+ "CMS Page","CMS Seite"
23
+ "CMS Page Link","CMS Seitenlink"
24
+ "CMS Page Link Block Template","CMS Seitenlink Blockvorlage"
25
+ "CMS Page Link Inline Template","CMS Seitenlink Inlinevorlage"
26
+ "CMS Pages (All)","CMS Seiten (Alle)"
27
+ "CMS Static Block","CMS statischer Block"
28
+ "CMS Static Block Default Template","CMS statischer Block Standardvorlage"
29
+ "Cannot create new directory.","Neues Verzeichnis kann nicht erstellt werden."
30
+ "Cannot delete directory %s.","Verzeichnis %s kann nicht gelöscht werden."
31
+ "Cannot delete root directory %s.","Rootverzeichnis %s kann nicht gelöscht werden."
32
+ "Cannot upload file.","Datei kann nicht hochgeladen werden."
33
+ "Collapse All","Alle einklappen"
34
+ "Content","Inhalt"
35
+ "Content Heading","Contentheading"
36
+ "Content Management","Content Management"
37
+ "Contents of a Static Block","Inhalte eines statischen Blocks"
38
+ "Create Folder...","Ordner anlegen…"
39
+ "Custom Design","Eigene Gestaltung"
40
+ "Custom Design From","Eigene Gestaltung von"
41
+ "Custom Design To","Eigene Gestaltung bis"
42
+ "Custom Layout","Eigenes Layout"
43
+ "Custom Layout Update XML","Eigenes Layout Update XML"
44
+ "Custom Theme","Eigenes Theme"
45
+ "Customer Tax Class Information","Kunden Steuerklasse Information"
46
+ "Date Created","Angelegt am"
47
+ "Delete Block","Block löschen"
48
+ "Delete File","Datei löschen"
49
+ "Delete Folder","Ordner löschen"
50
+ "Delete Page","Seite löschen"
51
+ "Description","Beschreibung"
52
+ "Design","Gestaltung"
53
+ "Disabled","Deaktiviert"
54
+ "Disabled Completely","Komplett deaktiviert"
55
+ "Disabled by Default","Standard-Deaktivierung"
56
+ "Edit Block","Block bearbeiten"
57
+ "Edit Block '%s'","Block '%s' bearbeiten"
58
+ "Edit Page","Seite bearbeiten"
59
+ "Edit Page '%s'","Seite '%s' bearbeiten"
60
+ "Enable WYSIWYG Editor","WYSIWYG-Editor aktivieren"
61
+ "Enabled","Aktiviert"
62
+ "Enabled by Default","Standard-Aktivierung"
63
+ "Expand All","Alle ausklappen"
64
+ "General Information","Allgemeine Information"
65
+ "Go to Home Page","Zur Startseite gehen"
66
+ "Home","Startseite"
67
+ "ID","ID"
68
+ "Identifier","Bezeichner"
69
+ "If empty, the Page Title will be used","Falls leer, wird der Seitentitel verwendet"
70
+ "Images (%s)","Bilder (%s)"
71
+ "Insert File","Datei einfügen"
72
+ "Invalid folder name. Please, use alphanumeric characters, underscores and dashes.","Ungültiger Ordnername. Bitte verwenden Sie alphanumerische Zeichen, Unterstriche und Bindestriche."
73
+ "Keywords","Schlüsselwörter"
74
+ "Last Modified","Zuletzt geändert"
75
+ "Layout","Layout"
76
+ "Layout Update XML","Layout Update XML"
77
+ "Link to a CMS Page","Link zu einer CMS Seite"
78
+ "Manage Pages","Seiten verwalten"
79
+ "Media Gallery","Mediengalerie"
80
+ "Media Storage","Medienspeicher"
81
+ "Meta Data","Metadaten"
82
+ "Meta Description","Metabeschreibung"
83
+ "Meta Keywords","Metaschlüsselwörter"
84
+ "New Block","Neuer Block"
85
+ "New Folder Name:","Neuer Ordner Name:"
86
+ "New Page","Neue Seite"
87
+ "No files found","Keine Dateien gefunden"
88
+ "Page Information","Seiteninformation"
89
+ "Page Layout","Seitenlayout"
90
+ "Page Status","Seitenstatus"
91
+ "Page Title","Seitentitel"
92
+ "Pages","Seiten"
93
+ "Product Tax Class Information","Produktsteuerklasse Information"
94
+ "Redirect to CMS-page if Cookies are Disabled","Zu CMS-Seite weiterleiten wenn Cookies deaktiviert sind."
95
+ "Relative to Website Base URL","Relativ zu Website Base URL"
96
+ "Save Block","Block speichern"
97
+ "Save Page","Seite speichern"
98
+ "Save Process","Prozess speichern"
99
+ "Select Block...","Block wählen..."
100
+ "Select Page...","Seite wählen..."
101
+ "Show Breadcrumbs for CMS Pages","Breadcrumbs für CMS Seiten anzeigen"
102
+ "Show Notice if JavaScript is Disabled","Hinweis zeigen wenn JavaScript deaktiviert ist"
103
+ "Static Blocks","Statische Blöcke"
104
+ "Status","Status"
105
+ "Storage Root","Speicher Root"
106
+ "Store View","Store-Ansicht"
107
+ "Template","Vorlage"
108
+ "The block has been deleted.","Der Block wurde gelöscht."
109
+ "The block has been saved.","Der Block wurde gespeichert."
110
+ "The directory %s is not writable by server.","Das Verzeichnis %s ist nicht vom Server beschreibbar."
111
+ "The page URL key cannot consist only of numbers.","Der Seiten URL Schlüssel kann nicht nur aus Ziffern bestehen."
112
+ "The page URL key contains capital letters or disallowed symbols.","Die URL dieser Seite enthält Großbuchstaben oder unerlaubte Symbole."
113
+ "The page has been deleted.","Die Seite wurde gelöscht."
114
+ "The page has been saved.","Die Seite wurde gespeichert."
115
+ "The static block content cannot contain directive with its self.","Der statische Block selbst darf keine Anweisungen enthalten.
116
+
117
+
118
+
119
+ "
120
+ "This block no longer exists.","Dieser Block existiert nicht mehr."
121
+ "This page no longer exists.","Diese Seite existiert nicht mehr."
122
+ "Title","Titel"
123
+ "URL Key","URL Schlüssel"
124
+ "Unable to find a block to delete.","Es kann kein Block zum Löschen gefunden werden."
125
+ "Unable to find a page to delete.","Es kann keine Seite zum Löschen gefunden werden."
126
+ "WYSIWYG Options","WYSIWYG Optionen"
127
+ "px.","px."
app/locale/de_DE/Mage_Compiler.csv ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Collected Files Count","Anzahl Gesammelte Dateien"
2
+ "Compilation","Kompilierung"
3
+ "Compilation State","Kompilierungsstatus"
4
+ "Compilation error","Kompilierungsfehler"
5
+ "Compiled","Kompiliert"
6
+ "Compiled Scopes Count","Compiled Scopes Count"
7
+ "Compiler Status","Compilerstatus"
8
+ "Compiler include path is disabled.","Compiler Includepfad ist deaktiviert."
9
+ "Compiler include path is enabled.","Compiler Includepfad ist aktiviert."
10
+ "Directory ""%s"" must be writeable","Verzeichnis ""%s"" muss beschreibbar sein"
11
+ "Disable","Deaktivieren"
12
+ "Disabled","Deaktiviert"
13
+ "Enable","Aktivieren"
14
+ "Enabled","Aktiviert"
15
+ "File ""%s"" must be writeable","Datei ""%s"" muss beschreibbar sein"
16
+ "Not Compiled","Nicht Kompiliert"
17
+ "Run Compilation Process","Kompilierungsprozess starten"
18
+ "Scopes Compilation Settings","Scopes Compilation Einstellungen"
19
+ "System","System"
20
+ "The compilation has completed.","Der Kompilierungsprozess ist abgeschlossen."
21
+ "Tools","Werkzeuge"
app/locale/de_DE/Mage_Connect.csv ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "1.5.0.0 & later","1.5.0.0 & neuer"
2
+ "Action","Aktion"
3
+ "Add Author","Verfasser hinzufügen"
4
+ "Add Contents Path","Inhalte hinzufügen Pfad"
5
+ "Add PHP Extension dependency","PHP Erweiterung Abhängigkeit hinzufügen"
6
+ "Add Package dependency","Paket Abhängigkeit hinzufügen"
7
+ "Add files","Dateien hinzufügen"
8
+ "Authors","Verfasser"
9
+ "Channel","Kanal"
10
+ "Contents","Inhalte"
11
+ "Create Extension Package","Erweiterungs-Paket erstellen"
12
+ "Dependencies","Abhängigkeiten"
13
+ "Description","Beschreibung"
14
+ "Edit Extension","Erweiterung bearbeiten"
15
+ "Email","E-Mail"
16
+ "Extension","Erweiterung"
17
+ "Extensions","Erweiterungen"
18
+ "Failed to create the package.","Paket konnte nicht erstellt werden."
19
+ "Failed to load the package data.","Paketdaten konnten nicht geladen werden."
20
+ "Failed to save the package.","Paket konnte nicht gespeichert werden."
21
+ "Files","Dateien"
22
+ "Folder","Ordner"
23
+ "Ignore","Ignorieren"
24
+ "Include","Inkludieren"
25
+ "License","Lizenz"
26
+ "License URI","Lizenz URI"
27
+ "Load Local Package","Lokales Paket laden"
28
+ "Load local Package","Lokales Paket laden"
29
+ "Magento Connect","Magento Connect"
30
+ "Magento Connect Manager","Magento Connect Manager"
31
+ "Max","Max"
32
+ "Maximum","Maximum"
33
+ "Min","Min"
34
+ "Minimum","Minimum"
35
+ "Name","Name"
36
+ "New Extension","Neue Erweiterung"
37
+ "PHP Version","PHP Version"
38
+ "Package","Verpackung"
39
+ "Package Extensions","Paket-Erweiterungen"
40
+ "Package File Name","Paket Datei-Name"
41
+ "Package Info","Paket Info"
42
+ "Packages","Pakete"
43
+ "Path","Pfad"
44
+ "Pre-1.5.0.0","früher als 1.5.0.0"
45
+ "Release Info","Informationen zur Veröffentlichung"
46
+ "Remove","Entfernen"
47
+ "Save As...","Speichern als..."
48
+ "Save Data and Create Package","Daten speichern und Paket erstellen"
49
+ "Save package with custom package file name","Paket speichern mit individueller Bezeichnung der Paketdatei"
50
+ "Summary","Zusammenfassung"
51
+ "Supported releases","Unterstützte Versionen"
52
+ "System","System"
53
+ "Target","Ziel"
54
+ "The package %s data has been loaded.","Die Paket %s Daten wurden geladen."
55
+ "The package data has been saved.","Die Paketdaten wurden gespeichert."
56
+ "There was a problem saving package data","Beim Speichern der Paketdaten ist ein Fehler aufgetreten."
57
+ "Type","Typ"
58
+ "User","Benutzer"
app/locale/de_DE/Mage_Contacts.csv ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "* Required Fields","* Notwendige Felder"
2
+ "Comment","Kommentar"
3
+ "Contact Form","Kontaktformular"
4
+ "Contact Information","Kontaktinformation"
5
+ "Contact Us","Kontakt"
6
+ "Contact Us Form","Kontaktformular"
7
+ "Contacts","Kontakte"
8
+ "Contacts Section","Kontaktbuch"
9
+ "Email","E-Mail"
10
+ "Email Options","E-Mail-Optionen"
11
+ "Email Sender","E-Mail-Absender"
12
+ "Email Template","E-Mail-Vorlage"
13
+ "Enable Contact Us","Kontaktfunktion aktivieren"
14
+ "Name","Name"
15
+ "Send Emails To","E-Mails senden an"
16
+ "Submit","Senden"
17
+ "Telephone","Telefon"
18
+ "Unable to submit your request. Please, try again later","Ihre Anfrage konnte nicht verarbeitet werden. Bitte versuchen Sie es später erneut"
19
+ "Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.","Ihre Anfrage wurde übermittelt und wir werden so bald wie möglich darauf antworten. Vielen Dank, dass Sie sich mit uns in Kontakt setzen."
app/locale/de_DE/Mage_Core.csv ADDED
@@ -0,0 +1,394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s","%s"
2
+ "%s already exist.","%s existieren bereits."
3
+ "%s already exists.","%s existiert bereits."
4
+ "-- Please Select --","-- Bitte auswählen --"
5
+ "<strong style=""color:red"">Warning!</strong> When using CDN, in some cases JavaScript may not run properly if CDN is not in your subdomain","<strong style=""color:red"">Vorsicht!</strong> Wenn Sie CDN verwenden, kann es in einigen Fällen vorkommen, dass JavaScript nicht korrekt läuft, wenn CDN nicht in Ihrer Subdomain enthalten ist."
6
+ "<strong style=""color:red"">Warning!</strong> When using Store Code in URLs, in some cases system may not work properly if URLs without Store Codes are specified in the third party services (e.g. PayPal etc.).","<strong style=""color:red"">Warnung!</strong> Wenn Sie den Store-Code in URLs benutzen, arbeitet das System in einigen Fällen nicht korrekt, falls die URLs ohne Store-Codes in den Diensten von Dritten spezifiziert sind (z. B. PayPal etc.)."
7
+ "A category object is required for determining the product request path.","Es wird ein Kategorieobjekt benötigt um den Produktanfragepfad herauszufinden."
8
+ "Add Block Names to Hints","Blocknamen zu Hinweisen hinzufügen"
9
+ "Add Secret Key to URLs","Geheimschlüssel zu URLs hinzufügen"
10
+ "Add Store Code to Urls","Storecode zu URLs hinzufügen"
11
+ "Admin","Admin"
12
+ "Admin Base URL","Admin Basis-URL"
13
+ "Admin User Emails","Admin Benutzeremails"
14
+ "Advanced","Fortgeschritten"
15
+ "After selecting a new media storage location, press the Synchronize button
16
+ to transfer all media to that location. Media will not be available in the new
17
+ location until the synchronization process is complete.","Nachdem Sie einen neuen Medienspeicherort gewählt haben, drücken Sie den ""Synchronisieren""-Knopf, um alle Medien an diesen Ort zu übertragen. Medien sind an diesem neuen Ort erst verfügbar, wenn der Synchronisierungsprozess abgeschlossen ist."
18
+ "Allow Countries","Länder zulassen"
19
+ "Allow Magento Backend to run in frame","Magento Backend die Ausführung im Frame erlauben"
20
+ "Allow Magento Frontend to run in frame","Magento Frontend die Ausführung im Frame erlauben"
21
+ "Allow Symlinks","Symlinks erlauben"
22
+ "Allowed IPs (comma separated)","Zugelassene IPs (durch Kommata getrennt)"
23
+ "Allowed file types: ICO, PNG, GIF, JPG, JPEG, APNG, SVG. Not all browsers support all these formats!","Erlaubte Dateitypen: ICO, PNG, GIF, JPG, JPEG, APNG, SVG. Nicht alle Browser unterstützen alle dieser Formate!"
24
+ "Allows customers to stay logged in when switching between different stores.","Erlaubt Kunden eingeloggt zu bleiben nachdem zu einem anderen Store gewechselt wurde."
25
+ "Alternative text for next link in pagination menu. If empty, default arrow image will used.","Alternativtext für den Weiter-Link in der Seitenübersicht. Sollte diese Angabe leer sein, wird das Standard-Pfeilsymbol verwendet."
26
+ "Alternative text for previous link in pagination menu. If empty, default arrow image will used.","Alternativtext für den Zurück-Link in der Seitenübersicht. Sollte diese Angabe leer sein, wird das Standard-Pfeilsymbol verwendet."
27
+ "An error occurred while saving. Please review the error log.","Beim Speichern trat ein Fehler auf. Bitte sehen Sie im Fehlerverlauf nach."
28
+ "Anchor Text for Next","Link-Text für Weiter"
29
+ "Anchor Text for Previous","Link-Text für Zurück"
30
+ "Anchor symbol (#) is not supported in request path","Das Doppelkreuz (#) wird im Anforderungspfad nicht unterstützt"
31
+ "Anchor symbol (#) is not supported in url rewrite suffix","Das Doppelkreuz (#) wird beim URL-Überschreiben-Suffix nicht unterstützt"
32
+ "Are you sure?","Sind Sie sicher?"
33
+ "Auto-redirect to Base URL","Automatische Weiterleitung zur Basis-URL"
34
+ "Back","Zurück"
35
+ "Backup Options","Sicherungsoptionen"
36
+ "Base JavaScript URL","Basis-URL Javascript"
37
+ "Base Link URL","Basis-URL Links"
38
+ "Base Media URL","Baiss-URL Medien"
39
+ "Base Secure URL","Aufbau sichere URL"
40
+ "Base Skin URL","Bais-URL Skins"
41
+ "Base URL","Base URL"
42
+ "Base Unsecure URL","Aufbau unsichere URL"
43
+ "Before modifying the store view code please make sure that it is not used in index.php.","Bevor Sie den Store-View-Quelltext bearbeiten, sehen Sie bitte nach, dass es nicht in index.php verwendet wird."
44
+ "Before modifying the website code please make sure that it is not used in index.php.","Bevor Sie den Webseitenquelltext bearbeiten, sehen Sie bitte nach, dass er nicht in index.php verwendet wird."
45
+ "Block with name ""%s"" already exists","Ein Block mit dem Namen ""%s"" existiert bereits"
46
+ "Browser Capabilities Detection","Browserunterstützungstest"
47
+ "CSS Settings","CSS-Einstellungen"
48
+ "Cache Storage Management","Zwischenspeicherverwaltung (Caching)"
49
+ "Cache storage may contain additional data. Are you sure that you want flush it?","Der Cachespeicher könnte weitere Daten enthalten. Sind Sie sicher, dass Sie diese löschen möchten?"
50
+ "Can not create invoice. Order was not found.","Rechnung konnte nicht erstellt werden. Es wurde keine Bestellung gefunden."
51
+ "Can't retrieve request object","Objekt kann nicht abgefragt werden"
52
+ "Can\'t retrieve entity config: %s","Kann Entität config: %s nicht auffinden"
53
+ "Cancel","Abbrechen"
54
+ "Cannot complete this operation from non-admin area.","Diese Aktion kann nicht außerhalb des Admin-Bereichs fertiggestellt werden."
55
+ "Card type does not match credit card number.","Kartentyp entspricht nicht der Kreditkartennummer."
56
+ "Code","Code"
57
+ "Controller file was loaded but class does not exist","Controller-Datei wurde geladen, Klasse existiert jedoch nicht"
58
+ "Cookie Domain","Cookie-Domain"
59
+ "Cookie Lifetime","Cookie-Lebensdauer"
60
+ "Cookie Path","Cookie-Pfad"
61
+ "Cookie Restriction Mode","Modus zur Beschränkung von Cookies"
62
+ "Copyright","Copyright"
63
+ "Core","Kern"
64
+ "Countries Options","Länderoptionen"
65
+ "Country","Land"
66
+ "Create Store","Erstelle Store"
67
+ "Create Store View","Erstelle Store-View"
68
+ "Create Website","Erstelle Website"
69
+ "Credit card number does not match credit card type.","Kreditkartennummer entspricht nicht dem Kreditkartentyp."
70
+ "Current Package Name","Aktueller Paketname"
71
+ "Custom Admin Path","Benutzerdefinierter Administratorpfad"
72
+ "Custom Admin URL","Individuelle Admin URL"
73
+ "Custom Design","Eigene Gestaltung"
74
+ "Custom Email 1","Angepasste Email 1"
75
+ "Custom Email 2","Angepasste Email 2"
76
+ "Custom Variables","Angepasste Variablen"
77
+ "Custom1 Contact Email","Kunde1 Kontakt-E-Mail"
78
+ "Custom1 Contact Name","Kunde1 Kontaktname"
79
+ "Custom2 Contact Email","Kunde2 Kontakt-E-Mail"
80
+ "Custom2 Contact Name","Kunde2 Kontaktname"
81
+ "Customer Support","Kundensupport"
82
+ "Dashboard","Dashboard"
83
+ "Date From","Datum ab"
84
+ "Date To","Datum bis"
85
+ "Date/time format ""%s"" is not supported.","Datum/Zeit-Format ""%s"" wird nicht unterstützt."
86
+ "Debug","Debug"
87
+ "Default","Standard"
88
+ "Default Country","Standard Land"
89
+ "Default Description","Standard-Beschreibung"
90
+ "Default Keywords","Standard-Schlüsselwörter"
91
+ "Default No-route URL","Standard-No-Route-URL"
92
+ "Default Pages","Standardseiten"
93
+ "Default Robots","Standard-Robots"
94
+ "Default Store","Standard-Store"
95
+ "Default Store View","Standard-Store-View"
96
+ "Default Title","Standardtitel"
97
+ "Default Web URL","Standard-Web-URL"
98
+ "Delete","Löschen"
99
+ "Delete Store","Shop löschen"
100
+ "Delete Store View","Shopansicht löschen"
101
+ "Delete Website","Webseite löschen"
102
+ "Deleting a %1$s will not delete the information associated with the %1$s (e.g. categories, products, etc.), but the %1$s will not be able to be restored. It is suggested that you create a database backup before deleting the %1$s.","Das Löschen von %1$s löscht nicht die Informationen die mit %1$s verbunden sind (z.B. Kategorien, Produkte, etc.), die %1$s können aber nicht mehr wiederhergestellt werden. Es ist empfohlen ein Datenbank Backup vor dem Löschen von %1$s zu machen."
103
+ "Design","Gestaltung"
104
+ "Design Change","Designänderung"
105
+ "Developer","Developer"
106
+ "Developer Client Restrictions","Developer Client Restrictions"
107
+ "Disable Email Communications","E-Mail Kommunikation deaktivieren"
108
+ "Disable Modules Output","Modul Output deaktivieren"
109
+ "Display Demo Store Notice","Demo Shop Nachricht anzeigen"
110
+ "Duplicate Of Template Name","Duplikat von Templatename"
111
+ "Edit Design Change","Designänderung bearbeiten"
112
+ "Edit Store","Shop bearbeiten"
113
+ "Edit Store View","Shopansicht bearbeiten"
114
+ "Edit Website","Webseite bearbeiten"
115
+ "Empty identifier field name","Leerer Bezeichnerfeldname"
116
+ "Empty main table name","Leerer Haupttabllenname"
117
+ "Enable Charts","Tabellen aktivieren"
118
+ "Enabled","Aktiviert"
119
+ "Enabled for Admin","Für Admin aktivieren"
120
+ "Enabled for Frontend","Für Frontend aktivieren"
121
+ "Environment Update Time","Umgebungs-Update-Zeit"
122
+ "Error in file: ""%s"" - %s","Fehler in Datei: ""%s"" - %s"
123
+ "European Union Countries","Länder der Europäischen Union"
124
+ "Exceptions Log File Name","Exceptions Logfile Name"
125
+ "Favicon Icon","Favicon Icon"
126
+ "File %s does not exist","Datei %s existiert nicht"
127
+ "File %s is not readable","Datei %s kann nicht gelesen werden"
128
+ "File not found","Datei nicht gefunden"
129
+ "File system","Dateisystem"
130
+ "File with an extension ""%value%"" is protected and cannot be uploaded","Dateien mit der Endung ""%value%"" sind geschützt und können nicht hochgeladen werden"
131
+ "First Day of Week","Erster Wochentag"
132
+ "Flush Cache Storage","Cache Storage entleeren"
133
+ "Flush Magento Cache","Magento-Cache leeren"
134
+ "Footer","Fußzeile"
135
+ "Forgot Password Email Sender","E-Mail-Absender für vergessenes Passwort"
136
+ "Forgot Password Email Template","Passwort vergessen E-Mail Template"
137
+ "General","Allgemein"
138
+ "General Contact","Allgemeiner Kontakt"
139
+ "General Contact Email","Allgemeine Kontakt-E-Mail"
140
+ "General Contact Name","Allgemeiner Kontaktname"
141
+ "General Settings","Allgemeine Einstellungen"
142
+ "Get info about current Magento installation","Info über die Magento-Installation erhalten"
143
+ "Global","Weltweit"
144
+ "HTML Head","HTML Kopf"
145
+ "HTML tags are not allowed","HTML-Tags nicht zulässig"
146
+ "Header","Kopfzeile"
147
+ "Host","Host"
148
+ "How many links to display at once.","Wie viele Links sind auf einmal anzuzeigen."
149
+ "ID Path for Specified Store","ID Pfad für spezifizierten Shop"
150
+ "If the current frame position does not cover utmost pages, will render link to current position plus/minus this value.","Falls die aktuelle Frame Position nicht die äußerste Seite abdeckt, wird der Link zur aktuellen Position plus/minus diesen Wert gerendert."
151
+ "Incorrect credit card expiration date.","Falsches Verfallsdatum der Kreditkarte"
152
+ "Input type ""%value%"" not found in the input types list.","Eingabetyp ""%value%"" wurde nicht in der Liste der Eingabetypen gefunden."
153
+ "Invalid URL '%value%'.","Ungültige URL '%value%'."
154
+ "Invalid base url type","Ungültiger Base URL Typ"
155
+ "Invalid block name to set child %s: %s","Ungültiger Blockname zum Child gesetzt: %s: %s"
156
+ "Invalid block type: %s","Ungültiger Blocktyp: %s"
157
+ "Invalid block: %s","Ungültiger Block: %s"
158
+ "Invalid connection","Ungültige Verknüpfung"
159
+ "Invalid date","Invalid date"
160
+ "Invalid layout update handle","Ungültiger Layout Update Identifikator"
161
+ "Invalid messages storage ""%s"" for layout messages initialization","Ungültiger Nachrichtenspeicher ""%s"" für die Initialisierung der Layout-Nachrichten"
162
+ "Invalid query","Ungültige Anfrage"
163
+ "Invalid transactional email code: %s","Ungültiger Transaktions-E-Mail-Code: %s"
164
+ "Invalid website\'s configuration path: %s","Ungültiger Webseitenkonfigurationspfad: %s"
165
+ "JavaScript Settings","JavaScript Einstellungen"
166
+ "Layout","Layout"
167
+ "Leave empty for access from any location.","Leer lassen für den Zugriff von jedem Standort aus."
168
+ "List of stores","Liste der Speicherorte"
169
+ "Locale","Sprachumgebung"
170
+ "Locale Options","locale Einstellungen"
171
+ "Log Settings","Log-Einstellungen"
172
+ "Logging from Mage::log(). File is located in {{base_dir}}/var/log","Logging von Mage::log() befindet sich in {{base_dir}}/var/log"
173
+ "Logging from Mage::logException(). File is located in {{base_dir}}/var/log","Logging von Mage:: logException (). Die Datei befinden sich in {{base_dir}}/var/log"
174
+ "Login is Case Sensitive","Login ist Case Sensitive"
175
+ "Logo Image","Logobild"
176
+ "Logo Image Alt","Logo Alt"
177
+ "Logo Image Src","Bildquelle für Logo"
178
+ "Magento info","Magento-Info"
179
+ "Magento info API","Magento-Info API"
180
+ "Mail Sending Settings","Sendeeinstellungen in Mail"
181
+ "Make sure that base URL ends with '/' (slash), e.g. http://yourdomain/magento/","Stellen Sie sicher, dass Basis-URL endet mit '/' (Slash), z. B. http://yourdomain/magento"
182
+ "Manage Stores","Stores verwalten"
183
+ "Match expressions in the same order as displayed in the configuration.","Passende Ausdrücke in der gleichen Reihenfolge wie in der Konfiguration angezeigt."
184
+ "Media Storage","Medienspeicher"
185
+ "Merge CSS Files","CSS-Dateien zusammenlegen"
186
+ "Merge JavaScript Files","Merge JavaScript-Dateien"
187
+ "Miscellaneous HTML","Diverses HTML"
188
+ "Miscellaneous Scripts","Verschiedene Scripts"
189
+ "Model collection resource name is not defined.","Modell-Erfassung Quelle-Name ist nicht definiert."
190
+ "Module ""%1$s"" cannot depend on ""%2$s"".","Modul ""%1$s"" kann nicht von ""%2$s"" abhängig sein."
191
+ "Module ""%1$s"" requires module ""%2$s"".","Modul ""%1$s"" benötigt das Modul ""%2$s""."
192
+ "Name","Name"
193
+ "New Design Change","Neue Designänderung"
194
+ "New Store","Neuer Shop"
195
+ "New Store View","Neue Filiale Ansicht"
196
+ "New Website","Neue Webpräsenz"
197
+ "No","Nein"
198
+ "Offloader header","Offloader Titelzeile"
199
+ "PHP SOAP extension is required.","PHP SOAP-Erweiterung erforderlich."
200
+ "Package","Paket"
201
+ "Pagination","Seiteneinteilung"
202
+ "Pagination Frame","Seitennummerierungs-Frame"
203
+ "Pagination Frame Skip","Seitennummerierung Frame Weiter"
204
+ "Parent directory does not exist: %s","Übergeordnetes Verzeichnis existiert nicht: %s"
205
+ "Path ""%value%"" is not available and cannot be used.","Der Pfad ""%value%"" ist nicht verfügbar und kann nicht verwendet werden."
206
+ "Path ""%value%"" is protected and cannot be used.","Der Pfad ""%value%"" ist geschützt und kann nicht verwendet werden."
207
+ "Path ""%value%"" may not include parent directory traversal (""../"", ""..\\).""","Der Pfad ""%value%"" darf keinen Verweis auf das übergeordnete Verzeichnis enthalten (""../"", ""..\)."
208
+ "Please define flag code.","Bitte definieren Sie Flag-Code."
209
+ "Please enter 6 or more characters. Leading or trailing spaces will be ignored.","Bitte geben Sie 6 oder mehr Zeichen ein. Leerzeichen am Anfang oder Ende werden ignoriert."
210
+ "Please enter 7 or more characters. Password should contain both numeric and alphabetic characters.","Bitte geben Sie 7 oder mehr Zeichen ein. Ihr Passwort sollte sowohl Zahlen als auch Buchstaben enthalten."
211
+ "Please enter a number 0 or greater in this field.","Bitte geben Sie eine Zahl in das Feld ein, die 0 oder größer ist."
212
+ "Please enter a number 1 or greater in this field.","Bitte geben sie hier eine Zahl ein, die mindestens 1 beträgt."
213
+ "Please enter a number greater than 0 in this field.","Bitte geben Sie in diesem Feld eine Zahl ein, die größer als 0 ist."
214
+ "Please enter a number lower than 100.","Bitte geben Sie eine Zahl unter 100 ein."
215
+ "Please enter a valid $ amount. For example $100.00.","Bitte geben Sie einen gültigen Betrag in US-Dollar ein. Zum Beispiel 100,00 US-Dollar."
216
+ "Please enter a valid URL Key. For example ""example-page"", ""example-page.html"" or ""anotherlevel/example-page"".","Bitte geben Sie einen gültigen URL-Schlüssel an. Zum Beispiel ""beispiel-seite"", ""beispiel-seite.html"" oder ""andereebene/beispiel-seite""."
217
+ "Please enter a valid URL. For example http://www.example.com or www.example.com","Bitte geben Sie eine gültige URL ein, z.B. http://www.beispiel.com oder www.beispiel.com"
218
+ "Please enter a valid URL. Protocol is required (http://, https:// or ftp://)","Bitte geben Sie eine gültige URL mit dem dazugehörigen Protokoll (http://, https:// oder ftp://) an."
219
+ "Please enter a valid XML-identifier. For example something_1, block5, id-4.","Bitte geben Sie einen gültigen XML-Identifier an. Zum Beispiel irgendwas_1, block5, id-4."
220
+ "Please enter a valid credit card number.","Bitte geben Sie eine gültige Kreditkartennummer ein."
221
+ "Please enter a valid credit card verification number.","Bitte geben Sie eine gültige Kreditkarten-Überprüfungsnummer ein."
222
+ "Please enter a valid date between %s and %s","Bitte geben Sie ein gültiges Datum zwischen %s und %s an."
223
+ "Please enter a valid date equal to or greater than %s","Bitte geben Sie ein gültiges Datum gleich oder größer als %s an."
224
+ "Please enter a valid date less than or equal to %s","Bitte geben Sie ein gültiges Datum kleiner oder gleich %s an."
225
+ "Please enter a valid date.","Bitte geben Sie ein gültiges Datum ein."
226
+ "Please enter a valid day (1-%d).","Bitte geben Sie einen gültigen Tag ein (1-%d)."
227
+ "Please enter a valid email address. For example johndoe@domain.com.","Bitte geben Sie eine gültige E-Mail Adresse ein. Zum Beispiel johndoe@domain.com"
228
+ "Please enter a valid fax number. For example (123) 456-7890 or 123-456-7890.","Bitte geben Sie eine gültige Faxnummer an. Zum Beispiel (123) 456-7890 oder 123-456-7890."
229
+ "Please enter a valid full date","Bitte geben Sie ein vollständiges, gültiges Datum an."
230
+ "Please enter a valid month (1-12).","Bitte geben Sie einen gültigen Monat an (1-12)."
231
+ "Please enter a valid number in this field.","Bitte geben Sie in dieses Feld eine gültige Nummer ein."
232
+ "Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.","Bitte geben Sie eine gültige Telefonnummer ein. Zum Beispiel (123)456-7890 oder 123-456-7890."
233
+ "Please enter a valid social security number. For example 123-45-6789.","Bitte geben Sie eine gültige Sozialversicherungsnummer ein. Zum Beispiel 123-45-6789."
234
+ "Please enter a valid year (1900-%d).","Bitte geben Sie ein gültiges Jahr an (1900-%d)."
235
+ "Please enter a valid zip code.","Bitte geben Sie eine gültige Postleitzahl ein."
236
+ "Please enter a valid zip code. For example 90602 or 90602-1234.","Bitte geben Sie eine gültige Postleitzahl ein. Zum Beispiel 90602 oder 90602-1234."
237
+ "Please enter issue number or start date for switch/solo card type.","Bitte geben Sie Ihre Ausgabenummer oder das Erstellungsdatum Ihrer EC-/Debitkarte an."
238
+ "Please input a valid CSS-length. For example 100px or 77pt or 20em or .5ex or 50%.","Bitte geben Sie eine gültige CSS-Länge an. Zum Beispiel 100px oder 77pt oder 20em oder .5ex oder 50%."
239
+ "Please make sure your passwords match.","Bitte stellen Sie sicher, dass Ihre Passwörter übereinstimmen."
240
+ "Please select State/Province.","Wählen Sie bitte Staat/Bundesland aus."
241
+ "Please select a file","Wählen Sie bitte eine Datei aus"
242
+ "Please select an option.","Bitte wählen Sie eine Option."
243
+ "Please select one of the above options.","Wählen Sie bitte eine der obigen Optionen aus."
244
+ "Please select one of the options.","Bitte wählen Sie eine Option."
245
+ "Please set available and/or protected paths list(s) before validation.","Bitte stellen Sie vor der Bestätigung die Liste(n) der verfügbaren und/oder geschützten Pfade ein."
246
+ "Please specify either a category or a product, or both.","Bitte geben Sie eine Kategorie oder ein Produkt oder beides an."
247
+ "Please use letters only (a-z or A-Z) in this field.","Bitte verwenden Sie ausschließlich Buchstaben (a-z oder A-Z) in diesem Feld."
248
+ "Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas.","Bitte verwenden Sie in diesem Feld nur Zahlen. Vermeiden Sie bitte Leerzeichen und andere Zeichen, wie Punkt oder Komma."
249
+ "Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed.","Bitte verwenden Sie nur Buchstaben (a-z oder A-Z) oder Zahlen (0-9) in diesem Feld. Leerzeichen oder andere Zeichen sind nicht erlaubt."
250
+ "Please use only letters (a-z or A-Z) or numbers (0-9) or spaces and # only in this field.","Bitte verwenden Sie nur Buchstaben (a-z oder A-Z) oder Zahlen (0-9) oder Leerzeichen und Rauten (#) in diesem Feld."
251
+ "Please use only letters (a-z or A-Z), numbers (0-9) or underscore(_) in this field, first character should be a letter.","Geben Sie in dieses Feld bitte nur Buchstaben (a-z oder A-Z), Ziffern (0-9) oder Unterstreichungszeichen(_) ein; als erstes Zeichen ist nur ein Buchstabe erlaubt."
252
+ "Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.","Bitte geben Sie in dieses Feld nur Buchstaben (a-z), Ziffern (0-9) oder Unterstriche (_) ein, das erste Zeichen sollte ein Buchstabe sein."
253
+ "Please use only visible characters and spaces.","Bitte verwenden Sie nur lesbare Zeichen und Leerzeichen."
254
+ "Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.","Bitte verwenden Sie nur dieses Datumsformat: tt/mm/jjjj. Zum Beispiel 17/03/2006 für den 17. März 2006."
255
+ "Please wait, loading...","Bitte warten, lädt..."
256
+ "Polls","Umfragen"
257
+ "Port (25)","Port (25)"
258
+ "Profiler","Profiler"
259
+ "Recovery Link Expiration Period (days)","Verbleibende Gültigkeitsdauer des Wiederherstellungslinks (Tage)"
260
+ "Request Path for Specified Store","Aufrufpfad für angegebenen Shop"
261
+ "Request path length exceeds allowed %s symbols.","Gewünschte Pfadlänge überschreitet die zugelassenen %s Symbole."
262
+ "Requested file may not include parent directory traversal (""../"", ""..\\ notation)""","Die angefragte Datei darf keinen Verweis auf ein übergeordnetes Verzeichnis enthalten (""../"", ""..\notation"")"
263
+ "Requested invalid store ""%s""","Ungültiger Speicher ""%s"" angefragt"
264
+ "Resource is not set.","Ressource ist nicht gesetzt."
265
+ "Retrieve info about current Magento installation","Info über gegenwärtige Magento-Installation einholen"
266
+ "Retrieve store data","Gespeicherte Daten zurückholen"
267
+ "Retrieve store list","Liste der Speicherorte abrufen"
268
+ "Return-Path Email","Antwortpfad E-Mail"
269
+ "Root Category","Hauptkategorie"
270
+ "Sales Representative","Verkaufsmitarbeiter"
271
+ "Sales Representative Contact Email","Verkaufsvertreter Kontakt-E-Mail"
272
+ "Sales Representative Contact Name","Verkaufsvertreter Kontaktname"
273
+ "Save","Speichern"
274
+ "Save Store","Shop speichern"
275
+ "Save Store View","Shopansicht speichern"
276
+ "Save Website","Website speichern"
277
+ "Search Engines Optimization","Suchmaschinenoptimierung"
278
+ "Secure","Sicher"
279
+ "Security","Sicherheit"
280
+ "Select Date","Datum selektieren"
281
+ "Select Media Database","Wählen Sie die Media Datenbank"
282
+ "Sender Email","Absender E-Mail"
283
+ "Sender Name","Name des Absenders"
284
+ "Services","Services"
285
+ "Session Cookie Management","Session-Cookie-Management"
286
+ "Session Lifetime (seconds)","Session-Lebenszeit (Sekunden)"
287
+ "Session Validation Settings","Einstellungen für die Gültigkeit der Session"
288
+ "Set Return-Path","Antwortpfad setzen"
289
+ "Set as Default","Als Standard festlegen"
290
+ "Skin (Images / CSS)","Skin (Bilder / CSS)"
291
+ "Small Logo Image Src","Kleines Logo Image Src"
292
+ "Sort Order","Sortierfolge"
293
+ "Specified date/time ""%1$s"" do not match format ""%2$s"".","Angegebes Datum/Uhrzeit ""%1$s"" entspricht nicht dem Format ""%2$s""."
294
+ "Start date cannot be greater than end date.","Das Anfangsdatum darf nicht nach dem Enddatum liegen."
295
+ "Startup Page","Startseite"
296
+ "Status","Status"
297
+ "Storage Configuration for Media","Speicherkonfiguration für Media"
298
+ "Store","Shop"
299
+ "Store API","Speicher-API"
300
+ "Store Contact Address","Store Kontaktadresse"
301
+ "Store Contact Information","Store Kontaktdaten"
302
+ "Store Contact Telephone","Store Telefon"
303
+ "Store Email Addresses","Store E-Mail-Adressen"
304
+ "Store Information","Store Information"
305
+ "Store Name","Store Name"
306
+ "Store View","Store-Ansicht"
307
+ "Store View Information","StoreView Information"
308
+ "Store View Name","Name der Shop-View"
309
+ "Store view doesn't exist","StoreView existiert nicht"
310
+ "Store with the same code","Store mit identischem Identifikationscode"
311
+ "System","System"
312
+ "System Log File Name","Name der Systemprotokolldatei"
313
+ "Template Path Hints","Anleitungen für den Vorlagenpfad"
314
+ "Template Settings","Template-Einstellungen"
315
+ "Template Variables","Vorlagenvariablen"
316
+ "Templates","Vorlagen"
317
+ "Text length does not satisfy specified text range.","Textlänge entspricht nicht dem angegebenen Textbereich."
318
+ "The %s you entered is invalid. Please make sure that it follows ""http://domain.com/"" format.","Das von Ihnen angegebene %s ist ungültig. Bitte stellen Sie sicher, dass Ihre Eingabe dem ""http://domain.com/""-Format entspricht."
319
+ "The From Date value should be less than or equal to the To Date value.","Der ""von Datum""-Wert sollte kleiner oder gleich dem ""bis Datum""-Wert sein."
320
+ "The store code may contain only letters (a-z), numbers (0-9) or underscore(_), the first character must be a letter","Der Store-Code darf nur Buchstaben (a-z), Ziffern (0-9) oder Unterstriche(_) umfassen, das erste Zeichen muss ein Buchstabe sein"
321
+ "The store does not exist","Der Shop existiert nicht."
322
+ "The store has been deleted.","Der Store wurde gelöscht."
323
+ "The store has been saved.","Der Shop wurde gespeichert."
324
+ "The store view has been deleted.","Die Store-Ansicht wurde gelöscht."
325
+ "The store view has been saved","Die Store-Ansicht wurde gespeichert"
326
+ "The template Name must not be empty.","Der Vorlagenname darf nicht leer bleiben."
327
+ "The value is not within the specified range.","Der Wert liegt nicht im angegebenen Bereich."
328
+ "The website does not exist.","Die Website ist nicht vorhanden."
329
+ "The website has been deleted.","Die Website wurde gelöscht."
330
+ "The website has been saved.","Die Website wurde gespeichert."
331
+ "Themes","Themes"
332
+ "This category and all its child elements","Diese Kategorie und alle Kindelemente"
333
+ "This category and its child categories only","Diese Kategorie und nur ihre Unterkategorien"
334
+ "This category and its products only","Nur diese Kategorie und ihre Produkte"
335
+ "This category only","Nur diese Kategorie"
336
+ "This date is a required value.","Dieses Datum ist ein benötigter Wert."
337
+ "This is a required field.","Dies ist ein Pflichtfeld."
338
+ "This store cannot be deleted.","Dieser Store kann nicht gelöscht werden."
339
+ "This store view cannot be deleted.","Diese StoreView kann nicht gelöscht werden."
340
+ "This website cannot be deleted.","Diese Website kann nicht gelöscht werden."
341
+ "This will be displayed just before body closing tag.","Dies wird vor dem schließenden Body-Tag ausgegeben."
342
+ "This will be included before head closing tag in page HTML.","Dieses wird vor dem schließenden Head-Tag im HTML der Seite eingefügt."
343
+ "Timezone","Zeitzone"
344
+ "Title Prefix","Titel Prefix"
345
+ "Title Suffix","Endung für den Titel"
346
+ "Transactional Emails","Transaktions-E-Mails"
347
+ "Translate Inline","Inline übersetzen"
348
+ "Translate, blocks and other output caches should be disabled for both frontend and admin inline translations.","Übersetzen, Blöcke und andere Ausgangs-Caches sollten sowohl für Frontend und Admin-Inline-Übersetzungen deaktiviert werden."
349
+ "Translations","Übersetzungen"
350
+ "Two and more slashes together are not permitted in request path","Zwei und mehr zusammenhängende Schrägstriche sind in diesem Pfad nicht zulässig"
351
+ "Two and more slashes together are not permitted in url rewrite suffix","Zwei und mehr zusammenhängende Schrägstriche sind im URL-Rewrite-Suffix nicht zulässig"
352
+ "Unable to create directory: %s","Verzeichnis kann nicht angelegt werden: %s"
353
+ "Unable to delete store view. Please, try again later.","Dieser StoreView kann nicht gelöscht werden. Versuchen Sie es später noch einmal."
354
+ "Unable to delete store. Please, try again later.","Shop kann nicht gelöscht werden. Bitte versuchen Sie es später noch einmal."
355
+ "Unable to delete website. Please, try again later.","Webseite konnte nicht gelöscht werden. Bitte versuchen Sie es später noch einmal."
356
+ "Unable to proceed. Please, try again","Funktion kann nicht ausgeführt werden. Bitte versuchen Sie es noch einmal."
357
+ "Unable to proceed. Please, try again.","Vorgang konnte nicht ausgeführt werden. Bitte versuchen Sie es später noch einmal."
358
+ "Unable to save file ""%s"" at ""%s""","Datei ""%s"" kann nicht unter ""%s"" gespeichert werden."
359
+ "Unable to save file: %s","Datei kann nicht gespeichert werden: %s"
360
+ "Unknown old style column type definition: {$definition}.","Unbekannte Definition des Spaltentyps im alten Stil: {definition}."
361
+ "Unknown scope ""%s"".","Unbekannter Anwendungsbereich ""%s""."
362
+ "Unsecure","Ungesichert"
363
+ "Url Options","URL Optionen"
364
+ "Use Custom Admin Path","Verwenden Sie den angepassten Admin-Pfad"
365
+ "Use Custom Admin URL","Individuelle Admin URL nutzen"
366
+ "Use HTTP Only","Verwende nur HTTP"
367
+ "Use SID on Frontend","Verwende Session-ID (SID) im Shopbereich"
368
+ "Use Secure URLs in Admin","Verwende sichere URL im Administrationsbereich"
369
+ "Use Secure URLs in Frontend","Verwende sichere URL im Shopbereich"
370
+ "Use Web Server Rewrites","Webserver Rewrites verwenden"
371
+ "VAT Number","MwSt.-Nummer"
372
+ "Validate HTTP_USER_AGENT","Überprüfe HTTP_USER_AGENT"
373
+ "Validate HTTP_VIA","Überprüfe HTTP_VIA"
374
+ "Validate HTTP_X_FORWARDED_FOR","Überprüfe HTTP_X_FORWARDED_FOR"
375
+ "Validate REMOTE_ADDR","REMOTE_ADDR validieren"
376
+ "Validation has failed.","Prüfung fehlgeschlagen."
377
+ "Values less than 60 are ignored. Note that changes will apply after logout.","Werte kleiner als 60 werden ignoriert. Beachten Sie, dass die Änderungen nach dem Abmelden wirksam werden."
378
+ "Variable Code must be unique.","Variabler Code muß eindeutig sein."
379
+ "Warning! Enabling this feature is not recommended on production environments because it represents a potential security risk.","Warnung! Die Aktivierung dieser Funktion ist im Arbeitsbereich nicht empfohlen, da sie ein potenzielles Sicherheitsrisiko darstellt."
380
+ "Web","Web"
381
+ "Website","Website"
382
+ "Website Information","Webseiten-Information"
383
+ "Website Name","Webseiten-Name"
384
+ "Website code may only contain letters (a-z), numbers (0-9) or underscore(_), the first character must be a letter","Der Website-Code darf nur Buchstaben (a-z), Zahlen (0-9) oder Unterstrich (_) enthalten, das erste Zeichen muss ein Buchstabe sein."
385
+ "Website with the same code","Webseite mit identischem Identifikationscode"
386
+ "Weekend Days","Wochenende"
387
+ "Welcome Text","Willkommenstext"
388
+ "Wrong file info format","Falsches Format Dateiinfo"
389
+ "Wrong number of arguments for %s","Falsche Anzahl von Argumenten für %s"
390
+ "Wrong old style column type definition: {$definition}.","Falsche Spaltenartdefinition alter Art: {$definition}."
391
+ "Yes","Ja"
392
+ "You will have to log in after you save your custom admin path.","Nachdem Sie Ihren angepassten Admin-Pfad gespeichert haben, müssen Sie einloggen."
393
+ "Your design change for the specified store intersects with another one, please specify another date range.","Ihre Design-Änderung für den ausgewählten Store überschneidet sich mit einer anderen, bitte wählen Sie einen anderen Zeitraum."
394
+ "database ""%s""","Datenbank ""%s"""
app/locale/de_DE/Mage_Cron.csv ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "10 minutes","10 Minuten"
2
+ "15 minutes","15 Minuten"
3
+ "20 minutes","20 Minuten"
4
+ "30 minutes","30 Minuten"
5
+ "5 minutes","5 Minuten"
6
+ "Cron (Scheduled Tasks) - all the times are in minutes","Cron (Zeitgesteuerte Aufgaben) - alle Zeitangaben in Minuten"
7
+ "Daily","Täglich"
8
+ "Failure History Lifetime","Aufbewahrung des Fehlerverlaufs"
9
+ "For correct URLs generated during cron runs please make sure that Web > Secure and Unsecure Base URLs are explicitly set.","Um sicher zu stellen, dass URLs, die durch Cron generiert werden, korrekt sind, achten Sie bitte darauf dass die Web > Secure and Unsecure Base URLs explizit konfiguriert sind."
10
+ "Generate Schedules Every","Generiere Abläufe alle"
11
+ "History Cleanup Every","Verwerfen des Verlaufs alle"
12
+ "Hourly","Stündlich"
13
+ "Invalid callback: %s::%s does not exist","Invalider Callback: %s::%s existiert nicht"
14
+ "Invalid model/method definition, expecting ""model/class::method"".","Ungültige model/method-Definition, erwarte ""model/class::method""."
15
+ "Minute Intervals","Minutenintervalle"
16
+ "Missed if Not Run Within","Ausgelassen wenn nicht ausgeführt innerhalb von"
17
+ "Monthly","Monatlich"
18
+ "No callbacks found","Keine Callbacks gefunden"
19
+ "Schedule Ahead for","Plane im Voraus für"
20
+ "Success History Lifetime","Aufbewahrung des Verlaufs geglückter Ausführungen"
21
+ "Too late for the schedule.","Zu spät für diese Ausführung."
22
+ "Unable to delete the cron task.","Cron-Job kann nicht gelöscht werden."
23
+ "Unable to save the cron expression.","Cron-Ausdruck konnte nicht gespeichert werden."
24
+ "Weekly","Wöchentlich"
app/locale/de_DE/Mage_CurrencySymbol.csv ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ "Currency","Währung"
2
+ "Custom currency symbols were applied successfully.","Benutzerdefinierte Währungssymbole wurden erfolgreich angewandt."
3
+ "Manage Currency","Währung verwalten"
4
+ "Manage Currency Rates","Währungskurse verwalten"
5
+ "Rates","Kurse"
6
+ "Save Currency Symbols","Währungssymbole speichern"
7
+ "Symbol","Symbol"
8
+ "Symbols","Symbole"
9
+ "System","System"
10
+ "Use Standard","Standard verwenden"
app/locale/de_DE/Mage_Customer.csv ADDED
@@ -0,0 +1,470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " or ","oder"
2
+ "'%value%' appears to be a DNS hostname but cannot extract TLD part","'%value%' ist offenbar ein DNS-Hostname, aber die Hauptdomäne (TLD) lässt sich nicht extrahieren."
3
+ "'%value%' appears to be a DNS hostname but cannot match TLD against known list","%value%' ist offenbar ein DNS-Hostname, aber die Hauptdomäne (TLD) lässt sich nicht unter den bekannten Einträgen finden."
4
+ "'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'","%value%' ist offenbar ein DNS-Hostname, aber die Hauptdomäne (TLD) entspricht keinem Hostnamen -Schema für TLD '%tld%'."
5
+ "'%value%' appears to be a DNS hostname but contains a dash in an invalid position","%value%' ist offenbar ein DNS-Hostname mit einem Strich an einer ungültigen Stelle."
6
+ "'%value%' appears to be a DNS hostname but the given punycode notation cannot be decoded","'%value%' scheint ein DNS-Hostname zu sein, aber die angegebene Punycode-Notation konnte nicht entschlüsselt werden."
7
+ "'%value%' appears to be a local network name but local network names are not allowed","'%value%' scheint der Name eines lokalen Netzwerks zu sein. Namen lokaler Netzwerke sind allerdings nicht erlaubt."
8
+ "'%value%' appears to be an IP address, but IP addresses are not allowed","'%value%' scheint eine IP-Adresse zu sein. IP-Adressen sind allerdings nicht erlaubt."
9
+ "'%value%' does not appear to be a valid local network name","'%value%' scheint kein gültiger Name für ein lokales Netzwerk zu sein."
10
+ "* Required Fields","* Notwendige Felder"
11
+ "ALL GROUPS","ALLE GRUPPEN"
12
+ "Account Dashboard","Konto Dashboard"
13
+ "Account Information","Kontoinformationen"
14
+ "Account Sharing Options","Optionen zum Kontozugriff"
15
+ "Account confirmation is required. Please, check your e-mail for confirmation link. To resend confirmation email please <a href=""%s"">click here</a>.","Sie müssen Ihr Konto zunächst bestätigen. Bitte überprüfen Sie Ihr Postfach, ob Sie den Bestätigungslink erhalten haben. Falls die Bestätigungsmail noch einmal gesendet werden soll, <a href=""%s"">klicken Sie bitte hier</a>."
16
+ "Action","Aktion"
17
+ "Add New Address","Neue Adresse hinzufügen"
18
+ "Add New Customer","Neuen Kunden hinzufügen"
19
+ "Add New Customer Group","Neue Kundengruppe hinzufügen"
20
+ "Added From","Hinzugefügt von"
21
+ "Additional Address Entries","Zusätzliche Einträge von Adressen"
22
+ "Address","Adresse"
23
+ "Address Book","Adressbuch"
24
+ "Address Books","Adressbücher"
25
+ "Address Information","Adressinformation"
26
+ "Address Templates","Adressvorlagen (Templates)"
27
+ "Addresses","Adressen"
28
+ "Admin","Admin"
29
+ "All","Alle"
30
+ "All Store Views","Alle Ansichten des Geschäfts"
31
+ "All countries","Alle Länder"
32
+ "Always optional.","Immer fakultativ"
33
+ "Amount","Summe"
34
+ "An error occurred while deleting the address.","Beim Löschen der Adresse ist ein Fehler aufgetreten."
35
+ "An error occurred while retrieving the option value: %s.","Ein Fehler ist aufgetreten beim Auslesen des Einstellungswerts: %s."
36
+ "An error occurred while saving the collection, aborting. Error: %s","Ein Fehler ist beim Speichern der Sammlung aufgetreten. Abbrechen. Fehler: %s"
37
+ "An invalid option ID is specified for %s (%s), skipping the record.","Eine ungültige Options-ID wurde für %s angegeben (%s). Eintrag wird übersprungen."
38
+ "Approved","Bestätigt"
39
+ "Are you sure that you want to remove this item?","Sind Sie sicher, dass Sie den Eintrag überspringen wollen?"
40
+ "Are you sure you want to cancel adding of this address?","Sind Sie sicher, dass Sie das Hinzufügen dieser Adresse abbrechen wollen?"
41
+ "Are you sure you want to delete this address?","Sind Sie sicher, dass Sie diese Adresse löschen wollen?"
42
+ "Are you sure?","Sind Sie sicher?"
43
+ "Array of Entity collections is expected.","Ein Array von Entitätssammlungen wurde erwartet."
44
+ "Assign a Customer Group","Kundengruppe zuordnen."
45
+ "Average Sale","Durchschnittsverkauf"
46
+ "Back","Zurück"
47
+ "Back - link to the previously viewed page","Zurück - Link zur vorher angeschauten Seite"
48
+ "Back to Login","Zurück zur Anmeldung"
49
+ "Bad request.","Fehlerhafter Aufruf."
50
+ "Based on the VAT ID, the customer would belong to the Customer Group %s.","Anhand der Umsatzsteuer-Identifikationsnummer gehört der Kunde in Kundengruppe %s."
51
+ "Bill to Name","Rechnung auf Namen"
52
+ "Bought From","Gekauft von"
53
+ "By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.","Wenn Sie sich anmelden, können Sie den Bezahlprozess schneller durchlaufen, mehrere Lieferadressen speichern, Ihre Bestellungen in Ihrem Konto anschauen und verfolgen und vieles mehr."
54
+ "CSV","CSV"
55
+ "Cancel","Abbrechen"
56
+ "Cannot save a new password.","Neues Passwort konnte nicht gespeichert werden."
57
+ "Cannot save address.","Adresse speichern nicht möglich."
58
+ "Cannot save the customer.","Speichern des Kunden nicht möglich."
59
+ "Cannot share customer accounts globally because some customer accounts with the same emails exist on multiple websites and cannot be merged.","Das Kundenkonto kann nicht global geteilt werden, da Kundenkonten mit den gleichen E-Mails bereits auf verschiedenen Websites existieren und nicht zusammengeführt werden können."
60
+ "Change Account Password","Kontopasswort ändern."
61
+ "Change Billing Address","Rechnungsadresse ändern"
62
+ "Change Password","Passwort ändern"
63
+ "Change Shipping Address","Versandadresse ändern"
64
+ "City","Stadt"
65
+ "Company","Firma"
66
+ "Config","Konfig."
67
+ "Configure","Konfigurieren"
68
+ "Confirm New Password","Neues Passwort bestätigen"
69
+ "Confirm Password","Passwort bestätigen"
70
+ "Confirmation Link Email","Bestätigungslink-E-Mail"
71
+ "Confirmed","Bestätigt"
72
+ "Contact Information","Kontaktinformation"
73
+ "Continue Shopping","Einkauf fortfahren"
74
+ "Country","Land"
75
+ "Create","Erstellen"
76
+ "Create New Account Options","Neue Kontoptionen erstellen"
77
+ "Create New Customer Account","Neues Kundenkonto erstellen"
78
+ "Create Order","Bestellung anlegen"
79
+ "Create an Account","Konto erstellen"
80
+ "Create customer","Kunden erstellen"
81
+ "Create customer address","Kundenadresse erstellen"
82
+ "Current Password","Aktuelles Passwort"
83
+ "Customer","Kunde"
84
+ "Customer API","Kunden-API"
85
+ "Customer Account Edit Form","Kundenkonto-Editierformular"
86
+ "Customer Account Login Form","Kundenkonto-Anmeldeformular"
87
+ "Customer Account Logout Success","Kundenkonto erfolgreich abgemeldet"
88
+ "Customer Account Registration Form","Kundenkonto-Registrierungsformular"
89
+ "Customer Addresses","Kundenadressen"
90
+ "Customer Configuration","Kundenkonfiguration"
91
+ "Customer Forgot Password Form","Kunde-Hat-Passwort-Vergessen-Formular"
92
+ "Customer Group","Kundengruppe"
93
+ "Customer Groups","Kundengruppen"
94
+ "Customer Information","Konteninformation"
95
+ "Customer Login","Kundenanmeldung"
96
+ "Customer My Account (All Pages)","Mein Kundenkonto (alle Seiten)"
97
+ "Customer My Account Address Book","Mein Kundenkonto Adressbuch"
98
+ "Customer My Account Address Edit Form","Mein Kundenkonto Adresseneditierformular"
99
+ "Customer My Account Dashboard","Mein Kundenkonto Dashboard"
100
+ "Customer Since","Kunde Seit"
101
+ "Customer View","Kundenansicht"
102
+ "Customer collection expected.","Kundensammlung erwartet"
103
+ "Customer email is required","Kunden-E-Mail-Adresse ist erforderlich"
104
+ "Customer website ID must be specified when using the website scope","Kunden-Webseiten-Identifikation muss bei Nutzung der Seite angegeben werden"
105
+ "Customer will stay on the current page if ""No"" is selected.","Kunden werden auf der derzeitigen Seite bleiben, wenn ""Nein"" ausgewählt ist."
106
+ "Customers","Kunden"
107
+ "Customers Only","Nur für Kunden"
108
+ "Customers Section","Kundenbereich"
109
+ "DD","DD"
110
+ "Date","Datum"
111
+ "Date Added","Hinzugefügt am"
112
+ "Date of Birth","Geburtstag"
113
+ "Day","Tag"
114
+ "Days in Wishlist","Tage in der Wunschliste"
115
+ "Default Addresses","Standardadressen"
116
+ "Default Billing Address","Standard-Rechnungsadresse"
117
+ "Default Email Domain","Standard-E-Mail-Domäne"
118
+ "Default Group","Standardgruppe"
119
+ "Default Shipping Address","Standard-Lieferadresse"
120
+ "Default Value for Disable Automatic Group Changes Based on VAT ID","Standardwert für Automatische Gruppenänderungen anhand der Umsatzsteuer-Identifikationsnummer deaktivieren"
121
+ "Default Welcome Email","Standard-Begrüßungs-E-Mail"
122
+ "Delete","Löschen"
123
+ "Delete Address","Adresse löschen"
124
+ "Delete Customer","Kunden löschen"
125
+ "Delete Customer Group","Kundengruppe löschen"
126
+ "Delete customer","Kunde löschen"
127
+ "Delete customer address","Kundenadresse löschen"
128
+ "Deleted Stores","Stores löschen"
129
+ "Details","Details"
130
+ "Disabled","Deaktiviert"
131
+ "Edit","Bearbeiten"
132
+ "Edit Account Info","Kontodaten bearbeiten"
133
+ "Edit Account Information","Kontodaten bearbeiten"
134
+ "Edit Address","Adresse bearbeiten"
135
+ "Edit Address Entry","Adresseintrag bearbeiten"
136
+ "Edit Customer Group ""%s""","Kundengruppe ""%s"" bearbeiten"
137
+ "Edit Customer Groups","Kundengruppen bearbeiten"
138
+ "Edit Customer's Address","Kundenadresse bearbeiten"
139
+ "Edit Group","Gruppe bearbeiten"
140
+ "Edit Newsletters","Newsletters bearbeiten"
141
+ "Email","E-Mail"
142
+ "Email Address","E-Mail-Adresse"
143
+ "Email Sender","E-Mail-Absender"
144
+ "Email:","E-Mail:"
145
+ "Enable Automatic Assignment to Customer Group","Automatische Zuordnung zur Kundengruppe aktivieren"
146
+ "Entity collection is expected.","Sammlung der Entität wird erwartet."
147
+ "Excel XML","Excel-XML"
148
+ "Failed to confirm customer account.","Bestätigung des Kundenkontos fehlgeschlagen."
149
+ "Fax","Fax"
150
+ "First Name","Vorname"
151
+ "Forgot Email Template","E-mail Template vergessen"
152
+ "Forgot Password","Passwort vergessen"
153
+ "Forgot Your Password","Passwort vergessen"
154
+ "Forgot Your Password?","Passwort vergessen?"
155
+ "Forgot and Remind Email Sender","Erinnerungs-E-Mail Absender"
156
+ "Form Fields Before","Vorheriges Dokumentfeld"
157
+ "From your My Account Dashboard you have the ability to view a snapshot of your recent account activity and update your account information. Select a link below to view or edit information.","Von Meinem Konto Dashboard aus, können Sie einen Schnappschuss Ihrer aktuellen Kontoaktivität sehen und Ihre Kontoinformationen aktualisieren. Wählen Sie den nachfolgenden Link um Informationen zu sehen oder zu aktualisieren."
158
+ "Gender","Geschlecht"
159
+ "Gender is required.","Das Geschlecht muss angegeben werden."
160
+ "General Subscription","Allgemeines Abonnement"
161
+ "Generate Human-Friendly Customer ID","Menschenfreundliche Kunden-ID entwickeln"
162
+ "Global","Global"
163
+ "Group","Gruppe"
164
+ "Group Information","Guppeninformation"
165
+ "Group Name","Guppenname"
166
+ "Group for Invalid VAT ID","Gruppe für ungültige Umsatzsteuer-Identifikationsnummer"
167
+ "Group for Valid VAT ID - Domestic","Gruppe für gültige Umsatzsteuer-Identifikationsnummer - Inland"
168
+ "Group for Valid VAT ID - Intra-Union","Gruppe für gültige Umsatzsteuer-Identifikationsnummer - innerhalb der EU"
169
+ "Guest","Gast"
170
+ "HTML","HTML"
171
+ "Hello, %s!","Hallo %s!"
172
+ "ID","ID"
173
+ "IP Address","IP Adresse"
174
+ "If you believe this is an error, please contact us at %s","Sollte ihrer Meinung nach ein Fehler vorliegen, wenden sie sich bitte an uns unter %s"
175
+ "If you have an account with us, please log in.","Wenn Sie bei uns ein Benutzerkonto besitzen, melden Sie sich bitte an."
176
+ "Invalid attribute option specified for attribute %s (%s), skipping the record.","Ungültige Option für Attribut %s definiert (%s), Eintrag wird übersprungen."
177
+ "Invalid attribute set specified, skipping the record.","Ungültiges Attributset definiert, Eintrag wird übersprungen."
178
+ "Invalid billing address for (%s)","Ungültige Rechnungsanschrift für (%s)"
179
+ "Invalid current password","Das aktuelle Passwort ist ungültig"
180
+ "Invalid customer data","Ungültige Kundendaten"
181
+ "Invalid email address ""%s"".","Ungültige E-Mail-Adresse ""%s""."
182
+ "Invalid email address.","Ungültige Email-Adresse."
183
+ "Invalid login or password.","Anmeldername oder Passwort ungültig."
184
+ "Invalid password reset token.","Ungültiger Token für das Resetten des Passworts."
185
+ "Invalid shipping address for (%s)","Ungültige Lieferanschrift für (%s)"
186
+ "Invalid store specified, skipping the record.","Ungültiger Store definiert, Eintrag wird übersprungen."
187
+ "Invalid website, skipping the record, line: %s","Ungültige Webseite, Datensatz überspringen, Zeile: %s"
188
+ "Last Activity","Letzte Aktivität"
189
+ "Last Date Subscribed","Zuletzt abonniert"
190
+ "Last Date Unsubscribed","Zuletzt gekündigt"
191
+ "Last Name","Nachname"
192
+ "Last URL","Letzte URL"
193
+ "Leave empty for default (15 minutes).","Für Standard (15 Minuten) leer lassen."
194
+ "Leave empty for default (2). Valid range: 1-4","Für Standard (2) leer lassen. Gültige Werte: 1-4"
195
+ "Lifetime Sales","Gesamteinnahmen"
196
+ "Log In","Anmelden"
197
+ "Log Out","Abmelden"
198
+ "Login","Einloggen"
199
+ "Login Information","Login Informationen"
200
+ "Login Options","Login Optionen"
201
+ "Login and password are required.","Login und Passwort werden benötigt."
202
+ "Login or Create an Account","Anmelden oder Benutzerkonto erstellen"
203
+ "MM","MM"
204
+ "Manage Addresses","Adressen verwalten"
205
+ "Manage Customers","Kunden verwalten"
206
+ "Maximum length must be less then %s symbols","Die Länge darf nicht mehr als %s Zeichen betragen"
207
+ "Missing email, skipping the record, line: %s","E-Mail fehlt, Datensatz überspringen, Zeile: %s"
208
+ "Missing email, skipping the record.","E-Mail fehlt, überspringe Eintrag."
209
+ "Missing first name, skipping the record, line: %s","Firmenanschrift fehlt, Datensatz überspringen, Zeile: %s"
210
+ "Missing firstname, skipping the record.","Vorname fehlt, überspringe Eintrag."
211
+ "Missing last name, skipping the record, line: %s","Nachname fehlt, Datensatz überspringen, Zeile: %s"
212
+ "Missing lastname, skipping the record.","Nachname fehlt, überspringe Eintrag."
213
+ "Missing website, skipping the record, line: %s","Webseite fehlt, Datensatz überspringen, Zeile: %s"
214
+ "Month","Monat"
215
+ "My Account","Mein Konto"
216
+ "My Account Wrapper","Meine Account-Verpackung"
217
+ "My Dashboard","Meine Startseite"
218
+ "My Orders","Meine Bestellungen"
219
+ "Name","Name"
220
+ "Name and Address Options","Namen- und Adressoptionen"
221
+ "Never","Niemals"
222
+ "New Address","Neue Adresse"
223
+ "New Address Entry","Neuer Adresseintrag"
224
+ "New Customer","Neuer Kunde"
225
+ "New Customer Address","Neue Kundenadresse"
226
+ "New Customer Group","Neue Kundengruppe"
227
+ "New Customer Groups","Neue Kundengruppen"
228
+ "New Customers","Neue Kunden"
229
+ "New Group","Neue Gruppe"
230
+ "New Password","Neues Passwort"
231
+ "New account","Neues Konto"
232
+ "New account confirmation key","Neuer Kontobestätigungscode"
233
+ "New account confirmed","Neues Konto bestätigt"
234
+ "New password field cannot be empty.","Das Feld für das neue Passwort kann nicht leer sein."
235
+ "Newsletter","Newsletter"
236
+ "Newsletter Finish","Newsletter Ende"
237
+ "Newsletter Information","Newsletter Information"
238
+ "Newsletter Received","Newsletter empfangen"
239
+ "Newsletter Start","Newsletter Start"
240
+ "Newsletter Subscription","Newsletter abonnieren"
241
+ "Newsletters","Newsletter"
242
+ "No Items Found","Keine Objekte gefunden"
243
+ "No Newsletter Found","Kein Newsletter gefunden"
244
+ "No customer collections found","Keine Kundensammlungen gefunden"
245
+ "No item specified.","Kein Objekt angegeben."
246
+ "Not Sent","Nicht gesendet"
247
+ "Not confirmed, can login","Nicht bestätigt, kann sich anmelden"
248
+ "Not confirmed, cannot login","Nicht bestätigt, kann sich nicht anmelden"
249
+ "Number of Lines in a Street Address ","Zeilenzahl in einer Postadresse"
250
+ "Offline","Offline"
251
+ "Online","Online"
252
+ "Online Customers","Online-Kunden"
253
+ "Online Customers Options","Online-Kunden-Optionen"
254
+ "Online Minutes Interval","Online-Minuten-Intervall"
255
+ "Order #","Bestellung #"
256
+ "Order Total","Gesamtsumme Bestellung"
257
+ "Orders","Aufträge"
258
+ "PDF","PDF"
259
+ "Password","Passwort"
260
+ "Password Management","Passwortverwaltung"
261
+ "Password Options","Passwortoptionen"
262
+ "Password forgotten","Passwort vergessen"
263
+ "Password:","Passwort:"
264
+ "Paused","Pausiert"
265
+ "Pending","Ausstehend"
266
+ "Per Website","Pro Webseite"
267
+ "Personal Information","Persönliche Informationen"
268
+ "Please enter a number 1 or greater in this field.","Bitte geben sie hier eine Zahl ein, die mindestens 1 beträgt."
269
+ "Please enter a valid date between %s and %s at %s.","Bitte geben sie ein gültiges Datum zwischen %s und %s zu %s ein."
270
+ "Please enter a valid date equal to or greater than %s at %s.","Bitte geben sie ein gültiges Datum gleich oder größer als %s zu %s ein."
271
+ "Please enter a valid date less than or equal to %s at %s.","Bitte geben sie ein gültiges Datum gleich oder kleiner als %s zu %s ein."
272
+ "Please enter the city.","Bitte geben Sie die Stadt ein."
273
+ "Please enter the country.","Bitte geben Sie das Land ein."
274
+ "Please enter the first name.","Bitte geben Sie den Vornamen ein."
275
+ "Please enter the last name.","Bitte geben Sie den Nachnamen ein."
276
+ "Please enter the state/province.","Bitte geben Sie das Bundesland an."
277
+ "Please enter the street.","Bitte geben Sie die Straße ein."
278
+ "Please enter the telephone number.","Bitte geben Sie die Telefonnummer ein."
279
+ "Please enter the zip/postal code.","Bitte geben Sie die Postleitzahl an."
280
+ "Please enter your email address below. You will receive a link to reset your password.","Bitte geben Sie Ihre Email-Adresse ein. Sie erhalten dann einen Link mit dem Sie Ihr Passwort zurücksetzen können."
281
+ "Please enter your email below and we\'ll send you confirmation link for it.","Bitte geben Sie unten Ihre E-Mail-Adresse ein, und wir senden Ihnen einen Bestätigungslink."
282
+ "Please enter your email.","Bitte geben Sie Ihre E-Mail-Adresse ein."
283
+ "Please make sure your passwords match.","Bitte stellen Sie sicher, dass die Passwörter übereinstimmen."
284
+ "Please select a website which contains store view","Bitte wählen sie eine Webseite mit Store-Ansicht aus"
285
+ "Please select region, state or province","Bitte Region, Staat oder Provinz auswählen"
286
+ "Please, check your email for confirmation key.","Bitte überprüfen Sie Ihre E-Mails auf den Bestätigungscode."
287
+ "Prefix Dropdown Options","Vorwahl-Auswahlboxoptionen"
288
+ "Price","Preis"
289
+ "Product","Produkt"
290
+ "Product ID","Produkt-ID"
291
+ "Product Name","Produktname"
292
+ "Product Reviews","Produktreviews"
293
+ "Product Tags","Produkttags"
294
+ "Purchase On","Gekauft am"
295
+ "Purchased On","Gekauft am"
296
+ "Qty","Anzahl"
297
+ "Recent Orders","Letzte Bestellungen"
298
+ "Records for %s store found.","Einträge für %s Laden gefunden."
299
+ "Recovery Link Expiration Period (days)","Verbleibende Gültigkeitsdauer des Wiederherstellungslinks (Tage)"
300
+ "Redirect Customer to Account Dashboard after Logging in","Kunden nach Login zur Kontostartseite umleiten"
301
+ "Refunded","Rückerstattet"
302
+ "Register","Registrieren"
303
+ "Registered Customers","Registrierte Kunden"
304
+ "Remind Email Template","Vorlage Erinnerungsmail"
305
+ "Remind Password","An Passwort erinnern"
306
+ "Remove","Entfernen"
307
+ "Require Emails Confirmation","E-Mail-Bestätigung nötig"
308
+ "Reset a Password","Passwort zurücksetzen"
309
+ "Retrieve address data","Adressdaten abfragen"
310
+ "Retrieve address info","Adressinfo abfragen"
311
+ "Retrieve customer addresses","Kundenadressen abfragen"
312
+ "Retrieve customer data","Kundendaten abfragen"
313
+ "Retrieve customer groups","Kundengruppen abfragen"
314
+ "Retrieve customer info","Kundeninfo abfragen"
315
+ "Retrieve customers","Kunden abfragen"
316
+ "Retrieve your confirmation link here","Bestätigungslink hier anfordern"
317
+ "Retrieve your password here","Passwort hier anfordern"
318
+ "SKU","SKU"
319
+ "Sales Statistics","Verkaufsstatistiken"
320
+ "Save","Speichern"
321
+ "Save Address","Adresse speichern"
322
+ "Save Customer","Kunden speichern"
323
+ "Save Customer Group","Kundengruppe speichern"
324
+ "Save Password","Passwort speichern"
325
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
326
+ "Saved %d record(s)","%d gespeicherte(r) Eintrag/Einträge"
327
+ "Semicolon (;) separated values.<br/>Put semicolon in the beginning for empty first option.<br/>Leave empty for open text field.","Semikolon (;) getrennte Werte.<br/>Setzen Sie ein Semikolon an den Anfang für eine leere erste Option.<br/>Leer lassen für ein offenes Textfeld."
328
+ "Send Auto-Generated Password","Automatisch generiertes Passwort zusenden"
329
+ "Send From","Senden von"
330
+ "Send Welcome Email","Willkommen eMail senden"
331
+ "Send Welcome Email after Confirmation","Willkommen eMail nach Bestätigung senden"
332
+ "Send confirmation link","Bestätigungslink senden"
333
+ "Sending","Wird gesendet"
334
+ "Sent","Gesendet"
335
+ "Session Start Time","Startzeit der Session"
336
+ "Set as Default Billing Address","Rechnungsadresse als Vorgabe einstellen"
337
+ "Set as Default Shipping Address","Versandadresse als Vorgabe einstellen"
338
+ "Share Customer Accounts","Kundenkonten gemeinsam nutzen"
339
+ "Shipped to First Name","Versendet an Vorname"
340
+ "Shipped to Last Name","Versendet an Nachname"
341
+ "Shipped to Name","Versendet an Name"
342
+ "Shopping Cart","Warenkorb"
343
+ "Shopping Cart - %d item(s)","Einkaufswagen - %d Artikel"
344
+ "Shopping Cart of %1$s - %2$d item(s)","Einkaufswagen von %1$s - %2$d Artikel"
345
+ "Show Date of Birth","Geburtsdatum anzeigen"
346
+ "Show Gender","Geschlecht anzeigen"
347
+ "Show Middle Name (initial)","Zweiten Vornamen anzeigen (Initialen)"
348
+ "Show Prefix","Präfix anzeigen"
349
+ "Show Suffix","Suffix anzeigen"
350
+ "Show Tax/VAT Number","Steuer/MwSt. Nummer anzeigen"
351
+ "Show VAT Number on Frontend","Umsatzsteuer-Identifikationsnummer am Frontende anzeigen"
352
+ "Sign Up for Newsletter","Für Newsletter eintragen"
353
+ "Skipping import row, required field ""%s"" is not defined.","Import der Reihe wird jetzt übersprungen. Das benötigte Feld ""%s"" ist nicht definiert."
354
+ "Skipping import row, website ""%s"" field does not exist.","Import-Zeile übersprungen, Feld für Webseite ""%s"" existiert nicht."
355
+ "State/Province","Staat/Provinz"
356
+ "Status","Status"
357
+ "Store","Shop"
358
+ "Store View","Store-Ansicht"
359
+ "Street Address","Adresse Strasse"
360
+ "Street Address %s","Adresse Strasse %s"
361
+ "Subject","Betreff"
362
+ "Submit","Senden"
363
+ "Subscribe to Newsletter","Newsletter abonnieren"
364
+ "Subscribed to Newsletter?","Newletter abonniert?"
365
+ "Suffix Dropdown Options","Optionen für Suffix-Aufklappmenü"
366
+ "Tag Name","Tagname"
367
+ "Tax Calculation Based On","Steuerberechnung anhand von"
368
+ "Tax Class","Steuerklasse"
369
+ "Tax/VAT number","USt.ID"
370
+ "Telephone","Telefon"
371
+ "Text","Text"
372
+ "Text One Line","Text einzeilig"
373
+ "Thank you for registering with %s.","Vielen Dank für Ihre Registrierung bei %s."
374
+ "The Date of Birth is required.","Das Geburtsdatum muss angegeben werden."
375
+ "The TAX/VAT number is required.","Die USt-IdNr. muss angegeben werden."
376
+ "The VAT ID entered (%s) is not a valid VAT ID.","Die angegebene Umsatzsteuer-Identifikationsnummer (%s) ist nicht gültig."
377
+ "The VAT ID entered (%s) is not a valid VAT ID. The customer would belong to Customer Group %s.","Die angegebene Umsatzsteuer-Identifikationsnummer (%s) ist nicht gültig. Der Kunde würde in Kundengruppe %s gehören."
378
+ "The VAT ID is valid. The current Customer Group will be used.","Umsatzsteuer-Identifikationsnummer (%s) ist nicht gültig. Aktuelle Kundengruppe wird angewandt
379
+ ."
380
+ "The account information has been saved.","Benutzerkonto Information wurde gespeichert."
381
+ "The address does not belong to this customer.","Diese Adresse gehört nicht zu diesem Kunden."
382
+ "The address has been deleted.","Die Adresse wurde gelöscht."
383
+ "The address has been saved.","Die Adresse wurde gespeichert."
384
+ "The customer ID and email did not match, skipping the record, line: %s","Kunden-ID und E-Mail stimmen nicht überein, Datensatz überspringen, Zeile: %s"
385
+ "The customer does not have default billing address.","Der Kunde hat keine Standard-Rechnungsadresse."
386
+ "The customer email (%s) already exists, skipping the record, line: %s","Kunden - E-Mail existiert bereits, Datensatz überspringen, Zeile: %s"
387
+ "The customer group has been deleted.","Die Kundengruppe wurde gelöscht."
388
+ "The customer group has been saved.","Die Kundengruppe wurde gespeichert."
389
+ "The customer is currently assigned to Customer Group %s.","Der Kunde ist derzeit Kundengruppe %s zugeordnet."
390
+ "The first name cannot be empty.","Der Vorname darf nicht leer sein."
391
+ "The group ""%s"" cannot be deleted","Die Gruppe ""%s"" kann nicht gelöscht werden"
392
+ "The last name cannot be empty.","Der Nachname darf nicht leer sein."
393
+ "The minimum password length is %s","Die minimale Passwortlänge beträgt %s."
394
+ "The password cannot be empty.","Das Passwort darf nicht leer sein."
395
+ "The password must have at least 6 characters. Leading or trailing spaces will be ignored.","Ihr Passwort muß aus mindest 6 Zeichen bestehen. Leerzeichen am Anfang oder Ende werden abgeschnitten."
396
+ "The suffix that goes after name (Jr., Sr., etc.)","Das Suffix nach dem Namen (Jr., Sr., usw.)"
397
+ "The title that goes before name (Mr., Mrs., etc.)","Die Anrede vor dem Namen (Hr., Fr., usw.)"
398
+ "There are no items in customer's wishlist at the moment","Momentan gibt es keine Artikel auf dem Wunschzettel des Kunden"
399
+ "There are no items in customer\'s shopping cart at the moment","Es gibt momentan keine Artikel im Kundenwarenkorb"
400
+ "There is already an account with this email address. If you are sure that it is your email address, <a href=""%s"">click here</a> to get your password and access your account.","Es existiert schon ein Account mit dieser E-Mail-Adresse. Falls Sie sicher sein sollten, dass es Ihre E-Mail-Adresse ist, <a href=""%s"">klicken Sie hier</a>, um Ihr Passwort und Zugang zum Account zu erhalten."
401
+ "There was an error validating the VAT ID.","Bei der Überprüfung der Umsatzsteuer-Identifikationsnummer ist ein Fehler aufgetreten."
402
+ "There was an error validating the VAT ID. The customer would belong to Customer Group %s.","Bei der Überprüfung der Umsatzsteuer-Identifikationsnummer trat ein Fehler auf. Der Kunde würde zu Kundengruppe %s gehören."
403
+ "This account is not confirmed.","Dieses Benutzerkonto wurde nicht bestätigt."
404
+ "This customer email already exists","Diese Kunden-Mailadresse existiert bereits"
405
+ "This customer has no saved addresses.","Dieser Kunde besitzt keine gespeicherten Adressen."
406
+ "This email does not require confirmation.","Diese E-Mail erfordert keine Bestätigung."
407
+ "This email will be sent instead of default welcome email, after account confirmation.","Diese E-Mail wird statt der Standard Willkommensnachricht nach dem Anlegen eines Benutzerkontos verschickt."
408
+ "This is My Default %s Address","Dies ist meine Standard %s Adresse"
409
+ "To Cart","Zum Warenkorb"
410
+ "To show VAT number on frontend, set Show VAT Number on Frontend option to Yes.","Um die Umsatzsteuer-Identifikationsnummer am Frontende anzuzeigen, stellen Sie Umsatzsteuer-Identifikationsnummer anzeigen in der Frontende-Option auf Ja."
411
+ "Total","Gesamtbetrag"
412
+ "Type","Typ"
413
+ "Unable to save the customer.","Speichern von Kunde nicht möglich."
414
+ "Unknown","Unbekannt"
415
+ "Unsubscribe from Newsletter","Vom Newsletter abmelden"
416
+ "Update","Aktualisieren"
417
+ "Update customer address data","Kundenadressdaten aktualisieren"
418
+ "Update customer data","Kundendaten aktualisieren"
419
+ "Use as My Default %s Address","Als meine Standard %s Adresse verwenden"
420
+ "Use as My Default Billing Address","Als meine Standard-Rechnungsadresse verwenden"
421
+ "Use as My Default Shipping Address","Als meine Standard-Versandadresse verwenden"
422
+ "Use as my default billing address","Als meine Standard-Rechnungsadresse verwenden"
423
+ "Use as my default shipping address","Als meine Standardlieferadresse verwenden"
424
+ "VAT Number","MwSt.-Nummer"
425
+ "VAT Request Date","Anfordungsdatum der Umsatzsteuer"
426
+ "VAT Request Identifier","Anfragekennung für Umsatzsteuer"
427
+ "Validate VAT Number","Umsatzsteuer-Identifikationsnummer wird überprüft"
428
+ "Validate on Each Transaction","Bei jeder Transaktion überprüfen"
429
+ "Validation Error Group","Überprüfungsfehler Gruppe"
430
+ "View","Anzeigen"
431
+ "View Order","Bestellung ansehen"
432
+ "Visitor","Besucher"
433
+ "Visitors Only","Nur Besucher"
434
+ "Website","Website"
435
+ "Welcome Email","Willkommensnachricht"
436
+ "Wishlist","Wunschzettel"
437
+ "Wishlist - %d item(s)","Wunschzettel - %d Artikel"
438
+ "Would you like to change the Customer Group for this order?","Möchten sie die Kundengruppe für diese Bestellung ändern?"
439
+ "Wrong confirmation key.","Falscher Bestätigungsschlüssel."
440
+ "Wrong customer account specified.","Falsches Benutzerkonto angegeben."
441
+ "Wrong email.","Falsche E-Mail."
442
+ "Wrong transactional account email type","Falsche Girokonto E-Mail"
443
+ "YYYY","JJJJ"
444
+ "Year","Jahr"
445
+ "You are currently not subscribed to any newsletter.","Sie sind momentan für keinen Newsletter angemeldet."
446
+ "You are currently not subscribed to our newsletter.","Sie sind momentan nicht für unseren Newsletter angemeldet."
447
+ "You are currently subscribed to 'General Subscription'.","Sie sind momentan für das Abo 'Allgemeines' angemeldet."
448
+ "You are currently subscribed to our newsletter.","Sie sind momentan für unseren Newsletter angemeldet."
449
+ "You are now logged out","Sie sind jetzt abgemeldet"
450
+ "You have logged out and will be redirected to our homepage in 5 seconds.","Sie haben sich abgemeldet und werden innerhalb von 5 Sekunden zu unserer Startseite weitergeleitet."
451
+ "You have no additional address entries in your address book.","Sie haben keine zusätzlichen Adresseinträge in Ihrem Adressbuch."
452
+ "You have no additional entries in your address book.","Sie besitzen keine zusätzlichen Einträge in Ihrem Adressbuch."
453
+ "You have no default billing address in your address book.","Sie haben in Ihrem Adressbuch keine Standard-Rechnungsadresse."
454
+ "You have no default entries in your address book.","In Ihrem Adressbuch befinden sich keine Standard-Einträge."
455
+ "You have no default shipping address in your address book.","Sie haben in Ihrem Adressbuch keine Standard-Versandadresse."
456
+ "You have not set a default billing address.","Sie haben keine Standard-Rechnungsadresse angegeben."
457
+ "You have not set a default shipping address.","Sie haben keine Standard-Versandadresse angegeben."
458
+ "You have placed no orders yet.","Sie haben noch keine Bestellung aufgegeben."
459
+ "You have placed no products yet.","Sie haben noch keine Artikel ausgewählt."
460
+ "You will be charged tax.","Sie sind steuerpflichtig."
461
+ "You will not be charged tax.","Sie sind nicht steuerpflichtig."
462
+ "Your Tax ID cannot be validated.","Ihre Umsatzsteuer-Identifikationsnummer konnte nicht überprüft werden."
463
+ "Your VAT ID was successfully validated.","Ihre Umsatzsteuer-Identifikationsnummer wurde erfolgreich überprüft."
464
+ "Your account balance is: %s","Ihr Kontostand beträgt: %s"
465
+ "ZIP","Postleitzahl"
466
+ "ZIP/Post Code","Postleitzahl"
467
+ "Zip/Postal Code","Postleitzahl"
468
+ "n/a","Keine Angabe"
469
+ "or","oder"
470
+ "register","Registrieren"
app/locale/de_DE/Mage_Dataflow.csv ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "<a href=""%s"" target=""_blank"">Link</a>","<a href=""%s"" target=""_blank"">Link</a>"
2
+ "Actions XML is not valid.","Aktionen XML nicht gültig."
3
+ "An error occurred while opening file: ""%s"".","Beim Öffnen der Datei ist ein Fehler aufgetreten: ""%s""."
4
+ "Could not load file: ""%s"".","Datei konnte nicht geladen werden: ""%s""."
5
+ "Could not save file: %s.","Datei """"%s"""" konnte nicht gespeichert werden."
6
+ "Declared adapter %s was not found.","Deklarierer Adapter %s wurde nicht gefunden."
7
+ "Destination folder ""%s"" is not a directory.","Zielordner ""%s"" ist kein Verzeichnis."
8
+ "Destination folder ""%s"" is not writable.","Zielordner ""%s"" ist nicht beschreibbar."
9
+ "Done","Fertig"
10
+ "Dry run set, stopping execution.","Probelauf gesetzt, Ausführung wird gestoppt."
11
+ "ETA: %s","ETA: %s"
12
+ "Error in field mapping: field list for mapping is not defined.","Fehler beim Feldmapping: Feldliste für Mapping ist nicht definiert."
13
+ "File ""%s"" does not exist.","Datei ""%s"" existiert nicht."
14
+ "Found %d rows.","%d Zeilen gefunden."
15
+ "Less than a minute","Weniger als eine Minute"
16
+ "Loaded successfully: ""%s"".","Erfolgreich geladen: ""%s""."
17
+ "Memory Used: %s","Benützter Speicher: %s"
18
+ "Method ""%s"" not defined in adapter %s.","Methode ""%s"" im Adapter %s nicht definiert."
19
+ "Method ""%s"" was not defined in adapter %s.","Methode ""%s"" wurde im Adapter %s nicht definiert."
20
+ "Please declare ""adapter"" and ""method"" nodes first.","Bitte zuerst die Schnittstellen ""adapter"" und ""method"" deklarieren."
21
+ "Processed records: %s","Verarbeitete Einträge: %s"
22
+ "Profile with the same name already exists.","Profil mit gleichem Namen existiert bereits."
23
+ "Saved successfully: ""%s"" [%d byte(s)].","Erfolgreich gespeichert: ""%s"" [%d Byte]."
24
+ "Sheet 1","Blatt 1"
25
+ "Skip undefined row.","Undefinierte Zeile auslassen."
26
+ "Starting %s :: %s","%s :: %s wird gestartet."
27
+ "The destination folder ""%s"" does not exist or there is no access to create it.","Der Zielordner ""%s"" existiert entweder nicht, oder gibt es keinen Zugang, um ihn zu erstellen."
28
+ "Total records: %s","Gesamtanzahl Einträge: %s"
29
+ "hour","Stunde"
30
+ "hours","Stunden"
31
+ "minute","Minute"
32
+ "minutes","Minuten"
app/locale/de_DE/Mage_Directory.csv ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "-- Please select --","-Bitte wählen -"
2
+ "Allowed Currencies","Zulässige Währungen"
3
+ "Base Currency","Basiswährung"
4
+ "Base currency is used for all online payment transactions. Scope is defined by the catalog price scope (""Catalog"" > ""Price"" > ""Catalog Price Scope"").","Die Basiswährung wird für alle Online-Transaktionen verwendet. Der Spielraum richtet sich nach dem Spielraum des Katalogpreises (""Katalog"" > ""Preis"" > ""Spielraum Katalogpreis"")."
5
+ "Can\'t convert rate from ""%s-%s"".","Rate kann nicht von ""%s-%s"" konvertiert werden."
6
+ "Cannot retrieve rate from %s.","Kurs von %s kann nicht abgefragt werden."
7
+ "Connection Timeout in Seconds","Verbindungstimeout in Sekunden"
8
+ "Continue &raquo;","&raquo; fortsetzen;"
9
+ "Country","Land"
10
+ "Country API","Land API"
11
+ "Country and Format Type combination should be unique","Die Kombination aus Land und Formattyp sollte unverwechselbar sein"
12
+ "Currency","Währung"
13
+ "Currency Options","Währung Optionen"
14
+ "Currency Setup","Währung Setup"
15
+ "Currency Update Warnings","Währung Aktualisierung Warnungen"
16
+ "Default Display Currency","Angezeigte Standardwährung"
17
+ "Directory","Verzeichnis"
18
+ "Display not required State","Anzeige nicht erforderlich Status"
19
+ "Enabled","Aktiviert"
20
+ "Error Email Recipient","Fehler E-Mail Empfänger"
21
+ "Error Email Sender","Fehler E-Mail Absender"
22
+ "Error Email Template","Fehler E-Mail Vorlage"
23
+ "FATAL ERROR:","SCHWERWIEGENER FEHLER:"
24
+ "Frequency","Frequenz"
25
+ "Installed Currencies","Installierte Währungen"
26
+ "Invalid Import Service specified.","Ungültiger Importservice gewählt."
27
+ "Invalid country code: %s","Ungültiger Länder-Code: %s"
28
+ "Invalid rates received","Ungültige Kurse erhalten"
29
+ "Invalid target currency.","Ungültige Zielwährung."
30
+ "List of countries","Länderverzeichnis"
31
+ "List of regions in specified country","Liste der Regionen in einem gewählten Land"
32
+ "Postal Code is Optional for the following countries","Für folgende Länder ist die Postleitzahl optional"
33
+ "Region","Region"
34
+ "Region API","Region API"
35
+ "Scheduled Import Settings","Geplanter Import Einstellungen"
36
+ "Select Your Currency","Wählen Sie Ihr Land aus"
37
+ "Service","Service"
38
+ "Start Time","Startzeit"
39
+ "State is required for","Status ist erforderlich für"
40
+ "State/Province","Bundesstaat/ Provinz"
41
+ "States Options","Status-Optionen"
42
+ "Strikeiron Email Update Warnings","Strikeiron E-Mail-Aktualisierungswarnungen"
43
+ "Unable to initialize the import model.","Import-Model konnte nicht initialisiert werden."
44
+ "Undefined rate from ""%s-%s"".","Nicht definierter Satz von ""%s-%s""."
45
+ "WARNING:","WARNUNG:"
46
+ "Webservicex","Webservicex"
47
+ "Your Currency","Ihre Währung"
48
+ "Your Currency:","Ihre Währung:"
49
+ "Your current currency is: %s","Ihre aktuelle Währung ist: %s"
app/locale/de_DE/Mage_Downloadable.csv ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Add","Hinzufügen"
2
+ "Add New Row","Neue Zeile hinzufügen"
3
+ "Add links and samples to downloadable product","Links und Beispiele zum herunterladbaren Produkt hinzufügen"
4
+ "Alphanumeric, dash and underscore characters are recommended for filenames. Improper characters are replaced with \'_\'.","Alphanumerische Zeichen, Bindestriche und Unterstriche werden für Dateinamen empfohlen. Unangemessene Zeichen werden durch '_' ersetzt."
5
+ "An error occurred while getting the requested content.","Beim Laden des angeforderten Inhalts ist ein Fehler aufgetreten."
6
+ "An error occurred while getting the requested content. Please contact the store owner.","Beim Laden des angeforderten Inhalts ist ein Fehler aufgetreten. Bitte kontaktieren Sie den Shopbesitzer."
7
+ "An error occurred while saving the file(s).","Beim Speichern der Datei(en) ist ein Fehler aufgetreten."
8
+ "Availability:","Verfügbarkeit:"
9
+ "Back","Zurück"
10
+ "Canceled","Storniert"
11
+ "Cannot connect to remote host, error: %s.","Verbindung zu Remote Host kann nicht aufgebaut werden, Fehler: %s."
12
+ "Catalog Product View (Downloadable)","Katalog Produktansicht (Herunterladbar)"
13
+ "Category API","Kategorie API"
14
+ "Customer My Account Downloadable Items","Kunde Mein Konto Herunterladbare Artikel"
15
+ "Date","Datum"
16
+ "Default Link Title","Standard Linktitel"
17
+ "Default Maximum Number of Downloads","Standard Maximumanzahl von Downloads"
18
+ "Default Sample Title","Standard Beispietitel"
19
+ "Delete","Löschen"
20
+ "Disable Guest Checkout if Cart Contains Downloadable Items","Gastcheckout deaktivieren wenn Warenkorb Herunterladbare Artikel enthält"
21
+ "Downloadable Information","Herunterladbare Informationen"
22
+ "Downloadable Product","Herunterladbares Produkt"
23
+ "Downloadable Product Options","Herunterladbare Produktoptionen"
24
+ "Downloadable Product Section","Herunterladbarer Produktbereich"
25
+ "Edit","Bearbeiten"
26
+ "Edit item parameters","Artikelangaben ändern"
27
+ "Excl. Tax","Steuer weglassen"
28
+ "File","Datei"
29
+ "From:","Von:"
30
+ "Gift Message","Geschenkmitteilung"
31
+ "Go to <a href=""%s"">My Downloadable Products</a>","Gehen Sie zu <a href=""%s"">Meine Download Produke</a>"
32
+ "Guest checkout will only work with shareable.","Gastcheckout funktioniert nur wenn mitbenutzbar."
33
+ "In stock","Auf Lager"
34
+ "Incl. Tax","Steuer inkludieren"
35
+ "Invalid download URL host.","Ungültiger Download URL Host."
36
+ "Invalid download URL scheme.","Ungültiges Download URL Schema."
37
+ "Invalid download link type.","Ungültiger Downloadlinktyp."
38
+ "Invoiced","In Rechnung gestellt."
39
+ "Links can be purchased separately","Links können separat gekauft werden."
40
+ "List","Liste"
41
+ "Max. Downloads","Max. Downloads"
42
+ "Message:","Nachricht:"
43
+ "Move","Verschieben"
44
+ "Move to wishlist","Auf den Wunschzettel verschieben"
45
+ "My Downloadable Products","Meine herunterladbaren Produkte"
46
+ "Open Links in New Window","Links in neuem Fenster öffnen"
47
+ "Order #","Bestellung #"
48
+ "Order Item Status to Enable Downloads","Bestellungsartikelstatus zu Downloads aktivieren"
49
+ "Order id cannot be null","Order-ID kann nicht Null sein"
50
+ "Order item id cannot be null","Order-Artikel-ID kann nicht Null sein"
51
+ "Ordered","Bestellt"
52
+ "Out of stock","Nicht lieferbar"
53
+ "Pending","Ausstehend"
54
+ "Please log in to download your product or purchase <a href=""%s"">%s</a>.","Bitte melden Sie sich an um Ihr Produkt herunterzuladen oder zu kaufen <a href=""%s"">%s</a>."
55
+ "Please log in to download your product.","Bitte melden Sie sich an um das Produkt herunterzuladen."
56
+ "Please set resource file and link type.","Bitte setzten Sie Ressourcendatei und Linktyp."
57
+ "Please specify product link(s).","Bitte spezifizieren Sie Produktlink(s)."
58
+ "Price","Preis"
59
+ "Product downloadable links","Produkt-Download Links"
60
+ "Qty","Anzahl"
61
+ "Refunded","Rückerstattet"
62
+ "Remaining Downloads","Übrige Downloads"
63
+ "Remove","Löschen"
64
+ "Remove Item","Artikel entfernen"
65
+ "Remove links and samples from downloadable product","Links und Beispiele vom herunterladbaren Produkt entfernen"
66
+ "Requested link does not exist.","Angeforderter Link existiert nicht."
67
+ "Retrieve links and samples list from downloadable product","Links und Beispielliste vom herunterladbaren Produkt abrufen"
68
+ "SKU","SKU"
69
+ "Sample","Beispiel"
70
+ "See price before order confirmation.","Preis vor Bestellbestätigung ansehen."
71
+ "Shareable","Mitbenutzbar"
72
+ "Shipped","Versandt"
73
+ "Sorry, there was an error getting requested content. Please contact the store owner.","Leider trat beim Einholen des gewünschten Inhalts ein Fehler auf. Bitte kontaktieren Sie den Shopinhaber."
74
+ "Sort Order","Sortierreihenfolge"
75
+ "Start Download","Download starten"
76
+ "Status","Status"
77
+ "Subtotal","Zwischensumme"
78
+ "The file does not exist.","Die Datei existiert nicht."
79
+ "The link has expired.","Der Link ist abgelaufen."
80
+ "The link is not available.","Der Link ist nicht verfügbar."
81
+ "There are files that were selected but not uploaded yet. Please upload or remove them first","Einige Dateien wurden ausgewählt aber noch nicht hochgeladen. Bitte laden Sie sie erst hoch oder entfernen Sie sie."
82
+ "Title","Titel"
83
+ "To:","An:"
84
+ "U","U"
85
+ "Unlimited","Unbegrenzt"
86
+ "Update","Aktualisieren"
87
+ "Use Content-Disposition","Verwenden Sie Content-Disposition"
88
+ "Use Default Value","Standardwert verwenden"
89
+ "View Order","Bestellung ansehen"
90
+ "What's this?","Was ist das?"
91
+ "You have not purchased any downloadable products yet.","Sie haben noch keine herunterladbaren Produkte gekauft."
92
+ "attachment","Anhang"
93
+ "download","Download"
94
+ "inline","Inline"
95
+ "sample","Probe"
app/locale/de_DE/Mage_Eav.csv ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """%s"" contains not only digit characters.","""%s"" besteht nicht nur aus Ziffern."
2
+ """%s"" does not fit the entered date format.","""%s"" stimmt nicht mit dem eingegebenen Datumsformat überein."
3
+ """%s"" exceeds the allowed file size.","""%s"" überschreitet die vorgeschriebene Dateigröße."
4
+ """%s"" exceeds the allowed length.","""%s"" überschreitet die vorgeschriebene Länge."
5
+ """%s"" has not only alphabetic and digit characters.","""%s"" besteht nicht nur aus Buchstaben und Ziffern."
6
+ """%s"" has not only alphabetic characters.","""%s"" besteht nicht nur aus Buchstaben."
7
+ """%s"" height exceeds allowed value of %s px.","Die Größe von ""%s"" überschreitet den möglichen Wert von %s px"
8
+ """%s"" invalid type entered.","Ungültiger ""%s""-Typ eingegeben."
9
+ """%s"" is a required value.","""%s"" ist ein Zwangsfeld."
10
+ """%s"" is an empty string.","""%s"" ist ein leerer String."
11
+ """%s"" is not a valid URL.","""%s"" ist eine ungültige URL."
12
+ """%s"" is not a valid date.","""%s"" ist ein ungültiges Datum."
13
+ """%s"" is not a valid email address.","""%s"" ist eine ungültige E-Mail-Adresse."
14
+ """%s"" is not a valid file","""%s"" ist eine ungültige Datei."
15
+ """%s"" is not a valid file extension.","""%s"" ist eine ungültige Dateierweiterung."
16
+ """%s"" is not a valid file.","""%s"" ist eine ungültige Datei."
17
+ """%s"" is not a valid hostname.","""%s"" ist eine ungültiger Hostname."
18
+ """%s"" is not a valid image format","""%s"" ist ein ungültiges Bildformat."
19
+ """%s"" length must be equal or greater than %s characters.","""%s"" muss %s oder mehr Zeichen haben."
20
+ """%s"" length must be equal or less than %s characters.","""%s"" muss %s oder weniger Zeichen haben."
21
+ """%s"" width exceeds allowed value of %s px.","Die Breite von ""%s"" überschreitet den vorgeschriebenen Wert von %s Pixeln."
22
+ "'%value%' appears to be a DNS hostname but cannot extract TLD part","'%value%' ist offenbar ein DNS-Hostname, aber die Hauptdomäne (TLD) lässt sich nicht extrahieren."
23
+ "'%value%' appears to be a DNS hostname but cannot match TLD against known list","%value%' ist offenbar ein DNS-Hostname, aber die Hauptdomäne (TLD) lässt sich nicht unter den bekannten Einträgen finden."
24
+ "'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'","%value%' ist offenbar ein DNS-Hostname, aber die Hauptdomäne (TLD) entspricht keinem Hostnamen -Schema für TLD '%tld%'."
25
+ "'%value%' appears to be a DNS hostname but contains a dash in an invalid position","%value%' ist offenbar ein DNS-Hostname mit einem Strich an einer ungültigen Stelle."
26
+ "'%value%' appears to be a DNS hostname but the given punycode notation cannot be decoded","'%value%' scheint ein DNS-Hostname zu sein, aber die angegebene Punycode-Notation konnte nicht entschlüsselt werden."
27
+ "'%value%' appears to be a local network name but local network names are not allowed","'%value%' scheint der Name eines lokalen Netzwerks zu sein. Namen lokaler Netzwerke sind allerdings nicht erlaubt."
28
+ "'%value%' appears to be an IP address, but IP addresses are not allowed","'%value%' scheint eine IP-Adresse zu sein. IP-Adressen sind allerdings nicht erlaubt."
29
+ "'%value%' does not appear to be a valid URI hostname","'%value%' scheint kein gültiger URI-Hostname zu sein"
30
+ "'%value%' does not appear to be a valid local network name","'%value%' scheint kein gültiger Name für ein lokales Netzwerk zu sein."
31
+ "'%value%' does not match the expected structure for a DNS hostname","'%value%' entspricht nicht der erwarteten Struktur eines DNS-Hostnames."
32
+ "A joint field with this alias (%s) is already declared","Ein gemeinsames Feld mit diesem Alias (%s) ist bereits deklariert"
33
+ "Add Option","Option hinzufügen"
34
+ "An error occurred while loading a record, aborting. Error: %s","Fehler beim Laden eines Eintrags, Abbruch. Fehler: %s"
35
+ "An error occurred while loading the collection, aborting. Error: %s","Fehler beim Laden der Zusammenstellung, Abbruch. Fehler: %s"
36
+ "An error occurred while saving a record, aborting. Error: ","Fehler beim Speichern eines Eintrags, Abbruch. Fehler:"
37
+ "Attempt to add an invalid object","Versuch, ein ungültiges Objekt hinzuzufügen"
38
+ "Attribute '%s' used in configurable products","Attribut '%s' wird für konfigurierbare Produkte verwendet"
39
+ "Attribute Code","Attributcode"
40
+ "Attribute Label","Attributlabel"
41
+ "Attribute Properties","Attributeigenschaften"
42
+ "Attribute object is undefined","Attributobjekt ist undefiniert"
43
+ "Attribute set with the ""%s"" name already exists.","Attributset mit dem Namen ""%s"" besteht bereits."
44
+ "Attribute with the same code","Attribut mit dem gleichen Code"
45
+ "Can\'t create table: %s","Kann keine Tabelle erstellen: %s"
46
+ "Catalog Input Type for Store Owner","Katalog Eingabetyp für Shopbesitzer"
47
+ "Current module EAV entity is undefined","Aktuelles Modul EAV-Einheit ist nicht definiert"
48
+ "Current module pathname is undefined","Der derzeitige Modulpfad ist undefiniert"
49
+ "Data integrity: No header row found for attribute","Datenrichtigkeit: Keine Kopfzeile für dieses Attribut"
50
+ "Date","Datum"
51
+ "Decimal Number","Dezimalzahl"
52
+ "Default Product Listing Sort by does not exist in Available Product Listing Sort By.","Standard-Produktauflistung, sortiert nach, existiert nicht in Verfügbare Produktauflistung, sortiert nach. "
53
+ "Default Value","Vorgegebener Wert"
54
+ "Default option value is not defined","Standard-Optionswert ist nicht definiert"
55
+ "Delete","Löschen"
56
+ "Dropdown","DropDown"
57
+ "Email","E-Mail"
58
+ "Entity collection expected.","Datensatz Zusammenstellung erwartet."
59
+ "Entity collections expected.","Datensatz Zusammenstellungen erwartet."
60
+ "Entity instance is not defined","Entity-Instanz ist nicht definiert"
61
+ "Entity is not initialized","Entity ist nicht initialisiert"
62
+ "Entity object is undefined","Entity-Objekt ist undefiniert"
63
+ "Failed to load node %s from config","Fehler beim Laden des Knotens %s von der Konfiguration"
64
+ "For internal use. Must be unique with no spaces. Maximum length of attribute code must be less then %s symbols","Zum internen Gebrauch. Muss einzigartig sein und darf keine Leerzeichen enthalten. Die maximale Länge des Attribut-Codes muss weniger als %s Zeichen betragen"
65
+ "Form Element with the same attribute","Formular-Element mit gleichem Attribut"
66
+ "Form Fieldset with the same code","Formular-Fieldset mit gleichem Code"
67
+ "Form Type with the same code","Formulartyp mit gleichem Code"
68
+ "Form code is not defined","Formularcode ist nicht definiert"
69
+ "Frontend label is not defined","Frotend-Label ist nicht definiert"
70
+ "Input Validation for Store Owner","Eingabeprüfung für Shopbesitzer"
71
+ "Integer Number","Ganze Zahl"
72
+ "Invalid EAV attribute.","Ungültiges EAV-Attribut."
73
+ "Invalid alias, already exists in joint attributes","Ungültiger Alias, existiert bereits in gemeinsamen Attributen"
74
+ "Invalid attribute name: %s","Ungültiger Attributname: %s"
75
+ "Invalid attribute requested: %s","Ungültiges Attribut angefragt: %s"
76
+ "Invalid attribute type","Ungültiger Attributtyp: %s"
77
+ "Invalid character encountered in increment ID: %s","Ungültiges Zeichen in hochgezählter ID gefunden: %s"
78
+ "Invalid date","Ungültiges Datum"
79
+ "Invalid default date","Ungültiges Standarddatum"
80
+ "Invalid default decimal value","Ungültiger dezimaler Standardwert"
81
+ "Invalid entity specified","Ungültiger Datensatz angegeben"
82
+ "Invalid entity supplied.","Ungültiger Datensatz angegeben."
83
+ "Invalid entity supplied: %s","Ungültige Entity eingegeben: %s"
84
+ "Invalid entity type","Ungültiger Entity-Typ"
85
+ "Invalid entity_id, skipping the record.","Ungültige Datensatz ID, Eintrag wird übersprungen."
86
+ "Invalid entity_type specified: %s","Ungültiger Datensatztyp angegeben: %s"
87
+ "Invalid foreign key","Ungültiger ausländischer Schlüssel"
88
+ "Invalid form type.","Ungültiger Formulartyp."
89
+ "Invalid joint fields","Ungültige gemeinsame Felder"
90
+ "Invalid store specified","Ungültiger Store definiert"
91
+ "Invalid type given. String expected","Ungültigen Typ angegeben. Zeichenfolge erwartet."
92
+ "Joined field with this alias is already declared","Mit diesem Alias verbundenes Feld ​​ist bereits deklariert"
93
+ "Joint field or attribute expression with this alias is already declared","Gemeinsames Feld oder zusätzlicher Ausdruck mit diesem Alias ​​ist bereits deklariert"
94
+ "Letters","Buchstaben"
95
+ "Letters (a-z, A-Z) or Numbers (0-9)","Buchstaben (a-z, A-Z) oder Zahlen (0-9)"
96
+ "Loaded %d records","%d Einträge geladen"
97
+ "Maximum length of attribute code must be less then %s symbols","Die maximale Länge dieses Attributcodes sollte nicht länger als %s Zeichen sein."
98
+ "Multiple Select","Mehrfache Auswahl"
99
+ "No","Nein"
100
+ "No options found in config node %s","Keine Optionen in Konfigurationsknoten %s gefunden"
101
+ "None","Keine"
102
+ "Not shared with other products","Nicht mit anderen Produkten geteilt"
103
+ "Problem loading the collection, aborting. Error: %s","Problem beim Laden der Zusammenstellung, Abbruch. Fehler: %s"
104
+ "Problem saving the collection, aborting. Error: %s","Problem beim Speichern der Zusammenstellung, Abbruch. Fehler: %s"
105
+ "Required","Benötigt"
106
+ "Saved %d record(s).","%d Eingaben gespeichert."
107
+ "Source model ""%s"" not found for attribute ""%s""","Quellen-Modell ""%s"" wurde nicht gefunden für das Attribut ""%s"""
108
+ "System","System"
109
+ "Text Area","Textbereich"
110
+ "Text Field","Textfeld"
111
+ "The value of attribute ""%s"" must be unique","Der Wert des Attributs ""%s"" muss einzigartig sein."
112
+ "The value of attribute ""%s"" must be unique.","Der Wert des Attributs ""%s"" muss einzigartig sein."
113
+ "This attribute is used in configurable products","Dieses Attribut wird für konfigurierbare Produkte verwendet"
114
+ "URL","URL"
115
+ "Unique Value","Einmaliger Wert"
116
+ "Unique Value (not shared with other products)","Einmaliger Wert (nicht mit anderen Produkten geteilt)"
117
+ "Unknown parameter","Unbekannter Parameter"
118
+ "Values Required","Pflichtangabe"
119
+ "Wrong attribute group ID","Falsche Attribut-Gruppen-ID"
120
+ "Wrong attribute set ID","Falsche Attribut-ID"
121
+ "Wrong entity ID","Falsche Entity-ID"
122
+ "Wrong type definition for %s","Falsche Typdefinition für %s"
123
+ "Yes","Ja"
124
+ "Yes/No","Ja/Nein"
app/locale/de_DE/Mage_GiftMessage.csv ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Add","Hinzufügen"
2
+ "Add gift message for shopping cart","Grußbotschaft für Warenkorb hinzufügen"
3
+ "Add gift messages for quote item of shopping cart","Grußbotschaften für bestimmte Artikel im Warenkorb hinzufügen"
4
+ "Add gift messages to products of shopping cart","Grußbotschaften für Produkte im Warenkorb hinzufügen"
5
+ "Add gift options","Geschenkoptionen hinzufügen"
6
+ "Add gift options for Individual Items","Geschenkoptionen für einzelne Artikel hinzufügen"
7
+ "Add gift options for the Entire Order","Geschenkoptionen für die gesamte Bestellung hinzufügen"
8
+ "Add gift options.","Geschenkoptionen hinzufügen."
9
+ "Allow Gift Messages for Order Items","Geschenknachrichten für Bestellartikel erlauben"
10
+ "Allow Gift Messages on Order Level","Geschenknachrichten auf Bestellebene erlauben"
11
+ "An error occurred while saving the gift message.","Beim Speichern der Geschenknachricht ist ein Fehler aufgetreten."
12
+ "Are you sure?","Sind Sie sicher?"
13
+ "Cancel","Abbrechen"
14
+ "Do you have any gift items in your order?","Haben Sie Geschenkartikel in Ihrer Bestellung?"
15
+ "Edit","Bearbeiten"
16
+ "From","Von"
17
+ "Gift Message","Grußnachricht"
18
+ "Gift Message API","Grußbotschaft API"
19
+ "Gift Options","Geschenkoptionen"
20
+ "Gift Options for","Geschenkoptionen für"
21
+ "Gift Options for Individual Items","Geschenkoptionen für einzelne Artikel"
22
+ "Gift Options for the Entire Order.","Geschenkoptionen für den gesamten Auftrag."
23
+ "Gift Options for this address.","Geschenkoptionen für diese Anschrift."
24
+ "Item %d of %d","Artikel %d von %d"
25
+ "Message","Nachricht"
26
+ "No","Nein"
27
+ "OK","OK"
28
+ "Save Gift Message","Geschenknachricht speichern"
29
+ "The gift message has been removed","Die Geschenknachricht wurde entfernt"
30
+ "The gift message has been saved","Die Geschenknachricht wurde gespeichert"
31
+ "The gift message has been saved.","Die Geschennachricht wurde gespeichert."
32
+ "To","An"
33
+ "Unknown entity type","Unbekannter Entitätentyp"
34
+ "Use config","Konfiguration benützen"
35
+ "Yes","Ja"
36
+ "You can leave this box blank if you do not wish to add a gift message for the item.","Lassen Sie diese Box leer, wenn Sie keine Geschenknachricht zum Artikel hinzufügen wollen."
37
+ "You can leave this box blank if you do not wish to add a gift message for this address.","Lassen Sie diese Box leer, wenn Sie keine Geschenknachricht zu dieser Adresse hinzufügen wollen."
38
+ "You can leave this box blank if you do not wish to add a gift message for whole order.","Lassen Sie diese Box leer, wenn Sie keine Geschenknachricht zur gesamten Bestellung hinzufügen wollen."
app/locale/de_DE/Mage_GoogleAnalytics.csv ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ "Account Number","Kundenkontonummer"
2
+ "Enable","Aktivieren"
3
+ "Enable IP anonymization","IP-Anonymisierung aktivieren"
4
+ "Google API","Google-API"
5
+ "Google Analytics","Google Analytics"
app/locale/de_DE/Mage_GoogleBase.csv ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Active","Aktiv"
2
+ "Add Attribute Mapping","Attributmapping hinzufügen"
3
+ "Add New Attribute","Neues Attribut hinzufügen"
4
+ "Add to Google Base","Zu Google Base hinzufügen"
5
+ "Are you sure?","Sind Sie sicher?"
6
+ "Attribute","Attribut"
7
+ "Attribute Set","Attributset"
8
+ "Attribute Set and Item Type","Attributset und Artikeltyp"
9
+ "Attributes","Attribute"
10
+ "Attributes Mapping","Attributmapping"
11
+ "Attributes Set","Attributset"
12
+ "AuthSub","AuthSub"
13
+ "Available Products","Verfügbare Produkte"
14
+ "Base Currency should be set to %s for %s in system configuration. Otherwise item prices won't be correct in Google Base.","Base-Währung sollte in der Systemkonfiguration auf %s für %s eingestellt sein. Ansonsten sind die Artikelpreise auf Google Base nicht korrekt."
15
+ "Cannot update Google Base Item for Store '%s'","Google Grundgröße kann nicht für Store '%s' aktualisiert werden.
16
+
17
+
18
+
19
+ "
20
+ "Captcha confirmation error: %s","Fehler bei Captcha Bestätigung: %s"
21
+ "Captcha has been confirmed.","Captcha wude bestätigt."
22
+ "Catalog","Katalog"
23
+ "Clicks","Klicks"
24
+ "ClientLogin","ClientLogin"
25
+ "Confirm","Bestätigen"
26
+ "Current Mapping will be reloaded. Continue?","Derzeitiges Mapping wird neu geladen. Fortfahren?"
27
+ "Custom attribute, no mapping","Benutzerdefiniertes Attribut, kein Mapping"
28
+ "Delete","Löschen"
29
+ "Delete Mapping","Mapping löschen"
30
+ "Edit Item Type","Itemtyp ändern"
31
+ "Edit Item Type ""%s""","Artikelart ""%s"" bearbeiten."
32
+ "Error: %s","Fehler: %s"
33
+ "Expires","Läuft ab"
34
+ "Google","Google"
35
+ "Google Base","Google Base"
36
+ "Google Base Attribute","Google Base Attribut"
37
+ "Google Base ID","Google Base ID"
38
+ "Google Base Item Type","Google Base Itemtyp"
39
+ "Google Base Item type","Google Base-Artikelart"
40
+ "Google Base Items","Google Base Artikel"
41
+ "Google base","Google base"
42
+ "Hide","Verstecken"
43
+ "Hosted","Gehostet"
44
+ "Hosted or Google","Gehostet oder Google"
45
+ "Impr.","Impr."
46
+ "Invalid Product Model for Google Base Item","Ungültiges Produktmodel für Google Base Artikel"
47
+ "Item Type was deleted","Artikeltyp wurde gelöscht"
48
+ "Item Types","Artikeltypen"
49
+ "Item model is not specified to delete Google Base entry.","Artikelmodell ist nicht spezifiziert um Google Base Eintrag zu löschen."
50
+ "Items","Artikel"
51
+ "Manage Attribute Mapping","Attributmapping verwalten"
52
+ "Manage Attributes","Attribute verwalten"
53
+ "Manage Items","Artikel verwalten"
54
+ "New Item Type","Neuer Artikeltyp"
55
+ "New ItemType","Neuer Artikeltyp"
56
+ "No","Nein"
57
+ "No items were deleted from Google Base","Keine Artikel wurden aus Google Base gelöscht"
58
+ "No items were published","Keine Artikel wurden veröffentlicht"
59
+ "No items were saved as inactive items","Keine Artikel wurden als inaktive Artikel gespeichert"
60
+ "No products were added to Google Base","Keine Produkte wurden zu Google Base hinzugefügt"
61
+ "Object model is not specified to save Google Base entry.","Objektmodell ist nicht spezifiziert um Google Base Eintrag zu speichern."
62
+ "Please, select Attribute Set and Google Item Type to load attributes","Bitte wählen sie Attributset und Google Artikeltyp um Attribute zu laden."
63
+ "Product Name","Produktname"
64
+ "Publish","Veröffentlichen"
65
+ "Published","Veröffentlicht"
66
+ "Remove","Entfernen"
67
+ "Save Mapping","Mapping speichern"
68
+ "Session expired during export. Please revise exported products and repeat the process if necessary.","Session ist während Export abgelaufen. Bitte überarbeiten Sie exportierte Produkte und versuchen Sie es, falls nötig, noch einmal."
69
+ "Synchronize","Synchronisieren"
70
+ "Target Country","Zielland"
71
+ "The item type has been saved.","Der Artikeltyp wurde gespeichert."
72
+ "This action will update items statistics and remove the items which are not available in Google Base. Continue?","Diese Aktion aktualisiert Artikelstatistiken und entfernt Artikel, die nicht in Google Base verfügbar sind. Fortfahren?"
73
+ "Total of %d items(s) have been deleted; total of %d items(s) have been updated.","Gesamtzahl von %d Artikel wurden gelöscht; Gesamtzahl von %d Artikel wurden aktualisiert."
74
+ "Total of %d items(s) have been published.","Gesamtzahl von %d Artikel wurden veröffentlicht."
75
+ "Total of %d items(s) have been removed from Google Base.","Gesamtzahl von %d Artikel wurden von Google Base entfernt."
76
+ "Total of %d items(s) have been saved as inactive items.","Gesamtzahl von %d Artikel wurden als inaktive Artikel gespeichert."
77
+ "Total of %d product(s) have been added to Google Base.","Gesamtzahl von %d Produkte(n) wurden zu Google Base hinzugefügt."
78
+ "Unable to connect to Google Base. Please, check Account settings in configuration.","Verbindung zu Google Base kann nicht hergestellt werden. Bitte checken Sie Kontoeinstellungen in der Konfiguration."
79
+ "Unable to select a Store View.","Shopansicht kann nicht gewählt werden."
80
+ "View Available Products","Verfügbare Produkte anzeigen"
81
+ "View Item in Google Base","Artikel in Google Base anzeigen"
82
+ "Yes","Ja"
app/locale/de_DE/Mage_GoogleCheckout.csv ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "* Select shipping method","* Versandart auswählen"
2
+ "2Day","2Day"
3
+ "2nd Day Air","Flupost am zweiten Tag"
4
+ "2nd Day Air AM","Morgenstundenflugpost am zweiten Tag"
5
+ "3 Day Select","3 Day Select"
6
+ "<br />Warning: <strong>%s</strong><br />","<br />Warnung: <strong>%s</strong><br />"
7
+ "<strong style=""color:red"">Warning!</strong> This option disables the merchant calculated shipping. With this option, Google API ignores any attempt to affect shipping prices.","<strong style=""color:red"">Warnung!</strong> Diese Einstellung deaktiviert den vom Verkäufer kalkulierten Versand. Mit dieser Einstellung ignoriert die Google-Programmierschnittstelle jeglichen Versuch, Versandpreise zu beeinflussen."
8
+ "A virtual item to reflect the discount total","Ein virtueller Artikel, der den Gesamtrabatt darstellt"
9
+ "A virtual item to reflect the tax total","Ein virtueller Artikel, der den Steuersatz darstellt"
10
+ "AVS Status: %s","AVS Status: %s"
11
+ "Add Shipping Method","Versandart hinzufügen"
12
+ "Allowed Methods","Erlaubte Mittel"
13
+ "Amount: %s","Betrag: %s"
14
+ "Auto-generated from GoogleCheckout Charge","Automatisch generiert aus GoogleCheckout Charge"
15
+ "Buyer Account Age: %s days","Alter des Käuferkontos: %s Tage"
16
+ "CC Partial: xxxx-%s","CC Teilsumme: xxxx-%s"
17
+ "CID Status: %s","CIS Status: %s"
18
+ "Carrier Calculated Methods","Frachtführer berechnete Methoden"
19
+ "Cart Discount","Warenkorb Rabatt"
20
+ "Checkout Image Style","Checkout Bild Stil"
21
+ "Commercial","Kommerziell"
22
+ "Continue Shopping URL","Einkauf fortsetzen URL"
23
+ "Credit memo has been created automatically","Gutschriftenempfänger wurde automatisch erstellt"
24
+ "Debug","Debug"
25
+ "Default Package Height (in)","Standardhöhe der Verpackung (in Inch)"
26
+ "Default Package Length (in)","Standardlänge der Verpackung (in Inch)"
27
+ "Default Package Width (in)","Standardbreite der Verpackung (in Inch)"
28
+ "Default Price for Methods","Standardpreis für Methoden"
29
+ "Default price:","Standardpreis:"
30
+ "Delivery Address Category","Lieferanschrift Kategorie"
31
+ "Delivery Schedule","Lieferplan"
32
+ "Description-based delivery","Beschreibungsbasierte Zustellung"
33
+ "Disable Default Tax Tables","Standard-Steuerverzeichnisse deaktivieren"
34
+ "Discount Tax","Steuerermäßigung"
35
+ "Eligible for Protection: %s","Schutzwürdig: %s"
36
+ "Email delivery","E-Mail-Zustellung"
37
+ "Enable","Aktivieren"
38
+ "Enable Carrier Calculated","""Frachführer berechnet"" aktivieren"
39
+ "Enable Digital Delivery","Digitale Lieferung aktivieren"
40
+ "Enable Flat Rate","Flat-Rate aktivieren"
41
+ "Enable Merchant Calculated","""Händler berechnet"" aktivieren"
42
+ "Enable this if your checkout request is too big and being cut off.","Aktivieren, falls Ihre Checkout-Anfrage zu groß ist und unterbrochen wird."
43
+ "Expiration: %s","Ende: %s"
44
+ "Express Mail","Express-E-Mail"
45
+ "Express Saver","Express Saver"
46
+ "FedEx","FedEx"
47
+ "Financial: %s -> %s","Finanziell: %s -> %s"
48
+ "First Overnight","First über Nacht"
49
+ "Free Shipping","Versandkostenfrei"
50
+ "Fulfillment: %s -> %s","Erfüllt: %s -> %s"
51
+ "Google API","Google-API"
52
+ "Google Authorization:","Google Autorisierung:"
53
+ "Google Buyer ID: %s","Google Käufer ID: %s"
54
+ "Google Charge:","Google Gebühr:"
55
+ "Google Chargeback:","Google-Rückbuchung:"
56
+ "Google Checkout","Google Checkout"
57
+ "Google Checkout Shipping - Carrier Calculated","Google Checkout Versand - Frachtführer berechnet"
58
+ "Google Checkout Shipping - Digital Delivery","Google Checkout Versand - Digitale Lieferung"
59
+ "Google Checkout Shipping - Flat Rate","Google Checkout Versand - Flat-Rate"
60
+ "Google Checkout Shipping - Merchant Calculated","Google Checkout Versand - Händler berechnet"
61
+ "Google Checkout: %s","Google Checkout: %s"
62
+ "Google Order Number: %s","Google Bestellnummer: %s"
63
+ "Google Order Status Change:","Google Bestellung Statusänderung:"
64
+ "Google Refund:","Google Erstattung:"
65
+ "Google Risk Information:","Google Risiko-Information:"
66
+ "GoogleCheckout is not configured","GoogleCheckout ist nicht konfiguriert"
67
+ "Ground","Boden"
68
+ "Hide Cart Contents","Warenkorbinhalte verbergen"
69
+ "Home Delivery","Heimzustellung"
70
+ "IP Address: %s","IP-Addresse: %s"
71
+ "If enabled, cart contents will be hidden after clicking on the Google Checkout button in the shopping cart, and restored if ""Edit Cart"" link was activated.","Sofern aktiviert sind Einkaufswageninhalte nach dem Betätigen der Google Checkout-Schaltfläche im Einkaufswagen nicht mehr sichtbar und werden nach dem Betätigen des ""Einkaufswagen bearbeiten""-Links wieder angezeigt."
72
+ "Inches","Zoll"
73
+ "Invoice Auto-Created: %s","Rechnung automatisch erstellt: %s"
74
+ "Is Buyer Willing to Receive Marketing Emails: %s","Ist der Käufer bereit, Marketing-E-Mails zu empfangen: %s"
75
+ "Key/URL delivery","Schlüssel/URL-Zustellung"
76
+ "Large - %s","Groß - %s"
77
+ "Latest Charge: %s","Letzte Belastung: %s"
78
+ "Latest Chargeback: %s","Letzte Rückbuchung: %s"
79
+ "Latest Refund: %s","Letzte Rückerstattung: %s"
80
+ "Location","Ort"
81
+ "Media Mail","Media Mail"
82
+ "Medium - %s","Medium - %s"
83
+ "Merchant ID","Händler-ID"
84
+ "Merchant Key","Händlerschlüssel"
85
+ "Method","Verfahren"
86
+ "New Order Status","Stand der neuen Bestellung"
87
+ "Next Day Air","Flugpost am nächsten Tag"
88
+ "Next Day Air Early AM","Morgenstundenflugpost am nächsten Tag"
89
+ "Next Day Air Saver","Saver-Flugpost am nächsten Tag"
90
+ "No","Nein"
91
+ "No Comment","Kein Kommentar"
92
+ "No Reason","Ohne Grund"
93
+ "Optimistic","Optimistisch"
94
+ "Optional, leave empty for home page.","Optional, für die Homepage frei lassen."
95
+ "Order creation error","Auftragserstellungsfehler"
96
+ "Parcel Post","Paketpost"
97
+ "Pessimistic","Pessimistisch"
98
+ "Priority Mail","Priority-Sendung"
99
+ "Priority Overnight","Priority über Nacht"
100
+ "Rate 1 Amount","Tarif 1 Betrag"
101
+ "Rate 1 Ship To Applicable Countries","Tarif 1 Versand an zutreffende Länder"
102
+ "Rate 1 Ship to Specific Countries","Tarif 1 Versand an spezifische Länder"
103
+ "Rate 1 Title","Tarif 1 Titel"
104
+ "Rate 2 Amount","Tarif 2 Betrag"
105
+ "Rate 2 Ship To Applicable Countries","Tarif 2 Versand an zutreffende Länder"
106
+ "Rate 2 Ship to Specific Countries","Rate 2 Versand in bestimmte Länder"
107
+ "Rate 2 Title","Tarif 2 Titel"
108
+ "Rate 3 Amount","Rate 3 Menge"
109
+ "Rate 3 Ship To Applicable Countries","Tarif 3 Versand an zutreffende Länder"
110
+ "Rate 3 Ship to Specific Countries","Tarif 3 Versand an spezifische Länder"
111
+ "Rate 3 Title","Rate 3 Titel"
112
+ "Required for live Google Checkout transactions. Make sure that this option corresponds to Use Secure URLs in Frontend (""Web"" > ""Secure"").","Für direkte Google Checkout-Transaktionen erforderlich. Vergewissern Sie sich, dass diese Option Use Secure URLs in Frontend entspricht (""Web"" > ""Secure"")."
113
+ "Residential","Domizilzustellung"
114
+ "Sandbox","Sandkasten"
115
+ "Secure Callback URL","URL für sicheren Rückruf"
116
+ "Small - %s","Klein - %s"
117
+ "Standard Overnight","Standard über Nacht"
118
+ "The tax amount has been applied based on the information received from Google Checkout, because tax amount received from Google Checkout is different from the calculated tax amount","Die Höhe der angerechneten Abgaben basiert auf der Information von Google Checkout, da sich der von Google Checkout gesendete Betrag vom berechneten Betrag unterscheidet"
119
+ "Title","Titel"
120
+ "Total Chargeback: %s","Gesamtrückbelastung: %s"
121
+ "Total Charged: %s","Gesamtbetrag: %s"
122
+ "Total Refunded: %s","Erstatteter Gesamtbetrag: %s"
123
+ "Transparent","Transparent"
124
+ "UPS","UPS"
125
+ "USPS","Postdienst der Vereinigten Staaten"
126
+ "United Kingdom","Vereintes Königreich"
127
+ "United States","Vereinigte Staaten"
128
+ "Unknown Reason","Unbekannter Grund"
129
+ "White Background","Weißer Hintergrund"
130
+ "Yes","Ja"
131
+ "You will be redirected to GoogleCheckout in a few seconds.","Sie werden in ein paar Sekunden zu Google Checkout umgeleitet"
app/locale/de_DE/Mage_ImportExport.csv ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s file does not exists or is not readable","Datei %s existiert nicht oder kann nicht gelesen werden"
2
+ "-- Please Select --","-- Bitte wählen --"
3
+ "Adapter must be an instance of Mage_ImportExport_Model_Import_Adapter_Abstract","Adapter muss eine Anwendung von Mage_ImportExport_Model_Import_Adapter_Abstract sein"
4
+ "Adapter object must be an instance of %s","Adapter-Objekt muss eine Instanz von %s sein"
5
+ "Adapter type must be a non empty string","Adapter Typ muss eine nicht leere Zeichenfolge sein"
6
+ "Append Complex Data","Anhang komplexe Daten"
7
+ "Attribute Code","Attributcode"
8
+ "Attribute Label","Attributsbezeichnung"
9
+ "Attribute does not has options, so filtering is impossible","Attribute haben keine Optionen, Filtern ist daher nicht möglich."
10
+ "Begin data validation","Datenvalidierung beginnen"
11
+ "Begin export of %s","Export von %s beginnen"
12
+ "Begin import of ""%s"" with ""%s"" behavior","Import von ""%s"" mit ""%s""-Verhalten beginnen"
13
+ "CSV","CSV"
14
+ "Can not determine attribute filter type","Kann die Eigenschaften des Filter-Typs nicht erkennen"
15
+ "Can not find required columns: %s","Kann die benötigten Spalten nicht finden: %s"
16
+ "Cannot get autoincrement value","Autosteigerungswert kann nicht abgerufen werden."
17
+ "Check Data","Daten prüfen"
18
+ "Checked rows: %d, checked entities: %d, invalid rows: %d, total errors: %d","Überprüfte Zeilen: %d, überprüfte Entities: %d, ungültige Zeilen: %d, Fehler insgesamt: %d"
19
+ "Column names have duplicates","Die Spaltennamen haben Duplikate"
20
+ "Column names is empty or is not an array","Spaltennamen ist leer oder keine Reihe"
21
+ "Column names: ""%s"" are invalid","Spaltennamen: ""%s"" sind ungültig"
22
+ "Customers","Kunden"
23
+ "Data is invalid or file is not uploaded","Daten sind ungültig oder Datei ist nicht hochgeladen"
24
+ "Delete Entities","Entitäten löschen"
25
+ "Destination directory is not writable","Zielverzeichnis ist nicht beschreibbar"
26
+ "Destination file is not writable","Zieldatei ist nicht beschreibbar"
27
+ "Destination file path must be a string","Zieldatei-Pfad muss eine Reihe sein"
28
+ "Done import data validation","Abgeschlossene Import-Validierung"
29
+ "Duplicate Unique Attribute for '%s'","Verdoppeln Sie das einzigartige Attribut für '%s'"
30
+ "Entity Type","Entitätstyp"
31
+ "Entity adapter obejct must be an instance of Mage_ImportExport_Model_Export_Entity_Abstract","Entität-Adapterobjekt muss eine Instanz von Mage_ImportExportModel_Export_Entity_Abstract sein."
32
+ "Entity adapter object must be an instance of Mage_ImportExport_Model_Import_Entity_Abstract","Entity-Adapter-Objekt muss eine Anwendung von Mage_ImportExport_Model_Import_Entity_Abstract sein"
33
+ "Entity is unknown","Entity ist unbekannt"
34
+ "Entity type model must be an instance of Mage_ImportExport_Model_Export_Entity_Product_Type_Abstract","Entity-Modelltyp muss eine Anwendung von Mage_ImportExport_Model_Import_Entity_Abstract sein"
35
+ "Entity type model must be an instance of Mage_ImportExport_Model_Import_Entity_Product_Type_Abstract","Entity-Modelltyp muss eine Anwendung von Mage_ImportExport_Model_Import_Entity_Abstract sein"
36
+ "Error in data structure: behaviors are mixed","Fehler in der Datenstruktur: Vorgehensweisen sind unterschiedlich"
37
+ "Error in data structure: entity codes are mixed","Fehler in der Datenstruktur: Entity-Codes sind unterschiedlich"
38
+ "Errors limit (%d) reached. Please fix errors and re-upload file","Fehlerlimit (%d) erreicht. Bitte Fehler beheben und die Datei neu hochladen."
39
+ "Export","Export"
40
+ "Export File Format","Export Dateiformat"
41
+ "Export Settings","Exporteinstellungen"
42
+ "Export has been done.","Export wurde ausgeführt"
43
+ "Exported %s rows.","%s Zeilen exportiert."
44
+ "File does not contain data.","Datei enthält keine Daten."
45
+ "File does not contain data. Please upload another one","Datei enthält keine Daten. Bitte laden Sie eine andere hoch"
46
+ "File format is unknown","Dateityp unbekannt"
47
+ "File is partially valid, but import is not possible","Datei ist teilweise gültig, Import ist aber nicht möglich"
48
+ "File is totally invalid. Please fix errors and re-upload file","Datei ist komplett ungültig. Bitte beheben Sie die Fehler und laden Sie sie erneut hoch"
49
+ "File is valid! To start import process press ""Import"" button","Datei ist gültig! Klicken Sie auf den Import-Button, um den Importvorgang zu starten."
50
+ "File is valid, but import is not possible","Datei ist gültig, Import ist aber nicht möglich"
51
+ "File was not uploaded","Datei wurde nicht hochgeladen"
52
+ "Filter","Filter"
53
+ "From","Von"
54
+ "Header column names already set","Spaltennamen in der Kopfzeile sind schon festgelegt."
55
+ "Import","Import"
56
+ "Import Behavior","Importverhalten"
57
+ "Import Settings","Importeinstellungen"
58
+ "Import has been done successfuly.","Import wurde erfolgreich ausgeführt."
59
+ "Import successfully done.","Import erfolgreich abgeschlossen."
60
+ "Import/Export","Import/Export"
61
+ "Input entity code is not equal to entity adapter code","Code der Eingabeeinheit entspricht nicht dem Adapter-Code der Einheit"
62
+ "Invalid entity","Ungültige Einheit"
63
+ "Invalid entity model","Ungültiges Entitätsmodell"
64
+ "Invalid file format","Ungültiger Dateityp"
65
+ "Invalid parameters","Ungültige Parameter"
66
+ "Invalid seek position","Ungültige Suchposition"
67
+ "Invalid value for '%s'","Ungültiger Wert für '%s'"
68
+ "Invalid value for '%s' column","Ungültiger Wert für Spalte '%s'"
69
+ "No filter data provided","Keine Filterdaten angegeben"
70
+ "No source specified","Keine Quelle angegeben"
71
+ "No valid data sent","Keine gültige Daten gesendet"
72
+ "No writer specified","Nicht Schreiber-spezifiziert"
73
+ "Node does not has model token tag","Knoten hat nicht das Schild des Modells"
74
+ "Not implemented yet","Noch nicht implementiert"
75
+ "Please fix errors and re-upload file","Bitte beheben Sie die Fehler und laden Sie erneut hoch"
76
+ "Please fix errors and re-upload file or simply press ""Import"" button to skip rows with errors","Bitte beheben Sie die Fehler und laden Sie die Datei erneut hoch, oder betätigen Sie die ""Import""-Schaltfläche um Reihen mit Fehlern zu überspringen"
77
+ "Products","Produkte"
78
+ "Replace Existing Complex Data","Bereits vorhandene komplexe Daten ersetzen"
79
+ "Select File to Import","Datei für Import wählen"
80
+ "Skip","Überspringen"
81
+ "Source file moving failed","Verschieben der Quelldatei fehlgeschlagen"
82
+ "Source file path must be a string","Quelldateipfad muss ein String sein"
83
+ "Source is not set","Quelle ist nicht festgelegt"
84
+ "Status","Status"
85
+ "There are no product types available for export","Es sind keine Produkttypen für den Export verfügbar"
86
+ "There is no data for export","Es gibt keine Daten für den Export"
87
+ "To","Nach"
88
+ "Total size of uploadable files must not exceed %s","Gesamtgröße der hochzuladenden Dateien darf %s nicht übersteigen"
89
+ "Unknown attribute filter type","Unbekannter Attributfiltertyp"
90
+ "Uploaded file has no extension","Hochgeladene Datei hat keine Dateiendung"
91
+ "Validation finished successfully","Validierung erfolgreich beendet"
92
+ "in rows","in Zeilen"
93
+ "in rows:","in Zeilen:"
app/locale/de_DE/Mage_Index.csv ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s Index process is working now. Please try run this process later.","%s Index-Verarbeitung läuft gerade. Bitte versuchen Sie, diesen Prozess später zu starten."
2
+ "%s index was rebuilt.","%s Index wurde wieder hergestellt."
3
+ "'%s' Index Process Information","""%s"" Index-Verarbeitung Information"
4
+ "Action","Aktion"
5
+ "Cannot initialize the indexer process.","Indexer-Verarbeitung konnte nicht initialisiert werden."
6
+ "Change Index Mode","Index-Modus ändern"
7
+ "Click here to go to <a href=""%s"">Cache Management</a> and refresh cache types.","Klicken Sie hier, um zur <a href=""%s"">Cacheverwaltung</a> zu gelangen und die Cachetypen zu aktualisieren."
8
+ "Click here to go to <a href=""%s"">Index Management</a> and rebuild required indexes.","Klicken Sie hier, um zur <a href=""%s"">Indexverwaltung</a> zu gelangen und nötige Indizes wiederherzustellen."
9
+ "Delete","Löschen"
10
+ "Description","Beschreibung"
11
+ "Disable","Deaktivieren"
12
+ "Enable","Aktivieren"
13
+ "General","Allgemein"
14
+ "Index","Index"
15
+ "Index Description","Index Beschreibung"
16
+ "Index Management","Index Management"
17
+ "Index Mode","Index Modus"
18
+ "Index Name","Index Name"
19
+ "Index mode","Indexmodus"
20
+ "Indexer code is not defined.","Indexer-Code nicht definiert."
21
+ "Indexer model is not defined.","Indexer-Vorlage nicht definiert."
22
+ "Indexer model should extend Mage_Index_Model_Indexer_Abstract.","Indexer-Vorlage sollte Erweiterung für Mage_Index_Model_Indexer_Abstract sein."
23
+ "Manual Update","Manuelle Aktualisierung"
24
+ "Mode","Modus"
25
+ "Never","Nie"
26
+ "No","Nein"
27
+ "One or more of the Indexes are not up to date:","Ein oder mehrere Indexe sind nicht aktuell:"
28
+ "Please select Index(es)","Bitte Index(e) auswählen"
29
+ "Please select Indexes","Bitte Indexe auswählen"
30
+ "Process Information","Informationen verarbeiten"
31
+ "Processing","Verarbeitung läuft"
32
+ "Ready","Fertig"
33
+ "Refresh","Aktualisieren"
34
+ "Reindex Data","Daten neu indexieren"
35
+ "Reindex Required","Neuindexierung erforderlich"
36
+ "Revoke","Widerrufen"
37
+ "Status","Status"
38
+ "System","System"
39
+ "The index has been saved.","Der Index wurde gespeichert."
40
+ "There was a problem with reindexing process.","Bei der Verarbeitung der Reindexierung ist ein Problem aufgetreten."
41
+ "There was a problem with saving process.","Beim Speichern ist ein Problem aufgetreten."
42
+ "Total of %d index(es) have changed index mode.","Der Index-Modus von insgesamt %d Index(en) wurde geändert."
43
+ "Total of %d index(es) have reindexed data.","Insgesamt %d Index(e) haben neu indexierte Daten."
44
+ "Update Required","Update erforderlich"
45
+ "Update on Save","Aktualisierung gespeichert."
46
+ "Updated At","Aktualisiert am"
47
+ "Yes","Ja"
app/locale/de_DE/Mage_Install.csv ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "(Make sure you keep it in a safe place.)","(Bitte bewahren Sie es sicher auf.)"
2
+ "(Optional. Leave blank for no prefix)","(Optional. Lassen Sie es aus, wenn sie kein Präfix brauchen)"
3
+ "(ver. %s)","(ver. &s)"
4
+ "Additional path added after Base URL to access your Administrative Panel (e.g. admin, backend, control etc.).","Zusätzlicher Pfad nach Base URL hinzugefügt um auf Administrationskonsole zuzugreifen (z.B. admin, backend, control etc.)."
5
+ "Admin Path","Admin Pfad"
6
+ "After successfull installation please click the button below.","Bitte klicken Sie den untenstehenden Link nach erfolgreicher Installation."
7
+ "All packages were installed, click 'OK' to continue with installation.","Alle Packages wurden installiert, klicken Sie OK um mit der Installation fortzufahren."
8
+ "Alternatively you could try the 'Manual Downloads and Upgrades' method.","Alternativ können Sie die 'Manuelle Downloads und Upgrades' Methode verwenden."
9
+ "Base URL","Base URL"
10
+ "Before you continue to your store, please make a note of your encryption key (Magento uses it to encrypt passwords, credit cards and more).","Bevor Sie zu Ihrem Shop gehen, bitte beachten Sie Ihren Kodierungsschlüssel. (Magento verwendet ihn um Passwörter, Kreditkarten und mehr zu verschlüsseln)."
11
+ "Check out our","Probieren Sie unser"
12
+ "Check this box only if it is not possible to automatically validate Secure URL, for example if HTTP authentication is required.","Wählen Sie diese Box nur an, wenn es nicht möglich ist, die Secure URL automatisch zu validieren, wie zum Beispiel wenn eine HTTP Authentifizierung erforderlich ist."
13
+ "Check this box only if it is not possible to automatically validate the Base URL.","Wählen Sie diese Box nur an, wenn es nicht möglich ist, die Base URL automatisch zu validieren."
14
+ "Choose this if you would like to test frontend and backend functionality.","Wählen Sie dies, wenn Sie Frontend- und Backendfunktionalität testen wollen."
15
+ "Configuration","Konfiguration"
16
+ "Confirm Password","Passwort bestätigen"
17
+ "Connection","Verbindung"
18
+ "Continue","Fortsetzen"
19
+ "Continue After Manual Download","Nach manuellem Download fortfahren"
20
+ "Continue Full Download / SVN Installation","Vollen Download / SVN Installation fortfahren"
21
+ "Create Admin Account","Adminkonto erstellen"
22
+ "Currently this is the most stable state available for Magento packages.","Dies ist der derzeitig stabileste Zustand für Magento Packages."
23
+ "Database","Datenbank"
24
+ "Database Connection","Datenbankverbindung"
25
+ "Database Name","Datenbankname"
26
+ "Database Name cannot be empty.","Datenbankname kann nicht leergelassen werden."
27
+ "Database Type","Datenbanktyp"
28
+ "Database connection error.","Datenbankverbindungsfehler."
29
+ "Database host","Datenbankhost"
30
+ "Database server does not support the InnoDB storage engine.","Der Datenbankserver unterstützt die InnoDB Storage-Engine nicht."
31
+ "Database user name","Datenbank Benutzername"
32
+ "Database user password","Datebank Benutzerpasswort"
33
+ "Default Currency","Standardwährung"
34
+ "Download","Download"
35
+ "Download Magento Core Modules and Updates","Magento Core Modules und Updates herunterladen"
36
+ "Downloading and installing Magento, please wait...","Magento wird heruntergeladen und installiert, bitte warten..."
37
+ "Email","E-Mail"
38
+ "Email Address","E-Mail-Adresse"
39
+ "Enable Charts","Tabellen aktivieren"
40
+ "Enable this option if you want the charts to be displayed on Dashboard.","Aktivieren Sie diese Option, wenn sie die Tabellen auf dem Armaturenbrett angezeigt haben wollen."
41
+ "Enable this option only if you have SSL available.","Aktivieren Sie diese Option nur, wenn Sie über SSL verfügen."
42
+ "Encryption Key","Kodierungsschlüssel"
43
+ "File System","Dateisystem"
44
+ "First Name","Vorname"
45
+ "Full Download / SVN Installation","Volles Download / SVN Installation"
46
+ "Get ready to experience Open-Source eCommerce Evolved.","Machen Sie sich bereit, Open-Source eCommerce Evolved zu erleben."
47
+ "Go to Backend","Zum Backend gehen"
48
+ "Go to Frontend","Zum Frontend gehen"
49
+ "Having trouble installing Magento?","Probleme bei der Installation von Magento?"
50
+ "Help Us to Keep Magento Healthy","Helfen Sie uns, Magento gesund zu halten"
51
+ "Host","Host"
52
+ "I agree to the above terms and conditions.","Ich stimme den allgemeinen Geschäftsbedingungen zu."
53
+ "If you are a developer and would like to have the latest public updates, choose this option.","Wenn Sie Entwickler sind und gerne die neusten öffentlichen Updates erhalten wollen, wählen Sie diese Option."
54
+ "If you are running PHP as CGI, your PHP processes may run under the same user as the user you used when uploading Magento files.","Falls Sie PHP als GCI benützen, könnten Ihre PHP Prozesse under dem selben User ausgeführt werden, der genutzt wurde um Magentodateien hochzuladen."
55
+ "If you are running the install wizard over a previously downloaded and installed Magento installation, proceed with this method.","Falls Sie den Installationsassistenten über eine vorher heruntergeladene und installierte Magentoinstallation laufen lassen wollen, fahren Sie mit dieser Method fort."
56
+ "If you do not wish or are not able to have Magento folders writeable for the web process, you could use PEAR executable located in the root of Magento installation.","Falls Sie es nicht wünschen oder nicht in der Lage sind, Magento Ordner schreibbar für Webprozessierung zu machen, können Sie PEAR verwenden, welches im Rootverzeichnis der Magentoinstallation zu finden ist."
57
+ "If you have downloaded the full package or installed Magento through SVN, you should skip packages installation and validation by clicking the button below.","Falls Sie das volle Package heruntergeladen oder Magento über SVN installiert haben, überspringen Sie Packageinstallation und Validierung indem Sie den untenstehenden Button klicken."
58
+ "If you wish to manage Magento packages through the web admin interface, you will need to have web writeable permissions applied to all Magento folders and files.","Falls Sie es wünschen Mangeto Packages durch das Web Admin Interface zu verwalten, müssen Sie webschreibbare Erlaubnis auf alle Magento Ordner und Dateien anwenden."
59
+ "If your server is running on MS Windows, most probably you will not need to change anything.","Falls Ihr Server auf MS Windows läuft, müssen Sie höchstwahrscheinlich nichts ändern."
60
+ "In other cases you will need to make Magento files writeable for the user that the web server process is running under.","In anderen Fällen, müssen Sie Magento Dateien schreibbar für User, unter dem der Webserverprozess läuft, machen."
61
+ "Installation","Installation"
62
+ "Installation Guide","Installationsanleitung"
63
+ "Installer does not exist for %s database type","Es existiert kein Installer für den Datenbanktyp %s"
64
+ "Last Name","Nachname"
65
+ "License Agreement","Linzenvereinbarung"
66
+ "Locale","Sprachumgebung"
67
+ "Locale settings","Spracheinstellungen"
68
+ "Localization","Lokalisierung"
69
+ "Login Information","Login Informationen"
70
+ "Magento","Magento"
71
+ "Magento Connect Manager Deployment","Magento Verbindungsmanagerentwicklung"
72
+ "Magento Installation Wizard","Magento Installationsassistent"
73
+ "Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.","Magento ist eine Schutzmarke von Magento Inc. Copyright &copy; %s Magento Inc."
74
+ "Magento uses this key to encrypt passwords, credit cards and more. If this field is left empty the system will create an encryption key for you and will display it on the next page.","Magento verwendet diesen Schlüssel um Passwörter, Kreditkarten und mehr zu verschlüsseln. Wenn dieses Feld leer gelassen wird, erstellt das System einen Kodierungsschlüssel für Sie und zeigt ihn auf der nächsten Seite an."
75
+ "Manual Downloads and Upgrades","Manuelle Downloads und Upgrades"
76
+ "No resource for %s DB model.","Keine Ressource für %s DB Modell."
77
+ "One of PHP Extensions ""%s"" must be loaded.","Eine der PHP-Erweiterungen ""%s"" muss geladen werden."
78
+ "PHP Extension '%s' loaded","PHP Erweiterung '%s' geladen"
79
+ "PHP Extensions ""%s"" must be loaded.","PHP-Erweiterung ""%s"" muss geladen werden."
80
+ "PHP extension ""%s"" must be loaded.","PHP-Erweiterung ""%s"" muss geladen werden."
81
+ "Package Management through the Web","Packageverwaltung durch das Web"
82
+ "Password","Passwort"
83
+ "Password Confirmation","Passwortbestätigung"
84
+ "Path ""%s"" must be writable.","Pfad ""%s"" muss beschreibbar sein."
85
+ "Personal Information","Persönliche Informationen"
86
+ "Please correct the user data and try again.","Bitte geben Sie korrekte Benutzerdaten ein und versuchen Sie es nochmal."
87
+ "Please make sure that <code>mod_rewrite</code> is enabled in Apache configuration.","Bitte gehen Sie sicher, dass <code>mod_rewrite</code> in der Apache Konfiguration aktiviert ist."
88
+ "Please note that it is much less stable than beta.","Bitte beachten Sie, dass es viel weniger stabil als beta ist."
89
+ "Please note that only UNIX, Linux and Mac OS X shells are currently supported. For Windows use the '%s' option.","Bitte beachten Sie, dass nur UNIX, Linux und Mac OS X Shells derzeit unterstützt werden. Für Windows, verwenden Sie die Option '%s'."
90
+ "Please set all required settings before clicking Continue","Bitte setzen Sie alle erforderlichen Einstellungen bevor Sie auf Weiter klicken"
91
+ "Preferred stability: %s","Bevorzugte Stabilität: %s"
92
+ "Proceed With Automatic Download (%s)","Mit Automatischem Download (%s) fortfahren"
93
+ "Provide a complete base URL for SSL connection. For example: %s","Stellen Sie eine vollständige Base URL für die SSL Verbindung zur Verfügung. Zum Beispiel: %s"
94
+ "Report All Bugs","Alle Bugs Melden"
95
+ "Required Fields","Pflichtfelder"
96
+ "Response from server isn\'t valid.","Serverantwort ist nicht gültig."
97
+ "Run admin interface with SSL","Admininterface mit SSL ausführen"
98
+ "Run this in your shell from Magento root folder:","Führen Sie dies in Ihrer Shell aus dem Magento Rootordner aus:"
99
+ "Save Session Data In","Sessiondaten speichern in"
100
+ "Save Session Files In","Sessiondateien speichern in"
101
+ "Secure Base URL","Secure Base URL"
102
+ "Session Storage Options","Session Storage Optionen"
103
+ "Setting preferred state to: %s","Bevorzugter Zustand auf %s gesetzt"
104
+ "Skip Base URL Validation Before the Next Step","Base URL Validierung vor dem nächsten Schritt überspringen"
105
+ "Skip Secure URL validation before next step","Base URL Validierung vor nächsten Schritt überspringen"
106
+ "Tables Prefix","Tabellenpräfix"
107
+ "The URL ""%s"" is invalid.","Die URL ""%s"" ist ungültig."
108
+ "The URL ""%s"" is not accessible.","Die URL ""%s"" ist nicht verfügbar."
109
+ "The database server version doesn\'t match system requirements (required: %s, actual: %s).","Die Version des Datenbankservers stimmt nicht mit den Systemanforderungen (benötigt: %s, vorhanden: %s) überein."
110
+ "The table prefix should contain only letters (a-z), numbers (0-9) or underscores (_), the first character should be a letter.","Das Tabellen-Präfix darf nur Buchstaben (a-z), Ziffern (0-9) oder Unterstriche (_) enthalten; das erste Zeichen sollte ein Buchstabe sein."
111
+ "There was a problem installing Magento packages. Please read the log, correct errors and try again.","Beim Installieren der Magento Packages ist ein Fehler aufgetreten. Bitte lesen Sie das Log, korrigieren Sie Fehler und versuchen sie es erneut."
112
+ "Time Zone","Zeitzone"
113
+ "Use Secure URLs (SSL)","Secure URLs (SSL) verwenden"
114
+ "Use Web Server (Apache) Rewrites","Webserver (Apache) Rewrites verwenden"
115
+ "User Name","Benutzername"
116
+ "User Password","Benutzerpasswort"
117
+ "Username","Benutzername"
118
+ "Validation","Validierung"
119
+ "Web access options","Optionen für Webzugang"
120
+ "Welcome","Wilkommen"
121
+ "Welcome to Magento's Installation Wizard","Wilkommen zum Magento Installationsassistenten"
122
+ "You can specify server port, ex.: localhost:3307<br />If you are not using default UNIX socket, you can specify it here instead of host, ex.: /var/run/mysqld/mysqld.sock","Sie können den Server-Port spezifizieren, Ex.: Lokalhost:3307<br />Wenn Sie nicht den Standard-UNIX-Anschluss verwenden, können Sie dies hier anstelle des Host spezifizieren, Ex.: /var/run/mysqld/mysqld.sock"
123
+ "You could enable this option to use web server rewrites functionality for improved search engines optimization.","Sie können diese Option aktivieren, um die Webserver Rewrites Funktionalität für verbesserte Suchmachinenoptimierung zu verwenden."
124
+ "You're All Set","Sie sind bereit"
125
+ "You're All Set!","Sie sind bereit!"
app/locale/de_DE/Mage_Log.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ "Enable Log Cleaning","Aufräumen des Verlaufs anschalten"
2
+ "Error Email Recipient","Email-Empfänger bei auftretenden Fehlern"
3
+ "Error Email Sender","Email-Absender bei auftretenden Fehlern"
4
+ "Error Email Template","Email-Vorlage bei auftretenden Fehlern"
5
+ "Frequency","Frequenz"
6
+ "Log Cleaning","Aufräumen des Verlaufs"
7
+ "Log cleanup Warnings","Warnungen während Aufräumen des Verlaufs"
8
+ "Save Log, Days","Speichere Verlauf, Tage"
9
+ "Start Time","Startzeit"
app/locale/de_DE/Mage_Media.csv ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ "An error occurred while creating the image.","Ein Fehler trat auf während der Erstellung des Bildes."
2
+ "The image does not exist or is invalid.","Das Bild ist nicht vorhanden oder ungültig."
3
+ "This content requires last version of Adobe Flash Player. <a href=""%s"">Get Flash</a>","Dieser Inhalt erfordert die neueste Version des Adobe Flash Players. <a href=""%s"">Flash herunterladen</a>
4
+ "
app/locale/de_DE/Mage_Newsletter.csv ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " Copy","Kopie"
2
+ "Action","Aktion"
3
+ "Add New Template","Neues Template hinzufügen"
4
+ "Add to Queue","Zur Warteschlange hinzufügen"
5
+ "Allow Guest Subscription","Gast-Abonnement erlauben"
6
+ "An error occurred while saving your subscription.","Ein Fehler ist beim Speichern Ihres Abonnements aufgetreten."
7
+ "Are you sure that you want to delete this template?","Sind Sie sicher, dass Sie diese Vorlage löschen möchten?"
8
+ "Are you sure that you want to strip all tags?","Sind Sie sicher, dass Sie alle Tags entfernen wollen?"
9
+ "Back","Zurück"
10
+ "Cancel","Abbrechen"
11
+ "Cancelled","Abgebrochen"
12
+ "Cannot mark as received subscriber.","Nicht als emfangender Abonnent markierbar."
13
+ "Confirmation Email Sender","Bestätigungs-E-Mail-Absender"
14
+ "Confirmation Email Template","Bestätigungs-E-Mail-Template"
15
+ "Confirmation request has been sent.","Bestätigungs-Anfrage wurde gesendet."
16
+ "Convert to Plain Text","In einfachen Text umwandeln"
17
+ "Create Newsletter Template","Newsletter-Template erstellen"
18
+ "Customer","Kunde"
19
+ "Customer First Name","Kunden-Vorname"
20
+ "Customer Last Name","Nachname des Kunden"
21
+ "Customer My Account Newsletter Subscriptions","Kunde Mein Konto Newsletter Abonnements"
22
+ "Date Added","Hinzugefügt am"
23
+ "Date Updated","Aktualisierungsdatum"
24
+ "Delete","Löschen"
25
+ "Delete Selected Problems","Ausgewählte Probleme löschen"
26
+ "Delete Template","Template löschen"
27
+ "Do you really want to cancel the queue?","Wollen Sie wirklich die Warteschlange abbrechen?"
28
+ "Duplicate template code.","Doppelter Template-Code."
29
+ "Edit Newsletter","Newsletter bearbeiten"
30
+ "Edit Newsletter Template","Newsletter-Template bearbeiten"
31
+ "Edit Queue","Warteschlange bearbeiten"
32
+ "Edit Template","Template bearbeiten"
33
+ "Email","E-Mail"
34
+ "Enter your email address","Geben Sie Ihre E-Mail-Adresse ein"
35
+ "Error Code","Fehlercode"
36
+ "Error Text","Fehlertext"
37
+ "Follow this link to unsubscribe <!-- This tag is for unsubscribe link --><a href=""{{var subscriber.getUnsubscriptionLink()}}"">{{var subscriber.getUnsubscriptionLink()}}</a>","Folgen sie diesem Link um sich abzumelden &lt;!-- This tag is for unsubscribe link --&gt;<a href=""{{var subscriber.getUnsubscriptionLink()}}"">{{var subscriber.getUnsubscriptionLink()}}</a>"
38
+ "Guest","Gast"
39
+ "ID","ID"
40
+ "Invalid queue selected.","Ungültige Warteschlange ausgewählt."
41
+ "Invalid subscription ID.","Ungültige Abonnement ID."
42
+ "Invalid subscription confirmation code.","Ungültiger Abonnement Bestätigungscode."
43
+ "Message","Nachricht"
44
+ "Need to Confirm","Bestätigung erforderlich"
45
+ "New Newsletter Template","Neue Newsletter Vorlage"
46
+ "New Template","Neue Vorlage"
47
+ "Newsletter","Newsletter"
48
+ "Newsletter Message Preview","Newsletternachricht Vorschau"
49
+ "Newsletter Problem Reports","Newsletter Problembericht"
50
+ "Newsletter Queue","Newsletter Warteschlange"
51
+ "Newsletter Section","Newsletterabschnitt"
52
+ "Newsletter Sign-up:","Newsletter-Anmeldung:"
53
+ "Newsletter Styles","Newsletterstile"
54
+ "Newsletter Subscribers","Newsletter Bezieher"
55
+ "Newsletter Subscription","Newsletter abonnieren"
56
+ "Newsletter Subscription Form Before","Vorhergehende Anmeldung zum Newsletter"
57
+ "Newsletter Subscriptions","Newsletter Abos"
58
+ "Newsletter Templates","Newsletter Vorlagen"
59
+ "Newsletter subscription confirmation","Newsletter Abonnementbestätigung"
60
+ "Newsletter subscription success","Newsletter Abonnement erfolgreich"
61
+ "Newsletter unsubscription success","Newsletter Abonnement erfolgreich gekündigt"
62
+ "No Templates Found","Keine Vorlagen gefunden"
63
+ "No problems found.","Keine Probleme gefunden."
64
+ "No subscribers selected.","Keine Abonnenten gewählt."
65
+ "Not Activated","Nicht aktiviert"
66
+ "Not Sent","Nicht gesendet"
67
+ "Pause","Pause"
68
+ "Paused","Pausiert"
69
+ "Please enter a valid email address.","Bitte geben Sie eine gültige E-Mail Adresse ein"
70
+ "Please enter new template name","Bitte geben Sie einen neuen Vorlagennamen ein"
71
+ "Please refer to exeption.log","Bitte sehen sie hier nach: Ausnahmen.log"
72
+ "Please select subscriber(s)","Bitte wählen Sie den/die Abonnent/en"
73
+ "Preview","Vorschau"
74
+ "Preview Template","Vorschau der Vorlage"
75
+ "Processed","Verarbeitet"
76
+ "Queue Date Start","Warteschlange Datum Start"
77
+ "Queue Finish","Warteschlange Fertig"
78
+ "Queue Information","Warteschlange Informationen"
79
+ "Queue Newsletter...","Warteschlange Newsletter..."
80
+ "Queue Start","Warteschlange Start"
81
+ "Queue Subject","Warteschlange Gegendstand"
82
+ "Recipients","Empfänger"
83
+ "Reset","Zurücksetzen"
84
+ "Resume","Fortfahren"
85
+ "Return HTML Version","HTML Version zurückholen"
86
+ "Save As","Speichern unter"
87
+ "Save Newsletter","Newsletter speichern"
88
+ "Save Template","Vorlage speichern"
89
+ "Save and Resume","Speichern und fortfahren"
90
+ "Selected problem subscribers have been unsubscribed.","Ausgewählte Problemabonnenten wurden gekündigt."
91
+ "Selected problems have been deleted.","Ausgewählte Probleme wurden gelöscht."
92
+ "Sender","Absender"
93
+ "Sender Email","Absender E-Mail"
94
+ "Sender Name","Absender Name"
95
+ "Sending","Wird gesendet"
96
+ "Sent","Gesendet"
97
+ "Sign Up for Our Newsletter:","Melden Sie sich für unseren Newsletter an:"
98
+ "Sign up for our newsletter","Melden Sie sich für unseren Newsletter an"
99
+ "Sorry, but administrator denied subscription for guests. Please <a href=""%s"">register</a>.","Wir bitten um Entschuldigung, aber der Administrator hat die Anmeldung für Gäste verweigert. Bitte <a href=""%s"">register</a>."
100
+ "Start","Start"
101
+ "Status","Status"
102
+ "Store","Shop"
103
+ "Store View","Store-Ansicht"
104
+ "Subject","Betreff"
105
+ "Submit","Übermitteln"
106
+ "Subscribe","Abonnieren"
107
+ "Subscribed","Abonniert"
108
+ "Subscriber","Abonnent"
109
+ "Subscribers","Abonnenten"
110
+ "Subscribers From","Abonennten aus"
111
+ "Subscription Options","Abonnement Optionen"
112
+ "Success Email Sender","Erfolg E-Mail-Absender"
113
+ "Success Email Template","Erfolg E-Mail-Vorlage"
114
+ "Template Content","Vorlagen-Inhalt"
115
+ "Template Information","Vorlagen-Information"
116
+ "Template Name","Name der Vorlage"
117
+ "Template Styles","Vorlagenstile"
118
+ "Template Subject","Vorlagen-Betreff"
119
+ "Template Type","Vorlagentyp"
120
+ "Thank you for your subscription.","Danke für Ihr Abonnement."
121
+ "The subscription has been removed.","Das Abonnement wurde entfernt."
122
+ "The subscription has been saved.","Das Abonnement wurde gespeichert."
123
+ "There was a problem with the subscription.","Bei dem Abonnement ist ein Problem aufgetreten."
124
+ "There was a problem with the subscription: %s","Beim Abonnement ist ein Problem aufgetreten: %s"
125
+ "There was a problem with the un-subscription.","Bei der Kündigung des Abonnements ist ein Problem aufgetreten."
126
+ "This email address is already assigned to another user.","Diese E-Mail-Adresse wird schon von einem anderen Nutzer verwendet."
127
+ "Type","Typ"
128
+ "Unconfirmed","Unbestätigt"
129
+ "Unsubscribe","Abonnement kündigen"
130
+ "Unsubscribe Selected","""Abonnement beenden"" ausgewählt"
131
+ "Unsubscribed","Abonnements gekündigt"
132
+ "Unsubscription Email Sender","Kündigungs-E-Mail-Absender"
133
+ "Unsubscription Email Template","E-Mail-Vorlage zur Beendigung des Abonnements"
134
+ "View Newsletter","Newsletter ansehen"
135
+ "Website","Website"
136
+ "You have been unsubscribed.","Ihr Abonnement wurde gekündigt."
137
+ "Your subscription has been confirmed.","Ihr Abonnement wurde bestätigt."
app/locale/de_DE/Mage_Oauth.csv ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%name% '%value%' is too long. It must has length %min% symbols.","%Name% '%Wert%' ist zu lang. Es muss eine Länge von %min% Zeichen haben."
2
+ "%name% '%value%' is too short. It must has length %min% symbols.","%Name% '%Wert%' ist zu kurz. Es muss eine Länge von %min% Zeichen haben."
3
+ "* Required Fields","* Notwendige Felder"
4
+ "<strong>%s</strong> requests access to your account","<strong>%s</strong> erfordert Zugriff auf Ihr Konto"
5
+ "Admin","Admin"
6
+ "After authorization application will have access to you account.","Nach der Autorisierungsanwendung haben Sie Zugriff auf Ihr Konto."
7
+ "An error occurred on confirm authorize.","Es ist ein Fehler beim Bestätigen der Autorisierung aufgetreten."
8
+ "An error occurred on delete action.","Es ist ein Fehler beim Löschen der Aktion aufgetreten."
9
+ "An error occurred on delete application.","Es ist ein Fehler beim Löschen der Applikation aufgetreten."
10
+ "An error occurred on reject authorize.","Es ist ein Fehler beim Ablehnen der Autorisierung aufgetreten."
11
+ "An error occurred on saving consumer data.","Es ist ein Fehler beim Speichern der Verbraucherdaten aufgetreten."
12
+ "An error occurred on update revoke status.","Es ist ein Fehler bei der Aktualuisierung des Widerruf-Status aufgetreten."
13
+ "An error occurred while deleting the consumer.","Es ist ein Fehler beim Löschen des Verbrauchers aufgetreten."
14
+ "An error occurred.","Es ist ein Fehler aufgetreten."
15
+ "An error occurred. Your authorization request is invalid.","Es ist ein Fehler aufgetreten. Ihre Autorisierungsanforderung ist ungültig."
16
+ "App Name","App Name"
17
+ "Application ""%s"" has been deleted.","Anwendung ""%s"" wurde entfernt."
18
+ "Application ""%s"" has been enabled.","Anwendung ""%s"" wurde aktiviert."
19
+ "Application ""%s"" has been revoked.","Anwendung ""%s"" wurde widerrufen."
20
+ "Application Name","Applikationsname"
21
+ "Application not found.","Anwendung nicht gefunden."
22
+ "Are you sure you want to delete this application?","Sind Sie sicher, dass Sie diese Anwendung entfernen möchten?"
23
+ "Are you sure you want to disable this application?","Sind Sie sicher, dass Sie diese Anwendung deaktivieren möchten?"
24
+ "Are you sure you want to enable this application?","Sind Sie sicher, dass Sie diese Anwendung aktivieren möchten?"
25
+ "Authorization confirmed","Autorisierung bestätigt"
26
+ "Authorization confirmed.","Zulassung bestätigt."
27
+ "Authorize","Autorisieren"
28
+ "Authorize application","Anwendung autorisieren"
29
+ "Authorized Tokens","Autorisierte Zeichen"
30
+ "Callback URL","Rückruf-URL"
31
+ "Cleanup Probability","Bereinigungswahrscheinlichkeit"
32
+ "Cleanup Settings","Einstellungen für das Bereinigen"
33
+ "Close","Schließen"
34
+ "Confirm OAuth token authorization","Bestätigen Sie OAuth Zeichen-Autorisierung"
35
+ "Confirm token authorization Pop Up for admin","Bestätigen Sie das gewählte Autorisierungs-Popup für Admin"
36
+ "Confirm token authorization for admin","Bestätigen Sie die gewählte Autorisierung für Admin"
37
+ "Confirmation Of Authorization","Bestätigung der Autorisierung"
38
+ "Consumer Information","Verbraucherinformation"
39
+ "Consumer Name","Verbrauchername"
40
+ "Consumers","Verbraucher"
41
+ "Created At","Erstellte At"
42
+ "Customer","Kunde"
43
+ "Customer My Account My OAuth Applications","Kundenanwendungen Mein Konto Meine OAuth"
44
+ "Delete","Löschen"
45
+ "Disable","Deaktivieren"
46
+ "Disabled","Deaktiviert"
47
+ "Edit","Bearbeiten"
48
+ "Edit Consumer","Verbraucher bearbeiten"
49
+ "Email","E-Mail"
50
+ "Email Address","E-Mail-Adresse"
51
+ "Enable","Aktivieren"
52
+ "Enabled","Aktiviert"
53
+ "Entry with ID #%s not found.","Eintrag mit ID #%s nicht gefunden."
54
+ "Expiration Period","Ablaufzeitraum"
55
+ "Give the verifier code to application administrator","Geben Sie den Prüfer-Code zum Anwendungsadministrator an"
56
+ "ID","ID"
57
+ "Invalid Callback URL","Ungültige Rückruf-URL"
58
+ "Invalid ID parameter.","Ungültige ID-Parameter."
59
+ "Invalid Rejected Callback URL","Ungültige abgelehnte Rückruf-URL"
60
+ "Invalid entry ID.","Ungültige Eintrag-ID"
61
+ "Invalid revoke status.","Ungültiger Widerruf-Status."
62
+ "Key","Schlüssel"
63
+ "Log In","Login"
64
+ "Log in as a customer","Einloggen als Verbraucher"
65
+ "Log in as admin","Einloggen als Admin"
66
+ "Log in as customer","Einloggen als Kunde"
67
+ "Log in to use <strong>%s</strong>","Loggen Sie sich ein, um <strong>%s</strong> zu verwenden"
68
+ "Login","Login"
69
+ "My Applications","Meine Applikationen"
70
+ "Name","Name"
71
+ "New Consumer","Neuer Verbraucher"
72
+ "OAuth","OAuth"
73
+ "OAuth Admin My Apps","OAuth Admin Meine Apps"
74
+ "OAuth Authorized Tokens","OAuth autorisierte Zeichen"
75
+ "OAuth Consumers","OAuth Verbraucher"
76
+ "OAuth authorization Pop Up for customer","OAuth Autorisierungs-Popup für Kunden"
77
+ "OAuth authorization for admin","OAuth Autorisierung für Admin"
78
+ "OAuth authorization for customer","OAuth Autorisierung für Kunden"
79
+ "OAuth authorization simple for admin","OAuth Autorisierung einfach für Admin"
80
+ "Password","Passwort"
81
+ "Permissions","Rechte"
82
+ "Please login to proceed authorization.","Bitte loggen Sie ein, um mit der Autorisierung fortzufahren."
83
+ "Please select needed row(s).","Bitte wählen Sie die benötigte(n) Zeile(n)."
84
+ "Please select revoke status.","Bitte wählen Sie Status widerrufen."
85
+ "REST - My Apps","REST - Meine Apps"
86
+ "REST - OAuth Authorized Tokens","REST - autorisierte OAuth Zeichen"
87
+ "REST - OAuth Consumers","REST - OAuth-Verbraucher"
88
+ "Reject","Verwerfen"
89
+ "Reject OAuth token authorization","OAuth Zeichen-Autorisierung ablehnen"
90
+ "Reject authorization","Autorisierung ablehnen"
91
+ "Reject token authorization Pop Up for admin","Ablehnen des gewählten Popups der Autorisierung für Admin"
92
+ "Reject token authorization for admin","Ablehnen der gewählten Autorisierung für Admin"
93
+ "Rejected Callback URL","Abgelehnte Rückruf-URL"
94
+ "Rejection Of Authorization","Ablehnung der Autorisierung"
95
+ "Revoked","Widerrufen"
96
+ "Role Name","Rollenname"
97
+ "Save","Speichern"
98
+ "Save and Continue Edit","Speichern und weiter bearbeiten"
99
+ "Secret","Geheim"
100
+ "Selected entries enabled.","Ausgewählte Einträge aktiviert."
101
+ "Selected entries has been deleted.","Ausgewählte Einträge wurden entfernt."
102
+ "Selected entries revoked.","Ausgewählte Einträge widerrufen."
103
+ "Status","Status"
104
+ "System","System"
105
+ "The application access request is rejected.","Die Anwendung Zugangsanforderung wird zurückgewiesen."
106
+ "The consumer has been deleted.","Der Verbraucher wurde entfernt."
107
+ "The consumer has been saved.","Der Verbraucher wurde gespeichert."
108
+ "Token Status Change","Statusänderung des Zeichens"
109
+ "Token Status Change Email Template","E-Mail-Template Statusänderung des Zeichens"
110
+ "Unable to find a consumer.","Es kann kein Verbraucher gefunden werden."
111
+ "User ID","Benutzerkennung"
112
+ "User Name","Benutzername"
113
+ "User Type","Benutzertyp"
114
+ "Verifier code: %s","Prüfer-Code: %s"
115
+ "You have no applications.","Sie haben keine Anwendungen."
116
+ "deleted","gelöscht"
117
+ "enabled","aktiviert"
118
+ "revoked","widerrufen"
app/locale/de_DE/Mage_Page.csv ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s Item(s)","%s Artikel"
2
+ "%s-%s of %s","%s-%s von %s"
3
+ "&copy; 2012 Magento Demo Store. All Rights Reserved.","&copy; 2012 Magento Demo Store. Alle Rechte vorbehalten."
4
+ "&copy; 2013 Magento Demo Store. All Rights Reserved.","&copy; 2013 Magento Demo Store. Alle Rechte vorbehalten."
5
+ "(Shift-)Click or drag to change value","(Umschalt-)Klick oder ziehen, um Wert zu ändern"
6
+ "(ver. %s)","(ver. %s)"
7
+ "- Click on any of the time parts to increase it","- Klicken Sie auf einen der Zeitwerte um den Wert zu erhöhen"
8
+ "- Hold mouse button on any of the above buttons for faster selection.","- Halten Sie einen der Buttons gedrückt für eine Schnellauswahl."
9
+ "- Use the %s buttons to select month","- Benutzen Sie die %s Buttons für die Monatsauswahl"
10
+ "- Use the %s, %s buttons to select year","- Benutzen Sie die %s, %s Buttons für die Jahresauswahl"
11
+ "- or Shift-click to decrease it","- oder Umschalt-Taste gedrückt halten und klicken, um den Wert zu verkleinern"
12
+ "- or click and drag for faster selection.","- oder klicken und ziehen Sie für eine Schnellauswahl."
13
+ "-- Please Select --","-- Bitte auswählen –"
14
+ "1 column","1 Spalte"
15
+ "2 columns with left bar","2 Spalten mit linker Leiste"
16
+ "2 columns with right bar","2 Spalten mit rechter Leiste"
17
+ "3 columns","3 Spalten"
18
+ "About the calendar","Über den Kalender"
19
+ "Account","Konto"
20
+ "All Empty Layout Pages","Alle leeren Layout-Seiten"
21
+ "All One-Column Layout Pages","Alle einspaltigen Layout-Seiten"
22
+ "All Pages","Alle Seiten"
23
+ "All Pages (Print Version)","Alle Seiten (Druckversion)"
24
+ "All Three-Column Layout Pages","Alle dreispaltigen Layout-Seiten"
25
+ "All Two-Column Layout Pages (Left Column)","Alle zweispaltigen Layout-Seiten (Linke Spalte)"
26
+ "All Two-Column Layout Pages (Right Column)","Alle zweispaltigen Layout-Seiten (Rechte Spalte)"
27
+ "Allow","Erlauben"
28
+ "Breadcrumbs","Breadcrumbs"
29
+ "Click <a href=""%s"">here</a> if nothing has happened","Klicken Sie <a href=""%s"">hier</a>, wenn nichts passiert ist"
30
+ "Close","Schließen"
31
+ "Close Window","Fenster schließen"
32
+ "DHTML Date/Time Selector","DHTML Date/Time Selektor"
33
+ "Date selection:","Datumsauswahl:"
34
+ "Default Description","Standard Beschreibung"
35
+ "Default welcome msg!","Standard Willkommensnachricht!"
36
+ "Display %s first","Zeige %s zuerst"
37
+ "Distributed under GNU LGPL. See %s for details.","Veröffentlicht unter der GNU LGPL. Mehr Informationen unter %s."
38
+ "Drag to move","Ziehen zum Bewegen"
39
+ "Empty","Leer"
40
+ "For latest version visit: %s","Für die letzte Version besuchen Sie bitte: %s"
41
+ "Free Shipping on orders over 50$","Gratisversand bei Bestellungen über $ 50."
42
+ "Go Today","Heute aufrufen"
43
+ "Help Us to Keep Magento Healthy","Helfen Sie uns Magento gesund zu halten"
44
+ "Interface Language","Sprache der Benutzeroberfläche"
45
+ "Items %s to %s of %s total","Artikel %s bis %s von insgesamt %s"
46
+ "JavaScript seems to be disabled in your browser.","JavaScript scheint in Ihrem Browser deaktiviert zu sein."
47
+ "Left Column","Linke Spalte"
48
+ "Left Column First (shows above main column on smaller screens)","Linke Spalte zuerst (wird über der Hauptspalte auf kleineren Bildschirmen angezeigt)"
49
+ "Main Content Area","Hauptinhaltsbereich"
50
+ "Menu","Menü"
51
+ "Navigation Bar","Navigationsleiste"
52
+ "Next","Weiter"
53
+ "Next month (hold for menu)","Nächster Monat (gedrückt halten für Menü)"
54
+ "Next year (hold for menu)","Nächstes Jahr (gedrückt halten für Menü)"
55
+ "Page Bottom","Seitenende"
56
+ "Page Footer","Seitenfuß"
57
+ "Page Header","Seitenkopf"
58
+ "Page Top","Seitenanfang"
59
+ "Page:","Seite:"
60
+ "Prev. month (hold for menu)","Vor. Monat (gedrückt halten für Menü)"
61
+ "Prev. year (hold for menu)","Vor. Jahr (gedrückt halten für Menü)"
62
+ "Previous","Zurück"
63
+ "Redirecting...","Umleitung…"
64
+ "Report All Bugs","Melden Sie alle Fehler"
65
+ "Results per page","Ergebnisse pro Seite"
66
+ "Right Column","Rechte Spalte"
67
+ "Search","Suche"
68
+ "Select Store","Store auswählen"
69
+ "Select Store:","Store auswählen:"
70
+ "Select date","Datum auswählen"
71
+ "Show","Anzeigen"
72
+ "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","Dies ist ein Demo-Store. Jegliche Bestellung in diesem Store wird weder beachtet noch ausgeführt."
73
+ "This website requires cookies to provide all of its features. For more information on what data is contained in the cookies, please see our <a href=""%s"">Privacy Policy page</a>. To accept cookies from this site, please click the Allow button below.","Diese Webseite erfordert Cookies, um alle Funktionen anbieten zu können. Für weitere Informationen darüber, welche Daten in den Cookies enthalten sind, lesen Sie bitte unsere <a href=""%s"">Seite zu Datenschutzrichtlinien</a>. Um Cookies von dieser Seite zu akzeptieren, klicken Sie bitte den Schaltknopf Zulassen unten."
74
+ "Time selection:","Zeitauswahl:"
75
+ "Time:","Zeit:"
76
+ "View All ","Alles anzeigen"
77
+ "Welcome, %s!","Willkommen, %s!"
78
+ "You must have JavaScript enabled in your browser to utilize the functionality of this website.","Sie müssen JavaScript in Ihrem Browser aktivieren um alle Funktionen dieser Webseite nutzen zu können."
79
+ "Your Language","Ihre Sprache"
80
+ "Your Language:","Ihre Sprache:"
81
+ "per page","pro Seite"
app/locale/de_DE/Mage_PageCache.csv ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "An error occurred while clearing the external full page cache.","Es ist ein Fehler beim Löschen der externen ganzseitigen Cache aufgetreten."
2
+ "Cookie Lifetime (seconds)","Cookie Lifetime (Cookie-Laufzeit) (Sekunden)"
3
+ "Enable External Cache","Externes Cache aktivieren"
4
+ "External Cache Control","Externe Cache-Steuerung"
5
+ "External Full Page Cache Settings","Externe ganzseitige Cache Einstellungen"
6
+ "External Page Cache","Externer Seiten-Cache"
7
+ "External full page cache.","Externes ganzseitiges Cache."
8
+ "Failed to load external cache control","Fehler beim Laden des externen Cache-Steuerelements"
9
+ "Flush External Page Cache","Externes Seiten Cache spülen (Flush externes Seiten Cache)"
10
+ "If empty, default value will be used.","Wenn leer, wird der Standardwert verwendet."
11
+ "The external full page cache has been cleaned.","Das externe ganzseitige Cache wurde gereinigt."
12
+ "Zend Full Page Cache","Zend ganzseitiges Seiten Cache"
app/locale/de_DE/Mage_Paygate.csv ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "3D Secure","3D Secure"
2
+ "3D Secure Card Validation","3D Secure-Kartenbestätigung"
3
+ "API Login ID","API Login-ID"
4
+ "Accepted Currency","Akzeptierte Währung"
5
+ "Allow Partial Authorization","Teilweise Autorisierung erlauben"
6
+ "Are you sure you want to cancel your payment? Click OK to cancel your payment and release the amount on hold. Click Cancel to enter another credit card and continue with your payment.","Sind Sie sicher, dass Sie die Zahlung abbrechen möchten? Klicken Sie auf OK, um Ihre Zahlung abzubrechen und den Betrag wieder frei verfügbar zu machen. Klicken Sie auf Abbrechen, um eine andere Kreditkarte anzugeben und mit der Zahlung fortzufahren."
7
+ "Authorize Only","Nur genehmigen"
8
+ "Authorize and Capture","Genehmigen und erfassen"
9
+ "Authorize.Net Transaction ID %s","Authorize.Net Transaktions-ID %s"
10
+ "Authorize.net","Genehmigen.net"
11
+ "Cancel","Abbrechen"
12
+ "Centinel API URL","Centinel API-URL"
13
+ "Credit Card Types","Arten von Kreditkarten"
14
+ "Credit Card Verification","Überprüfung der Kreditkarte"
15
+ "Credit Card: xxxx-%s","Kreditkarte: xxxx-%s"
16
+ "Debug","Debug"
17
+ "Email Customer","Kunden E-Mail"
18
+ "Enabled","Aktiviert"
19
+ "Error in payment gateway.","Fehler beim Payment Gateway."
20
+ "Gateway actions are locked because the gateway cannot complete one or more of the transactions. Please log in to your Authorize.Net account to manually resolve the issue(s).","Gateway-Aktionen wurden gesperrt, weil der Gateway eine oder mehrere Transaktionen nicht verarbeiten konnte. Bitte loggen Sie sich in Ihren Authorize.Net-Account ein, um dieses Problem manuell zu beheben."
21
+ "Gateway error: %s","Fehler des Gateway: %s"
22
+ "If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.","Es wird ein Standardwert verwendet, falls das Feld freigelassen wird. Eine benutzerdefinierte URL darf nach der CardinalCommerce-Vereinbarung angegeben werden."
23
+ "Invalid amount for authorization.","Ungültiger Betrag um genehmigt zu werden."
24
+ "Invalid amount for capture.","Ungültiger Betrag für die Erfassung."
25
+ "Invalid amount for partial authorization.","Ungültiger Betrag für die teilweise Autorisierung."
26
+ "Invalid amount for refund.","Ungültiger Betrag für eine Rückerstattung."
27
+ "Invalid split tenderId ID.","Ungültige gespaltene Angebotsidentität"
28
+ "Invalid transaction ID.","Ungültige Transaktions-ID"
29
+ "Maximum Order Total","Höchstsumme der Bestellung"
30
+ "Merchant's Email","E-Mail des Händlers"
31
+ "Minimum Order Total","Mindestsumme der Bestellung"
32
+ "New Order Status","Stand der neuen Bestellung"
33
+ "Parent Authorize.Net transaction (ID %s) expired","Parent Authorize.Net-Transaktion (ID %s) abgelaufen
34
+
35
+ "
36
+ "Payment Action","Zahlungsvorgang"
37
+ "Payment authorization error.","Fehler bei der Zahlungsermächtigung."
38
+ "Payment canceling error.","Fehler bei Zahlungsabbruch."
39
+ "Payment capturing error.","Fehler bei Zahlungserfassung."
40
+ "Payment from Applicable Countries","Bezahlung aus den entsprechenden Ländern"
41
+ "Payment from Specific Countries","Bezahlung aus bestimmten Ländern"
42
+ "Payment partial authorization error.","Fehler bei teilweiser Autorisierung."
43
+ "Payment refunding error.","Fehler bei der Rückerstattung."
44
+ "Payment updating error.","Fehler beim Zahlungsupdate."
45
+ "Payment voiding error.","Fehler beim Stornieren der Zahlung."
46
+ "Processed Amount","Bearbeiteter Betrag"
47
+ "Remaining Balance","Verbleibender Betrag"
48
+ "Severe 3D Secure Card Validation","Strenge Absicherung der 3D geschützten Karte"
49
+ "Severe Validation Removes Chargeback Liability on Merchant","Die bestehende strenge Absicherung entzieht den Verkäufer der Verbindlichkeit Ausgleichsbuchungen nachkommen zu müssen"
50
+ "Shopping cart contents and/or address has been changed.","Artikel im Einkaufswagen und/oder die Adresse wurden geändert."
51
+ "Sort Order","Sortierreihenfolge"
52
+ "Test Mode","Testmodus"
53
+ "The amount on your credit card is insufficient to complete your purchase. The available amount has been put on hold. To complete your purchase click OK and specify additional credit card number. To cancel the purchase and release the amount on hold, click Cancel.","Der Betrag auf Ihrer Kreditkarte reicht nicht aus, um den Kauf durchzuführen. Auf den verfügbaren Betrag kann nicht zugegriffen werden. Um den Kauf durchzuführen, klicken Sie bitte auf OK und geben Sie eine weitere Kreditkartennummer an. Um den Kauf abzubrechen und auf den Betrag wieder zugreifen zu können, klicken Sie bitte auf Abbrechen."
54
+ "There was an error canceling transactions. Please contact us or try again later.","Es ist ein Fehler beim Abbruch der Transaktion aufgetreten. Bitte kontaktieren Sie uns oder probieren Sie es später noch einmal."
55
+ "Title","Titel"
56
+ "Transaction Key","Transaction key"
57
+ "You have reached the maximum number of credit card allowed to be used for the payment.","Sie haben die maximale Anzahl an Kreditkarten erreicht, die Sie für die Bezahlung verwenden dürfen."
58
+ "You have reached the maximum number of credit cards that can be used for one payment. The available amounts on all used cards were insufficient to complete payment. The payment has been cancelled and amounts on hold have been released.","Sie haben die maximale Anzahl an Kreditkarten erreicht, die Sie für eine Bezahlung verwenden dürfen. Die verfügbaren Beträge auf allen verwendeten Karten reichten nicht aus, um die Bezahlung abschließen zu können. Der Zahlungsprozess wurde abgebrochen und die Beträge sind wieder frei verfügbar."
59
+ "Your credit card has been declined. Click OK to specify another credit card to complete your purchase. Click Cancel to release the amount on hold and select another payment method.","Ihre Kredtikarte wurde abgelehnt. Klicken Sie OK, um eine andere Kreditkarte anzugeben, damit Sie den Zahlungsvorgang abschließen können. Klicken Sie auf Abbrechen, um den verwendeten Betrag wieder verfügbar zu machen und eine andere Zahlungsmethode auszuwählen."
60
+ "Your order has not been placed, because contents of the shopping cart and/or address has been changed. Authorized amounts from your previous payment that were left pending are now released. Please go through the checkout process for your recent cart contents.","Ihre Bestellung wurde nicht aufgegeben, weil Artikel in Ihrem Einkaufswagen und/oder die Adresse geändert wurden. Bereits autorisierte, ausstehende Beträge von Ihrer vorherigen Zahlung sind wieder frei verfügbar. Bitte führen Sie den Zahlungsvorgang noch einmal durch, um Ihre neu hinzugekommenen Artikel zu erfassen."
61
+ "Your payment has been cancelled. All authorized amounts have been released.","Ihre Zahlung wurde abgebrochen. Alle autorisierten Beträge sind wieder frei verfügbar."
62
+ "amount %s","Betrag %s"
63
+ "authorize","Autorisieren"
64
+ "authorize and capture","Autorisieren und Erfassen"
65
+ "capture","Erfassen"
66
+ "failed","fehlgeschlagen"
67
+ "refund","Rückerstattung"
68
+ "successful","erfolgreich"
69
+ "void","ungültig"
app/locale/de_DE/Mage_Payment.csv ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s %s cycle.","%s %s Zyklus."
2
+ "* Required Fields","*Pflichtfelder"
3
+ "--Please Select--","--Bitte auswählen--"
4
+ "3D Secure Card Validation","3D Secure Card Validierung"
5
+ "3D Secure Credit Card Validation","3D Secure Kreditkartenvalidierung"
6
+ "<label>Make Check payable to:</label> %s","<label>Scheck zahlbar machen für</label> %s"
7
+ "A value is required for live mode. Refer to your CardinalCommerce agreement.","Ein Wert ist für live mode erforderlich. Siehe CardinalCommerce Vereinbarung."
8
+ "Allow Initial Fee Failure","Erstzahlungsfehlschlag erlauben"
9
+ "An internal reference ID is required to save the payment profile.","Eine interne ReferenzID ist erforderlich um das Zahlungsprofil zu speichern."
10
+ "Authorize action is not available.","Autorisierungsaktion ist nicht verfügbar."
11
+ "Auto Bill on Next Cycle","Automatische Abrechnung beim nächsten Zyklus"
12
+ "Automatically Invoice All Items","Automatische Abrechnung aller Artikel"
13
+ "Automatically bill the outstanding balance amount in the next billing cycle (if there were failed payments).","Den ausstehenden Betrag automatisch im nächsten Rechnungslauf verrechnen (wenn es fehlgeschlagene Zahlungen gab)."
14
+ "Bank Transfer Payment","Bezahlung durch Banküberweisung"
15
+ "Billing Agreement status is not set.","Abrechnungsvereinbarungsstatus ist nicht gesetzt."
16
+ "Billing Amount","Rechnungsbetrag"
17
+ "Billing Frequency","Abrechnungsfrequenz"
18
+ "Billing Period","Abrechnungsperiode"
19
+ "Billing Period Unit","Abrechnungsperiodeneinheit"
20
+ "Billing period unit is not defined or wrong.","Abrechnungsperiodeneinheit ist nicht definiert oder falsch."
21
+ "Cannot retrieve the payment info model object.","Zahlungsinfomodellobjekt kann nicht abgefragt werden."
22
+ "Cannot retrieve the payment information object instance.","Zahlungsinformationen Objektinstanz können nicht abgerufen werden."
23
+ "Cannot retrieve the payment method code.","Code der Zahlungsart kann nicht abgerufen werden."
24
+ "Cannot retrieve the payment method model object.","Zahlungsartmodellobjekt kann nicht abgefragt werden."
25
+ "Capture action is not available.","Auffang-Aktion ist nicht verfügbar."
26
+ "Card Verification Number","Kartenprüfnummer"
27
+ "Cash On Delivery Payment","Barbezahlung bei Lieferung"
28
+ "Centinel API URL","Centinel API URL"
29
+ "Check / Money Order","Scheck / Zahlungsansweisung"
30
+ "Credit Card Number","Kreditkartennummer"
31
+ "Credit Card Number: xxxx-%s","Kreditkartennummer: xxxx-%s"
32
+ "Credit Card Type","Kreditkartentyp"
33
+ "Credit Card Type: %s","Kreditkartentyp: %s"
34
+ "Credit Card Types","Arten von Kreditkarten"
35
+ "Credit card number mismatch with credit card type.","Kreditkarten-Nummer passt nicht zum Kreditkarten-Typ"
36
+ "Credit card type is not allowed for this payment method.","Der Kreditkarten-Typ ist für diese Zahlungsvariante nicht erlaubt."
37
+ "Currency","Währung"
38
+ "Currency code is undefined.","Währungscode ist nicht definiert."
39
+ "Customer ID is not set.","KundenID ist nicht gesetzt."
40
+ "Day","Tag"
41
+ "Debug Mode","Debug Modus"
42
+ "Enabled","Aktiviert"
43
+ "Expiration Date","Ablaufdatum"
44
+ "Expiration Date: %s/%s","Ablaufdatum: %s/%s"
45
+ "Full name of the person receiving the product or service paid for by the recurring payment.","Voller Name des Empfängers des Produkts oder Services, für das mit turnusmäßigen Zahlungen bezahlt wird."
46
+ "Incorrect credit card expiration date.","Falsches Verfallsdatum der Kreditkarte"
47
+ "Initial Fee","Erstzahlung"
48
+ "Initial non-recurring payment amount due immediately upon profile creation.","Erster nicht turnusmäßiger Zahlungsbetrag ist sofort nach Profilerstellung fällig."
49
+ "Instructions","Anleitungen"
50
+ "Internal Reference ID","Interne ReferenzID"
51
+ "Invalid Credit Card Number","Ungültige Kreditkarten-Nummer"
52
+ "Issue Number","Ausgabenumer"
53
+ "Make Check Payable to","Scheck zahlbar machen für"
54
+ "Make Check payable to:","Scheck zahlbar machen für:"
55
+ "Make Check payable to: %s","Scheck zahlbar machen für: %s"
56
+ "Maximum Billing Cycles","Maximale Anzahl an Rechnungsläufen"
57
+ "Maximum Order Total","Höchstsumme der Bestellung"
58
+ "Maximum Payment Failures","Maximale Anzahl an fehlgeschlagenen Zahlungen"
59
+ "Maximum Trial Billing Cycles","Maximale Anzahl an Proberechnungsläufen"
60
+ "Merchant ID","Händler-ID"
61
+ "Minimum Order Total","Mindestsumme der Bestellung"
62
+ "Month","Monat"
63
+ "N/A","Nicht verfügbar"
64
+ "Name on Card","Name auf Karte"
65
+ "Name on the Card","Name auf der Karte"
66
+ "Name on the Card: %s","Name des Inhabers: %s"
67
+ "New Order Status","Stand der neuen Bestellung"
68
+ "Number of billing periods that make up one billing cycle.","Anzahl von Abrechnungsperioden die einen Rechnungslauf ausmachen."
69
+ "Order action is not available.","Befehlsaktion ist nicht verfügbar."
70
+ "Overrides API URL that may be specified by a payment method.","Überschreibt API URL die durch ein Zahlungsart spezifiziert ist."
71
+ "Password","Passwort"
72
+ "Payment ID: %s","ZahlungsID: %s"
73
+ "Payment Method","Zahlungsart"
74
+ "Payment Methods","Zahlungsarten"
75
+ "Payment Methods Section","Zahlungsartenbereich"
76
+ "Payment Reference ID","Zahlungsreferenz ID"
77
+ "Payment Services","Zahlungsservices"
78
+ "Payment from Applicable Countries","Bezahlung aus den entsprechenden Ländern"
79
+ "Payment from Specific Countries","Bezahlung aus bestimmten Ländern"
80
+ "Payment method code is not set.","Zahlungsartcode ist nicht gesetzt."
81
+ "Payment method code is undefined.","Zahlungsartcode ist nicht definiert."
82
+ "Payment profile is invalid:\n%s","Zahlungsprofil ist ungültig:\n%s"
83
+ "Period frequency is wrong.","Periodenfrequenz ist falsch."
84
+ "Please enter a valid credit card verification number.","Bitte geben Sie eine gültige Verifikationsnummer für Ihre Kreditkarte ein."
85
+ "Processor ID","Prozessor ID"
86
+ "Purchase Order","Auftrag"
87
+ "Purchase Order Number","Auftragsnummer"
88
+ "Purchase Order Number:","Auftragsnummer:"
89
+ "Purchase Order Number: %s","Auftragsnummer: %s"
90
+ "Recurring Profile Start Date","Wiederkehrendes Profilstartdatum"
91
+ "Recurring profile start date has invalid format.","Wiederkehrendes Profilstartdatum hat ein ungültiges Format."
92
+ "Reference ID is not set.","ReferenzID ist nicht gesetzt."
93
+ "Refund action is not available.","Rückerstattung Aktion ist nicht verfügbar."
94
+ "Repeats %s time(s).","Wiederholt %s mal(e)."
95
+ "Repeats until suspended or canceled.","Wiederholt bis angehalten oder abgebrochen."
96
+ "Request Card Security Code","Kartensicherheitscode anfordern"
97
+ "Saved CC","Gespeichertes CC"
98
+ "Schedule Description","Ablaufplanbeschreibung"
99
+ "Schedule description must be not empty.","Ablaufplanbeschreibung darf nicht leer sein."
100
+ "Selected payment type is not allowed for billing country.","Der ausgewählte Zahlungstyp ist für das in der Rechnungsadresse genannte Land nicht erlaubt."
101
+ "Send Check to","Sende Scheck an"
102
+ "Send Check to:","Sende Scheck an:"
103
+ "Severe 3D Secure Card Validation","Severe 3D Secure Card Validierung"
104
+ "Severe validation removes chargeback liability on merchant.","Severe Validierung entfernt Ausgleichhaftung des Händlers."
105
+ "Shipping Amount","Versandbetrag"
106
+ "Short description of the recurring payment. By default equals to the product name.","Kurze Beschreibung der turnusmäßigen Zahlung. Standardmäßig ist das der Produktname."
107
+ "Sort Order","Sortierreihenfolge"
108
+ "Start Date","Startdatum"
109
+ "Start date has invalid format.","Startdatum hat ein ungültiges Format."
110
+ "Start date is undefined.","Startdatum ist nicht definiert."
111
+ "Subscriber Name","Abonnentenname"
112
+ "Switch/Solo/Maestro Issue Number","Switch/Solo/Maestro-Issue Number"
113
+ "Switch/Solo/Maestro Only","Nur Switch/Solo/Maestro"
114
+ "Switch/Solo/Maestro Start Date","Switch/Solo/Maestro-Start Date"
115
+ "Tax Amount","Steuerbetrag"
116
+ "Test Mode","Testmodus"
117
+ "The date when billing for the profile begins.","Das Datum an dem die Abrechnung für das Profil beginnt."
118
+ "The number of billing cycles for payment period.","Die Anzahl der Abrechnungszeiträume für die Zahlungsart."
119
+ "The number of scheduled payments that can fail before the profile is automatically suspended.","Die Anzahl der planmäßigen Zahlungen die fehlschlagen dürfen bis das Profil automatisch suspendiert wird."
120
+ "The payment review action is unavailable.","Die Zahlungsreviewaktion ist nicht verfügbar."
121
+ "The requested Payment Method is not available.","Die ausgewählte Zahlungsmethode ist nicht verfügbar."
122
+ "Title","Titel"
123
+ "Trial Billing Amount","Probeabrechnungsbetrag"
124
+ "Trial Billing Frequency","Probeabrechnungsfrequenz"
125
+ "Trial Billing Period Unit","Probeabrechnungsperiodeneinheit"
126
+ "Trial Period","Probeperiode"
127
+ "Trial billing amount is wrong.","Probeabrechnungsbetrag ist falsch."
128
+ "Trial billing period unit is wrong.","Probeabrechnungsperiodeneinheit ist falsch."
129
+ "Trial period frequency is wrong.","Probeperiodenfrequenz ist falsch."
130
+ "Trial period max cycles is wrong.","Maximale Zyklen für Probeperiode ist falsch."
131
+ "Two Weeks","Zwei Wochen"
132
+ "Unable to save Billing Agreement:","Abrechnungsvereinbarung kann nicht gespeichert werden:"
133
+ "Unit for billing during the subscription period.","Einheit für Abrechnung der Abonnementperiode."
134
+ "Unsupported currency code: %s.","Nicht unterstützter Währungscode: %s."
135
+ "Void action is not available.","Leer-Aktion ist nicht verfügbar."
136
+ "Week","Woche"
137
+ "What is this?","Was ist das?"
138
+ "Whether to suspend the payment profile if the initial fee fails or add it to the outstanding balance.","Ob das Zahlungsprofil suspendiert werden soll, wenn die Erstzahlung fehlschlägt, oder ob der Betrag zur ausstehenden Bilanz hinzugefügt werden soll."
139
+ "Wrong %s specified.","%s ist falsch spezifiziert."
140
+ "Wrong or empty billing amount specified.","Falscher oder leerer Abrechnungsbetrag spezifiziert."
141
+ "Year","Jahr"
142
+ "Zero Subtotal Checkout","Leere Zwischensumme Checkout"
app/locale/de_DE/Mage_Paypal.csv ADDED
@@ -0,0 +1,623 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "
2
+ <a href=""https://financing.paypal.com/ppfinportal/content/whyUseFinancing"" target=""_blank"">Why Advertise Financing?</a><br/>
3
+ <strong>Give your sales a boost when you advertise financing.</strong><br/>PayPal helps turn browsers into buyers with financing
4
+ from Bill Me Later&#174;. Your customers have more time to pay, while you get paid up front – at no additional cost to you.
5
+ Use PayPal’s free banner ads that let you advertise Bill Me Later&#174; financing as a payment option when your customers check out with PayPal.
6
+ The PayPal Advertising Program has been shown to generate additional purchases as well as increase consumer's average purchase sizes by 15%
7
+ or more. <a href=""https://financing.paypal.com/ppfinportal/content/forrester"" target=""_blank"">See Details</a>.
8
+ ","<a href=""https://financing.paypal.com/ppfinportal/content/whyUseFinancing"" target=""_blank"">Why Advertise Financing?</a><br/>
9
+ <strong>Give your sales a boost when you advertise financing.</strong><br/>PayPal helps turn browsers into buyers with financing
10
+ from Bill Me Later&#174;. Your customers have more time to pay, while you get paid up front – at no additional cost to you.
11
+ Use PayPal’s free banner ads that let you advertise Bill Me Later&#174; financing as a payment option when your customers check out with PayPal.
12
+ The PayPal Advertising Program has been shown to generate additional purchases as well as increase consumer's average purchase sizes by 15%
13
+ or more. <a href=""https://financing.paypal.com/ppfinportal/content/forrester"" target=""_blank"">See Details</a>."
14
+ "
15
+ <a href=""https://financing.paypal.com/ppfinportal/content/whyUseFinancing"" target=""_blank"">Why Advertise Financing?</a><br/>
16
+ <strong>Give your sales a boost when you advertise financing.</strong><br/>PayPal helps turn browsers into buyers with financing
17
+ from Bill Me Later&#174;. Your customers have more time to pay, while you get paid up front – at no additional cost to you.
18
+ Use PayPal’s free banner ads that let you advertise Bill Me Later&#174; financing as a payment option when your customers check out with PayPal.
19
+ The PayPal Advertising Program has been shown to generate additional purchases as well as increase consumer's average purchase sizes by 15%
20
+ or more. <a href=""https://financing.paypal.com/ppfinportal/content/forrester"" target=""_blank"">See Details</a>.
21
+ ","<a href=""https://financing.paypal.com/ppfinportal/content/whyUseFinancing"" target=""_blank"">Why Advertise Financing?</a><br/>
22
+ <strong>Give your sales a boost when you advertise financing.</strong><br/>PayPal helps turn browsers into buyers with financing
23
+ from Bill Me Later&#174;. Your customers have more time to pay, while you get paid up front – at no additional cost to you.
24
+ Use PayPal’s free banner ads that let you advertise Bill Me Later&#174; financing as a payment option when your customers check out with PayPal.
25
+ The PayPal Advertising Program has been shown to generate additional purchases as well as increase consumer's average purchase sizes by 15%
26
+ or more. <a href=""https://financing.paypal.com/ppfinportal/content/forrester"" target=""_blank"">See Details</a>."
27
+ "
28
+ <a href=""https://financing.paypal.com/ppfinportal/content/whyUseFinancing"" target=""_blank"">Why Advertise Financing?</a><br/>
29
+ <strong>Give your sales a boost when you advertise financing.</strong><br/>PayPal helps turn browsers into buyers with financing
30
+ from Bill Me Later&#174;. Your customers have more time to pay, while you get paid up front – at no additional cost to you.
31
+ Use PayPal’s free banner ads that let you advertise Bill Me Later&#174; financing as a payment option when your customers check out with PayPal.
32
+ The PayPal Advertising Program has been shown to generate additional purchases as well as increase consumer's average purchase sizes by 15%
33
+ or more. <a href=""https://financing.paypal.com/ppfinportal/content/forrester"" target=""_blank"">See Details</a>.
34
+ ","<a href=""https://financing.paypal.com/ppfinportal/content/whyUseFinancing"" target=""_blank"">Why Advertise Financing?</a><br/>
35
+ <strong>Give your sales a boost when you advertise financing.</strong><br/>PayPal helps turn browsers into buyers with financing
36
+ from Bill Me Later&#174;. Your customers have more time to pay, while you get paid up front – at no additional cost to you.
37
+ Use PayPal’s free banner ads that let you advertise Bill Me Later&#174; financing as a payment option when your customers check out with PayPal.
38
+ The PayPal Advertising Program has been shown to generate additional purchases as well as increase consumer's average purchase sizes by 15%
39
+ or more. <a href=""https://financing.paypal.com/ppfinportal/content/forrester"" target=""_blank"">See Details</a>."
40
+ "-OR-","-oder-"
41
+ "120 x 240","120 x 240"
42
+ "120 x 600","120 x 600"
43
+ "120 x 90","120 x 90"
44
+ "190 x 100","190 x 100"
45
+ "2-pixel perimeter around the header space.","2-pixel Umkreis um das Feld der Kopfzeile"
46
+ "234 x 400","234 x 400"
47
+ "234 x 60","234 x 60"
48
+ "250 x 250","250 x 250"
49
+ "300 x 50","300 x 50"
50
+ "3D Secure","3D Secure Verfahren"
51
+ "3D Secure Card Validation","3D Secure Card Validierung"
52
+ "3D Secure validation is required for Maestro cards. Supporting of American Express cards require additional agreement. Learn more at <a href=""http://www.paypal.com/amexupdate"">http://www.paypal.com/amexupdate</a>.","Für Maestro-Karten wird eine 3D Secure-Bestätigung benötigt. Die Verwendung von American Express-Karten setzt eine weitere Vereinbarung voraus. Mehr Informationen dazu auf <a href=""http://www.paypal.com/amexupdate"">http://www.paypal.com/amexupdate</a>."
53
+ "468 x 60","468 x 60"
54
+ "728 x 90","728 x 90"
55
+ "800 x 66","800 x 66"
56
+ "<a href=""http://www.magentocommerce.com/paypal"">Start accepting payments via PayPal!</a>","<a href=""http://www.magentocommerce.com/paypal"">Akzeptieren Sie jetzt auch PayPal-Zahlungen!</a>"
57
+ "A case that has been resolved and close requires a reimbursement.","Ein gelöster und abgeschlossener Fall erfordert eine Rückerstattung."
58
+ "A reversal has occurred on this transaction because of a customer dispute suspecting unauthorized spoof.","Diese Transaktion wurde aufgrund eines Kundenstreitfalls mit dem Verdacht nicht befugter Manipulation aufgehoben."
59
+ "A reversal has occurred on this transaction because you have given the customer a refund.","Diese Transaktion wurde aufgehoben, da Sie dem Kunden eine Erstattung gegeben haben."
60
+ "A reversal has occurred on this transaction due to a chargeback by your customer.","Diese Transaktion wurde aufgehoben, da Ihr Kunde eine Rückbuchung durchgeführt hat."
61
+ "A reversal has occurred on this transaction due to a complaint about the transaction from your customer.","Diese Transaktion wurde aufgehoben, da Ihr Kunde sich über die Transaktion beschwert hat."
62
+ "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee.","Diese Transaktion wurde aufgehoben, da Ihr Kunde eine Geld-Zurück-Garantie ausgelöst hat."
63
+ "A value is required for live mode. Refer to your CardinalCommerce agreement.","Ein Wert ist für live mode erforderlich. Siehe CardinalCommerce Vereinbarung."
64
+ "ACH Deposit (Hold for Dispute or Other Investigation)","ACH Einlage (Für Dispute oder andere Untersuchungen zurückgehalten)"
65
+ "ACH Deposit (Reversal)","ACH Einlage (Stornierung)"
66
+ "ACH Funding for Funds Recovery from Account Balance","ACH Finanzierung der Zurückgewinnung des Kontostands"
67
+ "ACH Withdrawal","ACH Abhebung"
68
+ "API Authentication Methods","API-Authentifikationsmethoden"
69
+ "API Certificate","API-Zertifikat"
70
+ "API Password","API Passwort"
71
+ "API Signature","API Signatur"
72
+ "API Username","API Benutzername"
73
+ "API Uses Proxy","API benutzt Proxy"
74
+ "Ability for buyer to purchase without PayPal account.","Möglichkeit für Käufer ohne PayPal Konto einzukaufen"
75
+ "Accept credit card and PayPal payments securely.","Akzeptieren Sie sicher Kreditkarten- und PayPal-Zahlungen."
76
+ "Accept credit cards, debit cards and PayPal payments securely.","Akzeptieren Sie sicher Kreditkarten, Debitkarten und PayPal-Zahlungen."
77
+ "Accept payments in your shopping cart. PayPal will process your card payments through the Payflow Gateway.","Akzeptieren Sie Zahlungen in Ihren Einkaufswagen. PayPal wird Ihre Kartenzahlungen durch das Payflow-Gateway abwickeln."
78
+ "Accept payments with a PCI compliant checkout that keeps customers on your site.","Akzeptieren Sie Zahlungen mit einer PCI-konformen Kasse, damit Kunden auf Ihrer Webseite bleiben."
79
+ "Accept payments with a PCI-compliant checkout that keeps customers on your site.","Akzeptieren Sie Zahlungen mit einer PCI-konformen Kasse, damit Kunden auf Ihrer Webseite bleiben."
80
+ "Accept payments with a completely customizable checkout page.","Akzeptieren Sie Zahlungen mit einer komplett anpassbaren Kassen-Webseite."
81
+ "Accept payments with a completely customizable checkout.","Akzeptieren Sie Zahlungen mit einer komplett anpassbaren Kasse."
82
+ "Acceptance Mark","Akzeptanz Kennzeichnung"
83
+ "Acceptance Mark Image","Akzeptanz Kennzeichnungs-Logo"
84
+ "Account-to-Account Payment, initiated by PayPal","Konto-zu-Konto Zahlung, von PayPal eingeleitet"
85
+ "Add PayPal as an additional payment method to your checkout page to increase your sales.","Fügen Sie Ihrer Kassen-Webseite PayPal als zusätzliche Zahlungsmethode hinzu, um Ihren Umsatz zu steigern."
86
+ "Add PayPal as an additional payment method to your checkout page.","Fügen Sie Ihrer Kassen-Webseite PayPal als zusätzliche Zahlungsmethode hinzu."
87
+ "Add another payment method to your existing solution or as a stand-alone option.","Ergänzen Sie Ihre bestehende Lösung um eine zusätzliche Zahlungsmethode oder fügen Sie sie als eigenständige Option hinzu."
88
+ "Additional Options","Zusätzliche Optionen"
89
+ "Address","Adresse"
90
+ "Address Verification System Response","Adressen Prüfsystem Rückmeldung"
91
+ "Advanced Settings","Erweiterte Einstellungen"
92
+ "Advertise Bill Me Later","Bill Me Later bewerben"
93
+ "All the address information matched","Alle Adressdaten stimmen überein"
94
+ "Allow in Billing Agreement Wizard","Assistent für die Rechnungsvereinbarung wird zugelassen"
95
+ "Allowable values: ""paypal"", ""primary"" (default), your_custom_value (a custom payment page style from your merchant account profile).","Erlaubte Werte: ""paypal"", ""primary"" (Standard), ihr_eigener_wert (ein benutzerdefinierter Stil für Ihre Zahlungsseite, den Sie in Ihrem Händlerkonto-Profil festgelegt haben)."
96
+ "Allowed Credit Card Types","Zulässige Kreditkarten"
97
+ "Also affects mini-shopping cart.","Wirkt sich auch auf den Mini-Warenkorb aus."
98
+ "Are you sure you want to leave this page? You will need to go through the checkout steps again.","Sind Sie sicher, dass Sie diese Seite verlassen wollen? Sie müssen wieder die Checkout-Schritte durchlaufen."
99
+ "Ask Customer","Beim Kunden anfragen"
100
+ "Attempted Authentication, Bad Result","Versuchte Authentifizierung, falsches Ergebnis"
101
+ "Attempted Authentication, Good Result","Versuchte Authentifizierung, richtiges Ergebnis"
102
+ "Auction Payment other than through eBay","Eine andere Auktionszahlung als über eBay"
103
+ "Authenticated, Bad Result","Authentifiziert, falsches Ergebnis"
104
+ "Authenticated, Good Result","Authentifiziert, richtiges Ergebnis"
105
+ "Authorization","Bewilligung"
106
+ "Authorization Honor Period (days)","Autorisation Ehrenzeitraum (Tage)"
107
+ "Authorization expired.","Genehmigung abgelaufen"
108
+ "Authorization transaction is required to void.","Genehmigungs-Transaktion zur Aufhebung erforderlich"
109
+ "Authorization was voided by merchant.","Genehmigung wurde vom Händler für ungültig erklärt"
110
+ "Authorized amount of %s.","Autorisierte Menge der %s"
111
+ "Authorizing amount of %s is pending approval on gateway.","Autorisation der Anzahl der %s wartet auf die Zulassung."
112
+ "Auto","Automatisch"
113
+ "AutoSweep","Selbstdurchlauf"
114
+ "Available Balance","Verfügbares Guthaben"
115
+ "Balance Manager Account Bonus","Guthaben-Manager Kontobonus"
116
+ "Basic Settings - PayPal Express Checkout","Grundeinstellungen - PayPal Express-Kasse"
117
+ "Basic Settings - PayPal Integral Evolution","Grundeinstellungen - PayPal Integral Evolution"
118
+ "Basic Settings - PayPal Pasarela integral","Grundeinstellungen - PayPal Pasarela integral"
119
+ "Basic Settings - PayPal Payflow Link","Grundeinstellungen - PayPal Payflow Link"
120
+ "Basic Settings - PayPal Payflow Pro","Grundeinstellungen - PayPal Payflow Pro"
121
+ "Basic Settings - PayPal Payments Advanced","Grundeinstellungen - PayPal Erweiterte Zahlungen"
122
+ "Basic Settings - PayPal Payments Pro","Grundeinstellungen - PayPal Zahlungen Pro"
123
+ "Basic Settings - PayPal Payments Pro Hosted Solution","Grundeinstellungen - PayPal Zahlungen Pro gehostete Lösung"
124
+ "Basic Settings - PayPal Payments Standard","Grundeinstellungen - PayPal Zahlungen Standard"
125
+ "Basic Settings - PayPal Pro","Grundeinstellungen - PayPal Pro"
126
+ "Basic Settings - PayPal Website Payments Plus","Grundeinstellungen - PayPal Webseiten-Zahlungen Plus"
127
+ "Basic Settings - PayPal Website Payments Pro","Grundeinstellungen - PayPal Webseiten-Zahlungen Pro"
128
+ "Basic Settings - PayPal Website Payments Pro Hosted Solution","Grundeinstellungen - PayPal Webseiten-Zahlungen Pro gehostete Lösung"
129
+ "Basic Settings - PayPal Website Payments Pro Payflow Edition","Grundeinstellungen - PayPal Webseiten-Zahlungen Pro Payflow Edition"
130
+ "Basic Settings - PayPal Website Payments Standard","Grundeinstellungen - PayPal Webseiten-Zahlungen Standard"
131
+ "Billing Address","Rechnungsadresse"
132
+ "Billing Agreement Signup","Anmeldung zur Rechnungsvereinbarung"
133
+ "Billing Information","Rechnungsinformationen"
134
+ "Bonus for first ACH Use","Bonus für erste ACH-Benutzung"
135
+ "Both section above must be complete. ","Beide Abschnitte oben müssen komplettiert sein."
136
+ "Buyer Credit Payment","Käuferkredit Zahlung"
137
+ "Buyer claims that a possible duplicate payment was made to the merchant.","Käufer behauptet, dass eine mögliche Doppelzahlung an den Händler getätigt wurde."
138
+ "Buyer claims that he did not receive goods or service.","Käufer behauptet, dass er die Ware bzw. den Service nicht erhalten hat."
139
+ "Buyer claims that he/she did not authorize transaction.","Käufer behauptet, dass er/sie diese Transaktion nicht autorisiert hat."
140
+ "Buyer claims that the goods or service received differ from merchant’s description of the goods or service.","Käufer behauptet, dass die erhaltene Ware bzw. der Service sich von der Waren- bzw. Service-Beschreibung des Händlers unterscheidet."
141
+ "Buyer claims that the received merchandise is unsatisfactory, defective, or damaged.","Käufer behauptet, dass die erhaltene Ware nicht zufriedenstellend, defekt oder beschädigt ist."
142
+ "Buyer\'s Tax ID","Steuernummer des Käufers"
143
+ "Buyer\'s Tax ID Type","Art der Steuernummer des Käufers"
144
+ "By default it is ""reports.paypal.com"".","Standardmäßige Einstellung ist ""reports.paypal.com""."
145
+ "CNPJ","CNPJ"
146
+ "CPF","CPF"
147
+ "CVV Entry is Editable","CVV-Eingabe kann bearbeitet werden"
148
+ "CVV2 Check Result by PayPal","CVV2 Prüfergebnis durch PayPal"
149
+ "Can not send new order email.","Kann keine neue Bestellungs-E-Mail senden."
150
+ "Cannot create target file for reading reports.","Zieldatei zum Lesen der Berichte kann nicht erstellt werden."
151
+ "Catalog Category Page","Katalog Kategorieseite"
152
+ "Catalog Product Page","Katalog Produktseite"
153
+ "Centinel API URL","Centinel Api URL"
154
+ "Centinel Custom API URL","Centinel Custom API-URL"
155
+ "Charge-off","abbuchen"
156
+ "Chargeback","Rücklastschrift"
157
+ "Checkout Cart Page","Kasse Warenkorbseite"
158
+ "Checkout with PayPal","Mit PayPal abmelden"
159
+ "Checkout with PayPal Bill Me Later","Checkout mit PayPal Bill Me Later"
160
+ "Choose a secure bundled payment solution for your business.","Wählen Sie eine sichere, verknüpfte Zahlungslösung für Ihr Geschäft."
161
+ "City","Stadt"
162
+ "Click here if you are not redirected within 10 seconds...","Klicken Sie hier, wenn Sie nicht innerhalb von 10 Sekunden weitergeleitet werden..."
163
+ "Close","Schließen"
164
+ "Company","Unternehmen"
165
+ "Complaint","Beschwerde"
166
+ "Completion Date","Fertigstellungsdatum"
167
+ "Configure","Konfigurieren"
168
+ "Connect your merchant account with a PCI-compliant gateway that lets customers pay without leaving your site.","Verbinden Sie Ihr Händlerkonto mit einem PCI-konformen Gateway, mit dem Kunden zahlen können, ohne Ihre Webseite zu verlassen."
169
+ "Connect your merchant account with a fully customizable gateway that lets customers pay without leaving your site.","Verbinden Sie Ihr Händlerkonto mit einem vollständig anpassbaren Gateway, über das Kunden zahlen können, ohne Ihre Webseite zu verlassen."
170
+ "Connecting to PayPal SFTP server to fetch new reports. Are you sure you want to proceed?","Verbindung zum PayPal SFTP Server um neue Berichte zu holen, wird erstellt. Sind Sie sicher, dass sie fortfahren wollen?"
171
+ "Continue","Weiter"
172
+ "Countries Payment Applicable From","Länder Zahlungen gültig ab"
173
+ "Country","Land"
174
+ "Coupon Redemption","Coupon-Einlösung"
175
+ "Credit","Guthaben"
176
+ "Credit Card Settings","Kreditkarten-Einstellung"
177
+ "Currency Conversion required to cover negative balance","Währungsumrechnung erforderlich, um negatives Saldo zu decken"
178
+ "Custom","Kundenspezifisch"
179
+ "Custom Endpoint Hostname or IP-Address","Benutzerdefinierter Endpoint Hostname oder IP-Adresse"
180
+ "Custom Path","Benutzerdefinierter Pfad"
181
+ "Customer Information","Kundeninformation"
182
+ "Customer did not include a confirmed address.","Kunde hat keine bestätigte Adresse angegeben"
183
+ "Customer failed to pay.","Kunde hat nicht bezahlt."
184
+ "Customer used non-confirmed address.","Kunde benutzte eine nicht bestätigte Adresse."
185
+ "Daily","Täglich"
186
+ "Debit","Soll"
187
+ "Debit Card Cash Back","Debitkarte Cash Back"
188
+ "Debit Card Transaction","Debitkarte Überweisung"
189
+ "Debit or Credit","Soll oder Haben"
190
+ "Debug Mode","Debug Modus"
191
+ "Direct Payment API","Direktzahlung API"
192
+ "Discount","Rabatt"
193
+ "Display","Display"
194
+ "Display Express Checkout in the Payment Information step","Anzeige der Express-Kaufabwicklung im Schritt Zahlungsinformationen"
195
+ "Displays on catalog pages and homepage.","Anzeige auf Katalogseiten und auf der Homepage."
196
+ "Dispute","Streitfall"
197
+ "Don't have a PayPal account? Simply enter your email address.","Sie haben noch kein PayPal-Konto? Tragen Sie einfach Ihre Email-Adresse ein."
198
+ "Dynamic","Dynamisch"
199
+ "EFT Funding (German banking)","EFT Finanzierung (Deutsches Banksystem)"
200
+ "Edit","Bearbeiten"
201
+ "Edit Payment Information","Zahlungsinformationen bearbeiten"
202
+ "Edit Shopping Cart","Warenkorb bearbeiten"
203
+ "Email Address","E-Mail-Adresse"
204
+ "Email Associated with PayPal Merchant Account","Email ist mit PayPal Händler-Konto verknüpft"
205
+ "Email Associated with PayPal Merchant Account (Optional)","E-Mail, die zum PayPal-Händlerkonto gehört (optional)"
206
+ "Enable Automatic Fetching","Automatische Abholung aktivieren"
207
+ "Enable Bill Me Later","Bill Me Later aktivieren"
208
+ "Enable Express Checkout","Express-Kasse aktivieren"
209
+ "Enable PayPal Guest Checkout","PayPal Gast-Abmeldung aktivieren"
210
+ "Enable Payflow Link","Payflow Link aktivieren"
211
+ "Enable SSL verification","SSL-Verifizierung aktivieren"
212
+ "Enable this Solution","Diese Lösung aktivieren"
213
+ "Enabled","Aktiviert"
214
+ "Event","Vorgang"
215
+ "Event Code","Vorgang-Schlüssel"
216
+ "Every 10 days","alle 10 Tage"
217
+ "Every 14 days","alle 14 Tage"
218
+ "Every 3 days","alle 3 Tage"
219
+ "Every 30 days","alle 30 Tage"
220
+ "Every 40 days","alle 40 Tage"
221
+ "Every 7 days","alle 7 Tage"
222
+ "Exact Match. Address and Postal Code. International","Genaue Übereinstimmung. Adresse und Postleitzahl. International"
223
+ "Exact Match. Address and Postal Code. UK-specific","Genaue Übereinstimmung. Adresse und Postleitzahl. GB-spezifisch"
224
+ "Exact Match. Address and nine-digit ZIP code","Genaue Übereinstimmung. Adresse und neunstellige Postleitzahl"
225
+ "Explanation: %s.","Erläuterung: %s"
226
+ "Express Checkout","Express Kaufabwicklung"
227
+ "Express Checkout APIs","Express Kaufabwicklung APIs"
228
+ "Express Checkout and Order have been canceled.","Express-Checkout und Bestellung wurden storniert."
229
+ "Express Checkout has been canceled.","Express-Checkout storniert."
230
+ "Failed to fetch reports from '%s@%s'.","Abholung der Berichte von '%s@%s' fehlgeschlagen."
231
+ "Fax","Fax"
232
+ "Fee Amount","Gebühr Betrag"
233
+ "Fee Debit or Credit","Gebühr Soll oder Haben"
234
+ "Fee Reversal","Gebühr: ACH Auslands-Abhebung[caution! - this translation is for job#55147 and vice versa. sorry]"
235
+ "Fee: Foreign ACH Withdrawal","Gebühr Storno"
236
+ "Fee: Mass Pay Request","Gebühr: Anforderung Sammelzahlung"
237
+ "Fee: Web Site Payments Pro Account Monthly","Gebühr: monatliche Zahlungen der Webseite für Konto"
238
+ "Fee: WorldLink Check Withdrawal","Gebühr: WorldLink Scheckauszahlung"
239
+ "Fetch","Holen"
240
+ "Fetch Updates","Aktualisierungen herunterladen"
241
+ "Fetched %s report rows from '%s@%s'.","erfasste %s Berichtszeilen von ´%s@%s'."
242
+ "For Virtual Quotes Only","Nur für virtuelle Angebote"
243
+ "Frontend Experience Settings","Frontend Experience Einstellungen"
244
+ "Funding","Finanzierung"
245
+ "General (Authorization)","Allgemein (Berechtigung)"
246
+ "General (Dividend)","Allgemein (Dividende)"
247
+ "General (Funds Transfer from PayPal Account to Another)","Allgemein (Geldtransfer von einem PayPal Konto auf ein anderes)"
248
+ "General (Purchase with a credit card)","Allgemein (Kauf mit einer Kreditkarte)"
249
+ "General Adjustment without businessrelated event","Allgemeine Einstellung ohne geschäftsbezogenen Vorgang"
250
+ "General Currency Conversion","Allgemein Währungsumrechnung"
251
+ "General Funding of PayPal Account ","Allgemein Finanzierung des PayPal Kontos"
252
+ "General Redemption","Allgemein Rückzahlung"
253
+ "General Withdrawal from PayPal Account","Allgemein Abhebung vom PayPal Konto"
254
+ "General. Product no longer supported","Allgemein. Produkt wird nicht mehr untersützt"
255
+ "General: Use of PayPal account for purchasing as well as receiving payments","Allgemein: Verwendung des PayPal Kontos für Einkauf und den Empfang von Zahlungen"
256
+ "General: Withdrawal from PayPal Account","Allgemein: Abhebung vom PayPal Konto"
257
+ "General: Withdrawal to Non-Bank Entity","Allgemein: Abhebung von Nichtbank-Finanzintermediären"
258
+ "General: adjustment of a type not belonging to the other T12xx categories","Allgemein: Einstellung eines Typs der nicht zu den anderen T12xx Kategorien gehört"
259
+ "General: bonus of a type not belonging to the other T08xx categories","Allgemein: Bonus eines Typs der nicht zu den anderen T08xx Kategorien gehört"
260
+ "General: event not yet categorized","Allgemein: noch nicht klassifiziert"
261
+ "General: non-payment fee of a type not belonging to the other T01xx categories","Gebühr für Zahlungsverweigerung eines Typs, der nicht zu den anderen T01xx Kategorien gehört"
262
+ "General: received payment of a type not belonging to the other T00xx categories","Allemein: Zahlung eines Typs erhalten, der nicht zu den anderen T00xx Kategorien gehört"
263
+ "General: reversal of a type not belonging to the other T11xx categories","Allgemein: Storno eines Typs der nicht zu den anderen T11xx Kategorien gehört"
264
+ "General: temporary hold of a type not belonging to the other T15xx categories","Allgemein: Vorübergehende Einbehaltung eines Typs, der nicht zu den anderen T15xx Kategorien gehört"
265
+ "Get Credentials from PayPal","Fordern Sie von PayPal die Anmeldeinformationen an"
266
+ "Get Publisher ID from PayPal","Publisher-ID von PayPal erhalten"
267
+ "Gift Certificate Payment: purchase of Gift Certificate","Zahlung mit Geschenkgutschein: Kauf von Geschenkgutscheinen"
268
+ "Gift Certificate Redemption","Einlösung von Geschenkgutscheinen"
269
+ "Gross Amount","Bruttobetrag"
270
+ "Header (center)","Header (Mitte)"
271
+ "Header Background Color","Kopfzeile Hintergrundfarbe"
272
+ "Header Border Color","Kopfzeile Farbe der Umrandung"
273
+ "Header Image URL","Kopfzeile Bild URL"
274
+ "Help","Hilfe"
275
+ "Hidden Virtual PayPal Debit Card Transaction","Verborgene virtuelle PayPal Debitkarten Überweisung"
276
+ "Hold for Dispute Investigation","Zurückgehalten wegen Disput Überprüfung"
277
+ "Home Page","Homepage"
278
+ "I'm sorry - but we are not able to complete your transaction. Please contact us so we can assist you.","Tut uns leid - aber wir können die Transaktion nicht abschließen. Bitte kontaktieren Sie uns, damit wir Ihnen helfen können."
279
+ "I'm sorry - but we were not able to process your payment. Please try another payment method or contact us so we can assist you.","Tut uns leid - aber wir konnten Ihre Zahlung nicht verarbeitet. Bitte versuchen Sie eine andere Zahlungsmethode oder kontaktieren Sie uns, damit wir Ihnen helfen können."
280
+ "IPN ""%s"".","IPN ""%s""."
281
+ "IPN ""%s"". %s Transaction amount %s. Transaction ID: ""%s""","IPN ""%s"". %s Transaktionsbetrag %s. Transaktions-ID: ""%s"""
282
+ "IPN ""%s"". A dispute has been resolved and closed. %s Transaction amount %s.","IPN ""%s"". Ein Streitfall wurde gelöst und abgeschlossen. %s Transaktionsbetrag %s."
283
+ "IPN ""%s"". Case type ""%s"". Case ID ""%s"" %s","IPN ""%s"". Falltyp ""%s"". Fall-ID ""%s"" %s"
284
+ "IPN verification ""%s"".","IPN-Verifizierung ""%s""."
285
+ "If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.","Wenn leer wird ein Standardwert verwendet. Individuelle URL kann durch CardinalCommerce Vereinbarung ausgegeben werden"
286
+ "If not specified, Default Country from General Config will be used","Wenn nicht angegeben, wird das Land, welches in der General Config vorgegeben ist (Default), verwendet."
287
+ "If this option is enabled, customer can change shipping address and shipping method on PayPal website. In live mode works via HTTPS protocol only.","Wenn diese Option aktiviert ist, kann der Kunde die Versandadresse und die Versandart auf der PayPal Webseite ändern. Im Live-Modus funktioniert dies nur über das HTTPS Protokoll."
288
+ "If you do not have multiple users set up on your account, please re-enter your Vendor/Merchant Login here.","Falls Sie auf Ihrem Konto keine mehrfachen Nutzer eingerichtet haben, geben Sie bitte Ihr Verkäufer-/Händler-Login hier noch einmal ein."
289
+ "Impossible to issue a refund transaction because the capture transaction does not exist.","Eine Rückerstattungsüberweisung kann nicht erfolgen, da die Überweisungerfassung nicht vorhanden ist"
290
+ "Incentive","Anreiz"
291
+ "Initiation Date","Aktivierungsdatum"
292
+ "Integral Evolution","Integral Evolution"
293
+ "Invoice ID","Rechnungsnummer"
294
+ "Issuer Liability","Haftung des Ausstellers"
295
+ "It is recommended to set this value to ""Debit or Credit Card"" per store views.","Es wird empfohlen, diesen Wert auf ""Debit- oder Kreditkarte"" zu setzen."
296
+ "It is recommended to set this value to ""PayPal"" per store views.","Es wird empfohlen, diesen Wert auf ""PayPal"" Ansicht pro Geschäft zu setzen."
297
+ "Items in Your Shopping Cart","Artikel in Ihrem Warenkorb"
298
+ "Last Correlation ID","Letzte Korrelations Identifizierung"
299
+ "Last Transaction ID","Letzte Überweisungs-Kennnummer"
300
+ "Learn More","Erfahren Sie mehr"
301
+ "Login","Einloggen"
302
+ "Mass Pay Payment","""Mass Pay"" Zahlungen"
303
+ "Matched (CVV2)","abgeglichen (CVV2)"
304
+ "Matched (CVV2CSC)","Übereinstimmung (CVV2CSC)"
305
+ "Matched Address only (no ZIP)","Nur übereinstimmende Adresse (keine Postleitzahl)"
306
+ "Matched Address only (no ZIP). International","Nur die Adresse stimmt überein (keine Postleitzahl). International"
307
+ "Matched Postal Code only (no Address)","Nur die Postleitzahl stimmt überein (keine Adresse)"
308
+ "Matched five-digit ZIP only (no Address)","Nur die fünfstellige Postleitzahl stimmt überein (keine Adresse)"
309
+ "Matched whole nine-didgit ZIP (no Address)","Die ganze neunstellige Postleitzahl stimmt überein (keine Adresse)"
310
+ "Merchant Account","Händler Konto"
311
+ "Merchant Country","Händler Land"
312
+ "Merchant Liability","Haftbarkeit des Händlers"
313
+ "Merchant Location","Händler-Standort"
314
+ "Merchant Protection Eligibility","Händlerschutz Berechtigung"
315
+ "Merchant Referral Bonus","Händler Empfehlungsbonus"
316
+ "Merchant account doesn\'t have a withdrawal mechanism. Merchant must manually accept or deny this payment from your Account Overview.","Das Händlerkonto hat keine Abhebungsfunktion. Der Händler muss die Zahlung manuell annehmen oder ablehnen im ""Account Overview"" (Kontoübersicht)."
317
+ "Merchant account is not verified.","Händlerkonto ist nicht verifiziert."
318
+ "Merchant denied this pending payment.","Der Händler hat diese ausstehende Zahlung verweigert."
319
+ "Merchant holds a non-U.S. account and does not have a withdrawal mechanism.","Der Händler besitzt ein Nicht-US Konto und hat keinen Überweisungsautomatismus."
320
+ "Merchant must upgrade account to Business or Premier status.","Händler muss Konto auf Business- oder Premierstatus upgraden."
321
+ "Merchant reference ID format is not supported.","Das Format der Händler-Referenz-ID wird nicht unterstützt."
322
+ "Merchants need to apply to PayPal for enabling billing agreements feature. Do not enable this option until PayPal confirms that billing agreements are enabled for your merchant account.","Händler müssen bei PayPal anfragen, um die Funktion ""Rechnungsvereinbarungen"" zu aktivieren. Aktivieren Sie diese Option nicht bevor PayPal bestätigt hat, dass die Rechnungsvereinbarungen für Ihr Händlerkonto aktiviert sind."
323
+ "Mobile Payment (made via a mobile phone)","Handy Zahlung (Zahlung erfolgt per Handy)"
324
+ "Multi-currency issue. Merchant must manually accept or deny this payment from PayPal Account Overview.","Mehrfach-Währungs-Vorgang. Der Händler muss diese Zahlung manuell aus der PayPal Kontoübersicht annehmen oder ablehnen."
325
+ "N/A","Nicht zutreffend"
326
+ "N/A. Address not checked, or acquirer had no response. Service not available","N/A. Adresse nicht geprüft oder der Käufer bekam keine Antwort. Service nicht verfügbar."
327
+ "N/A. Global Unavailable","N/A. Weltweit nicht verfügbar"
328
+ "N/A. International Unavailable","N/A. International nicht verfügbar"
329
+ "N/A. Merchant has indicated that CVV2 is not present on card","N/A. Händler hat angezeigt, dasssich CVV2 nicht auf der Karte befindet."
330
+ "N/A. No response","N/A. Keine Antwort"
331
+ "N/A. Not allowed for MOTO (Internet/Phone) transactions","Nicht zutreffend. MOTO (Internet/Telefon) Transaktionen nicht erlaubt"
332
+ "N/A. Not processed","N/A. Nicht verarbeitet"
333
+ "N/A. Retry","N/A. wiederholen"
334
+ "N/A. Service not Supported","Nicht zutreffend. Service nicht angeboten"
335
+ "N/A. Service not available","N/A. Service ist nicht verfügbar"
336
+ "N/A. Service not supported","Nicht verfügbar. Service wird nicht unterstützt."
337
+ "N/A. The merchant did not provide AVS information","Nicht zutreffend. Der Händler hat keine AVS Informationen angegeben"
338
+ "N/A. The merchant has not implemented CVV2 code handling","N/A. Der Händler benutzt keine CVV2 Code Verarbeitung"
339
+ "N/A. Unavailable","N/A. Nicht verfügbar"
340
+ "Near Bill Me Later checkout button","In der Nähe der Bill Me Later-Checkout-Schaltfläche"
341
+ "Negative Balance","Negatives Guthaben"
342
+ "Never","Niemals"
343
+ "No","Nein"
344
+ "No Details matched","Keine Details stimmen überein"
345
+ "No Details matched. International","Keines der Details stimmt überein. International"
346
+ "No Liability Shift","Keine Haftung Wechseln"
347
+ "No Logo","Kein Logo"
348
+ "No match","Keine Übereinstimmung"
349
+ "None of the address information matched","Keine der Adress-Informationen stimmt überein"
350
+ "Not sure what PayPal payment method to use? Click <a href=""%s"" target=""_blank"">here</a> to learn more.","Unsicher, welche PayPal-Zahlungmethode man verwenden soll? Klicken Sie <a href=""%s"" target=""_blank"">hier,</a> um mehr zu erfahren."
351
+ "Note: %s","Hinweis: %s"
352
+ "Nothing to fetch because of an empty configuration.","Nichts zu holen auf Grund von leerer Konfiguration"
353
+ "Notice that PayPal can handle up to 10 shipping options. That is why Magento will transfer only first 10 cheapest shipping options if there are more than 10 available.","Beachten Sie, dass PayPal bis zu 10 Versandoptionen unterstützen kann. Magento wird daher nur die 10 günstigsten Versandoptionen übernehmen, falls es mehr als 10 Optionen gibt."
354
+ "Notified customer about creditmemo #%s.","Benachrichteter Kunde über den Kreditvermerk #%s"
355
+ "Notified customer about invoice #%s.","Benachrichteter Kunde über Rechnung #%s."
356
+ "Now accepting PayPal (150 X 40)","Wir nehmen jetzt PayPal an (150 X 40)"
357
+ "Now accepting PayPal (150 X 60)","Jetzt wird PayPal (150 X 60) angenommen"
358
+ "Number of Child Authorizations","Anzahl der Kinder-Autorisationen"
359
+ "Open Authorization","Autorisierung öffnen"
360
+ "Order","Bestellung"
361
+ "Order ID","Bestellungsidentifizierung"
362
+ "Order Valid Period (days)","Bestellung Geltungsdauer (Tage)"
363
+ "Ordered amount of %s.","Bestellte Menge von %s."
364
+ "Ordering amount of %s is pending approval on gateway.","Bestellte Menge von %s erwartet die Bestätigung vom Gateway."
365
+ "Page Background Color","Seiten Hintergrundfarbe"
366
+ "Page Style","Seitengestaltung"
367
+ "Part of the address information matched","Die Adressen-Information stimmt teilweise überein"
368
+ "Partner","Partner"
369
+ "Pasarela integral","Pasarela integral"
370
+ "Password","Passwort"
371
+ "PayPal All-in-One Payment Solutions&nbsp;&nbsp;<i>Accept and process credit cards and PayPal payments.</i>","PayPals All-in-One-Zahlungslösungen&nbsp;&nbsp;<i>Kreditkarten sowie PayPal-Zahlungen akzeptieren und verarbeiten.</i>"
372
+ "PayPal Balance Manager function of PayPal account","PayPal Guthaben-Managerfunktion des PayPal Kontos"
373
+ "PayPal Billing Agreement Settings","PayPal Einstellungen Abrechnungsvereinbarung"
374
+ "PayPal Buyer Warranty Bonus","PayPal Käufer Garantiebonus"
375
+ "PayPal Debit Card Cash Advance","PayPal Debitkarte Barvorschuss"
376
+ "PayPal Debit Card Withdrawal from ATM","PayPal Debitkarte Abhebung von ATM"
377
+ "PayPal Express Checkout","PayPal Express-Kasse"
378
+ "PayPal Express Checkout Shortcut Wrapper","PayPal Express Checkout Shortcut Wrapper"
379
+ "PayPal Express Checkout Token does not exist.","PayPal Express-Checkout Token existiert nicht."
380
+ "PayPal Express Checkout is not enabled.","PayPal Express Checkout ist nicht aktiviert."
381
+ "PayPal Express Checkout lets you give customers access to financing through Bill Me Later&#174; - at no additional cost to you.
382
+ You get paid up front, even though customers have more time to pay. A pre-integrated payment button lets customers pay quickly with Bill Me Later&#174;.
383
+ <a href=""https://www.paypal.com/webapps/mpp/promotional-financing"" target=""_blank"">Learn More</a>
384
+ ","PayPal Express Checkout lets you give customers access to financing through Bill Me Later&#174; - at no additional cost to you.
385
+ You get paid up front, even though customers have more time to pay. A pre-integrated payment button lets customers pay quickly with Bill Me Later&#174;.
386
+ <a href=""https://www.paypal.com/webapps/mpp/promotional-financing"" target=""_blank"">Learn More</a>"
387
+ "PayPal Express Order Review Form","PayPal Express Ansicht Bestellformular"
388
+ "PayPal Fee Information","PayPal Gebühren-Information"
389
+ "PayPal Merchant Pages Style","PayPal Händlerseiten Design"
390
+ "PayPal Payment Gateways","PayPal Zahlungs-Gateways"
391
+ "PayPal Payment Solutions","PayPal Zahlungslösungen"
392
+ "PayPal Pro","PayPal Pro"
393
+ "PayPal Product Logo","PayPal Produktlogo"
394
+ "PayPal Protection Bonus","PayPal Schutz Bonus"
395
+ "PayPal Reference ID","PayPal Referenz-Kennnummer"
396
+ "PayPal Reference ID Type","PayPal Referenz.Kennnummerntyp"
397
+ "PayPal Settlement Reports","PayPal Abrechnungsberichte"
398
+ "PayPal certificate does not exist.","PayPal-Zertifikat existiert nicht."
399
+ "PayPal certificate file is empty.","PayPal-Zertifikatdatei ist leer."
400
+ "PayPal does not support processing orders with zero amount. To complete your purchase, proceed to the standard checkout process.","PayPal unterstützt keine Verarbeitung von Bestellungen mit einem Wert von Null. Um Ihren Einkauf abzuschließen, fahren Sie bitte mit dem Standard-Checkout fort."
401
+ "PayPal gateway has rejected request. %s","PayPal gateway hat Ihre Anforderung abgewiesen. %s"
402
+ "PayPal recommends that you set up an additional User on your account at manager.paypal.com","PayPal empfiehlt, dass Sie einen zusätzlichen Nutzer auf Ihrem Konto bei manager.paypal.com erstellen."
403
+ "PayPal recommends you set up an additional User on your account at manager.paypal.com, instead of entering your admin username and password here. This will enhance your security and prevent service interruptions if you later change your password. If you do not want to set up an additional User, you can re-enter your Merchant Login here.","PayPal empfiehlt, dass Sie einen zusätzlichen Nutzer auf Ihrem Konto bei manager.paypal.com erstellen, anstatt Ihren Admin-Nutzernamen und Ihr Passwort hier einzugeben. Dies erhöht Ihre Sicherheit und vermeidet Service-Unterbrechungen, falls Sie später Ihr Passwort ändern. Falls Sie keinen zusätzlichen Nutzer einrichten möchten, können Sie hier Ihr Händler-Login noch einmal eingeben."
404
+ "PayPal response hasn't required fields.","Die erforderlichen Pflichtfelder für die PayPal Antwort wurden nicht ausgefüllt."
405
+ "PayPal retains reports for 45 days.","PayPal behält Aufzeichnungen für 45 Tage."
406
+ "PayPal/Centinel Electronic Commerce Indicator","PayPal/Cenitel Electronic Commerce Indikator"
407
+ "PayPal/Centinel Visa Payer Authentication Service Result","PayPal/Centinel Visa Payer Authentication Service Ergebnis"
408
+ "Payer Address ID","Zahler Adressen Kennummer"
409
+ "Payer Address Status","Adressenstatus des Zahlers"
410
+ "Payer Email","Zahler Email"
411
+ "Payer ID","Zahler Kennnummer"
412
+ "Payer Status","Zahler Status"
413
+ "Payer is not identified.","Zahler ist nicht identifiziert"
414
+ "Payflow Link","Payflow Link"
415
+ "Payflow Link (Includes Express Checkout)","Payflow Link (enthält Express-Kasse)"
416
+ "Payflow Pro","Payflow Pro"
417
+ "Payflow Pro (Includes Express Checkout)","Payflow Pro (enthält Express-Kasse)"
418
+ "Payflow Pro and Express Checkout","Payflow Pro und Express-Kasse"
419
+ "Payment Action","Zahlungsaktion"
420
+ "Payment Applicable From","Zahlung zutreffend von"
421
+ "Payment Method","Zahlungsmethode"
422
+ "Payment Refund initiated by merchant","Rückerstattung der Zahlung durch den Händler initiiert"
423
+ "Payment has been declined. Please try again.","Zahlung wurde verweigert. Bitte versuchen Sie es erneut."
424
+ "Payment is being reviewed by PayPal for risk.","Zahlung wird durch PayPal auf Risiken überprüft"
425
+ "Payment transactions disallow storing objects.","Zahlungen beinhalten nicht das Speichern der Objekte."
426
+ "Payment was made to an email address that is not yet registered or confirmed.","Zahlung erging an eine Email-Adresse die noch nicht registriert oder bestätigt wurde."
427
+ "Payments Advanced","Erweiterte Zahlungen"
428
+ "Payments Advanced (Includes Express Checkout)","Erweiterte Zahlungen (enthält Express-Kasse)"
429
+ "Payments Pro (Includes Express Checkout)","Zahlungen Pro (enthält Express-Kasse)"
430
+ "Payments Pro Hosted Solution","Zahlungen Pro gehostete Lösung"
431
+ "Payments Pro and Express Checkout","Zahlungen Pro und Express-Kasse"
432
+ "Payments Standard","Zahlungen Standard"
433
+ "Payments by PayPal (150 X 40)","Zahlungen durch PayPal (150 X 40)"
434
+ "Payments by PayPal (150 X 60)","Zahlungen durch PayPal (150 X 60)"
435
+ "Pending PayPal","PayPal ausstehend"
436
+ "Place Order","Erteilen Sie den Auftrag"
437
+ "Please agree to all the terms and conditions before placing the order.","Bitte stimmen Sie den Allgemeinen Geschäftsbedingungen zu, bevor Sie die Bestellung aufgeben."
438
+ "Please contact PayPal Customer Service.","Bitte benachrichtigen Sie den PayPal Kundenservice."
439
+ "Please do not refresh the page until you complete payment.","Bitte die Seite nicht aktualisieren, bis Sie die Zahlung abgeschlossen haben."
440
+ "Please re-enable the previously enabled payment solutions.","Bitte reaktivieren Sie die kürzlich ausgesetzten Zahlungsoptionen."
441
+ "Please select a shipping method...","Bitte wählen Sie eine Versandart aus..."
442
+ "Please select region, state or province","Bitte Region, Staat oder Provinz auswählen."
443
+ "Please update order data to get shipping methods and rates","Aktualisieren Sie bitte die Auftragsdaten für Versandmethoden und -tarife"
444
+ "Points Incentive Redemption","Einlösung von Loyalitätspunkten"
445
+ "Position","Position"
446
+ "Postage Payment to either USPS or UPS","Zahlung der Versandgebühr entweder an USPS oder UPS"
447
+ "Preapproved Payment (BillUser API), either sent or received","Vorausgenehmigte Bezahlung (BillUser API), entweder geschickt oder erhalten"
448
+ "Preapproved Payment ID","Vorabgenehmigte Zahlung Kennnummer"
449
+ "Price","Preis"
450
+ "Pro","Pro"
451
+ "Process payments using your own internet merchant account.","Zahlungsabwicklung mit Verwendung Ihres eigenen Internet-Händlerkontos."
452
+ "Product","Produkt"
453
+ "Product Name","Produktname"
454
+ "Proxy Host","Proxy Host"
455
+ "Proxy Port","Proxy Port"
456
+ "Publisher ID","Publisher-ID"
457
+ "Qty","Anzahl"
458
+ "Reauthorization","Erneute Autorisierung"
459
+ "Reference Information","Referenz-Information"
460
+ "Reimbursement for a chargeback.","Rückerstattung für eine Rückbuchung"
461
+ "Reimbursement of Chargeback","Rückerstattung einer Rücklastschrift"
462
+ "Report Date","Berichtsdatum"
463
+ "Reports","Berichte"
464
+ "Requested %s and configured %s merchant emails do not match.","Angeforderte %s und konfigurierte %s Emails der Händler stimmen nicht überein."
465
+ "Require CVV Entry","Kartenprüfnummer erfordern"
466
+ "Require Customer's Billing Address","Kunden-Rechnungsadresse anfordern"
467
+ "Required PayPal Settings","Erforderliche PayPal-Einstellungen"
468
+ "Required Settings","Erforderliche Einstellungen"
469
+ "Required to display a banner","Wird benötigt, um ein Banner anzuzeigen"
470
+ "Reversal","Rückbelastung"
471
+ "Reversal of General Account Hold","Storno des Hauptkontos durchführen"
472
+ "Reversal of Points Usage","Points Rückbelastung"
473
+ "Reversal of an adjustment.","Storno einer Änderung"
474
+ "Reversal of hold for Dispute Investigation","Stornierung einer Reservierung des Kontos wegen Disput Untersuchung"
475
+ "Review Order","Auftrag überprüfen"
476
+ "Reward Voucher Redemption","Belohnungsgutschein Einlösung"
477
+ "SFTP Credentials","SFTP Anmeldedaten"
478
+ "Sale","Verkauf"
479
+ "Sales","Verkäufe"
480
+ "Same as shipping","Identisch mit Versand"
481
+ "Sandbox Credentials","Sandbox Anmeldeinformationen"
482
+ "Sandbox Mode","Sandkasten-Modus"
483
+ "Schedule","Planen"
484
+ "Schedule description is too long.","Ablaufbeschreibung ist zu lang."
485
+ "Scheduled Fetching","vorgesehenes Hochladen"
486
+ "Select a Payment Solution","Wählen Sie eine Zahlungslösung"
487
+ "Send Email Confirmation","E-Mail-Bestätigung senden"
488
+ "Server Error. Please try again.","Server-Fehler. Versuchen Sie es bitte erneut."
489
+ "Settlement Consolidation","Zahlung Zusammenführung"
490
+ "Settlement Report Settings","Abrechnungsbericht Einstellungen"
491
+ "Settlement of a chargeback.","Zahlung eine Rücklastschrift"
492
+ "Severe 3D Secure Card Validation","Severe 3D Secure Card Validierung"
493
+ "Severe Validation Removes Chargeback Liability on Merchant","Die bestehende strenge Absicherung entzieht den Verkäufer der Verbindlichkeit Ausgleichsbuchungen nachkommen zu müssen"
494
+ "Severe validation removes chargeback liability on merchant.","Severe Validierung entfernt Ausgleichhaftung des Händlers."
495
+ "Shipping","Lieferung"
496
+ "Shipping Address","Lieferadresse"
497
+ "Shipping Information","Liefer-und Versandinformation"
498
+ "Shipping Method","Lieferungsart"
499
+ "Shop now using (150 X 40)","Kaufen Sie jetzt mit (150 X 40)"
500
+ "Shop now using (150 X 60)","Kaufen Sie jetzt ein indem sie (150 X 60) nutzen"
501
+ "Shortcut","Shortcut"
502
+ "Shortcut Buttons Flavor","Kurzbefehl Schaltfläche Geschmack"
503
+ "Shortcut on Product View","Kurzbefehl zur Artikelansicht"
504
+ "Shortcut on Shopping Cart","Direktweg zum Einkaufswagen"
505
+ "Sidebar (right)","Sidebar (rechts)"
506
+ "Sign a billing agreement to streamline further purchases with PayPal.","Unterzeichnen sie eine Rechnungsvereinbarung, um zukünftige Käufe mit PayPal zu rationalisieren."
507
+ "Size","Größe"
508
+ "Skip Order Review Step","Den Schritt Bestellung überprüfen überspringen"
509
+ "Solo","Einzeln"
510
+ "Some PayPal solutions conflict.","Ein die PayPal-Optionen betreffendes Problem."
511
+ "Sorry, no quotes are available for this order at this time.","Es tut uns Leid, es gibt derzeit keine Preisangabe für diese Bestellung."
512
+ "Sort Order","Sortierfolge"
513
+ "Specifies what the Authorization Honor Period is on the merchant’s PayPal account. It must mirror the setting in PayPal.","Spezifizierung, was die Autorisation des Ehrenzeitraumes im PayPal-Konto des Händlers ist. Dies muss den Einstellungen in PayPal entsprechen."
514
+ "Specifies what the Order Valid Period is on the merchant’s PayPal account. It must mirror the setting in PayPal.","Spezifizierung, was die Bestellung der Geltungsdauer im PayPal-Konto des Händlers ist. Dies muss den Einstellungen in PayPal entsprechen."
515
+ "State/Province","Staat/Bezirk"
516
+ "Static","Statisch"
517
+ "Street Address","Anschrift (Straße, Hausnummer, PLZ)"
518
+ "Street Address %s","Hausanschrift %s"
519
+ "Submitting order information...","Bestellinformationen werden gesendet..."
520
+ "Subscriber name is too long.","Der Teilnehmername ist zu lang."
521
+ "Subscription ID","Bestellnummer"
522
+ "Subscription Payment, either payment sent or payment received","Abonnementzahlung, entweder geschickte Zahlung oder Zahlung erhalten"
523
+ "Subtotal","Zwischensumme"
524
+ "Summary Text for Aggregated Cart","Zusammenfassung des gesamten Korbs"
525
+ "Supporting of American Express cards require additional agreement. Learn more at <a href=""http://www.paypal.com/amexupdate"">http://www.paypal.com/amexupdate</a>.","Für die Unterstützung von American Express Karten ist eine gesonderte Vereinbarung erforderlich. Erfahren Sie mehr unter at <a href=""http://www.paypal.com/amexupdate"">http://www.paypal.com/amexupdate</a>."
526
+ "Switch/Maestro","Switch/ Maestro"
527
+ "Telephone","Telefon"
528
+ "Test Mode","Testmodus"
529
+ "The background color for the checkout page around the header and payment form.","Die Hintergrundfarbe für die Checkout-Seite, um die Überschrift und Zahlungsart herum."
530
+ "The background color for the header of the checkout page. Case-insensitive six-character HTML hexadecimal color code in ASCII.","Die Hintergrundfarbe für die Kopfzeile der Abmeldeseite. Groβ- und Kleinschreibung sechs Buchstaben HTML hexadezimal farbcode in ASII."
531
+ "The default number of child authorizations in your PayPal account is 1. To do multiple authorizations please contact PayPal to request an increase.","Die Standardeinstellung für Kinder-Autorisationen in Ihrem Paypal-Konto ist 1. Für mehrfache Autorisationen kontaktieren Sie bitte PayPal und bitten Sie um Erweiterung."
532
+ "The following error(s) occured:","Es ist zu dem/den folgenden Fehler(n) gekommen:"
533
+ "The image at the top left of the checkout page. Max size is 750x90-pixel. <strong style=""color:red"">https</strong> is highly encouraged.","Das Bild oben links auf der Checkout-Seite. Max. Größe 750 x 90 Pixel. <strong style=""color:red"">https</strong> wird dringend empfohlen."
534
+ "The maximum number of child authorizations is reached.","Die maximal mögliche Anzahl an Kinder-Autorisationen ist erreicht."
535
+ "The merchant account is not yet verified.","Das Händlerkonto wurde noch nicht verifiziert."
536
+ "The payment curency does not match any of the merchant\'s balances currency.","Die Währung der Zahlung stimmt mit keiner der Währungen des Kontos des Händlers überein."
537
+ "The payment eCheck is not yet cleared.","Zahlung per eCheck ist noch nicht vereinbart."
538
+ "The payment is authorized but not settled.","Die Zahlung wurde autorisiert aber noch nicht ausgeführt."
539
+ "The payment is pending because it was made to an email address that is not yet registered or confirmed.","Die Zahlung steht noch aus, da sie an eine Email-Adresse versandt wurde, die weder registriert noch bestätigt ist."
540
+ "The payment is pending while it is being reviewed by PayPal for risk.","Zahlung steht noch aus und wird von PayPal auf Risiken geprüft."
541
+ "The payment was made via credit card. In order to receive funds merchant must upgrade account to Business or Premier status.","Die Zahlung wurde mit Kreditkarte getätigt. Damit der Händler Zahlungen erhalten kann, muss er sein Konto auf Business- oder Premiumstatus upgraden."
542
+ "There is already another PayPal solution enabled. Enable this solution instead?","Es wurde bereits eine andere PayPal-Option aktiviert. Soll diese stattdessen verwendet werden?"
543
+ "There was an error processing your order. Please contact us or try again later.","Bei der Bearbeitung Ihrer Bestellung ist ein Fehler aufgetreten. Bitte kontaktieren Sie uns oder versuchen Sie es später noch einmal."
544
+ "This feature needs be enabled first for the merchant account through PayPal technical support.","Diese Funktion muss zunächst für das Händlerkonto vom Technischen Support von Paypal aktiviert werden."
545
+ "This operation requires an existing transaction object.","Dieser Vorgang erfordert einen bestehenden Transaktionsgegenstand."
546
+ "Time of Day","Tageszeit"
547
+ "Title","Titel"
548
+ "To proceed to Checkout, please log in using your email address.","Um zur Kasse zu gelangen, melden Sie sich bitte mit Ihrer Email-Adresse an."
549
+ "Transaction ID","TransaktionsID"
550
+ "Transaction ID must not be empty.","ID der Transaktion darf nicht leer sein."
551
+ "Transaction Information","Überweisungs-Informationen"
552
+ "Transaction reversal by PayPal administrators.","Transaktionsaufhebung durch PayPal-Administratoren."
553
+ "Transaction reversal due to fraud detected by PayPal administrators.","Transaktionsaufhebung, da Betrug durch die PayPal-Administratoren entdeckt wurde."
554
+ "Transfer Cart Line Items","Einkaufswagen-Rechnungsposten transferieren"
555
+ "Transfer Shipping Options","Überweisung Versand Optionen"
556
+ "Triggered Fraud Filters","Ausgelöste Betrugsfilter"
557
+ "URL method for Cancel URL and Return URL","URL-Methode für URL-Stornierung und Rückleitungs-URL"
558
+ "Unable to cancel Express Checkout.","Express-Checkout kann nicht abgebrochen werden."
559
+ "Unable to change status. Current status is not correspond to real status.","Status kann nicht geändert werden. Der aktuelle Status entspricht nicht dem tatsächlichen Status."
560
+ "Unable to communicate with the PayPal gateway.","Es kann keine Verbindung zum PayPal Gatway aufgenommen werden."
561
+ "Unable to initialize Express Checkout review.","Express-Checkout Überprüfung kann nicht initialisiert werden."
562
+ "Unable to initialize Express Checkout.","Express Abmeldung kann nicht initialisiert werden."
563
+ "Unable to place the order.","Bestellung konnte nicht aufgegeben werden."
564
+ "Unable to process Express Checkout approval.","Express-Checkout Genehmigung konnte nicht bearbeitet werden."
565
+ "Unable to start Express Checkout.","Express-Checkout konnte nicht gestartet werden."
566
+ "Unable to update Order data.","Bestellinformation konnte nicht aktualisiert werden."
567
+ "Unable to update shipping method.","Die Versandmethode konnte nicht aktualisiert werden."
568
+ "Unknown Error. Please try again later.","Unbekannter Fehler. Versuchen Sie es später erneut."
569
+ "Unknown reason. Please contact PayPal customer service.","Unbekannter Grund. Bitte kontaktieren Sie den PayPal Kundenservice."
570
+ "Update Order Data","Bestellinformation aktualisieren"
571
+ "Update Shipping Method","Versandart aktualisieren"
572
+ "Use Proxy","Proxy benutzen"
573
+ "Use colon to specify port. For example: ""test.example.com:5224"".","Verwenden Sie einen Doppelpunkt, um den Port festzulegen. Zum Beispiel: ""test.example.com:5224""."
574
+ "User","Benutzer"
575
+ "User-initiated Currency Conversion","Vom Benutzer ausgelöste Währungsumrechnung"
576
+ "Uses store frontend name by default.","Benutzt standardmässig store frontend name."
577
+ "VAT Number","MwSt.-Nummer"
578
+ "Vendor","Anbieter"
579
+ "View","Ansicht"
580
+ "View Demo","Demo anzeigen"
581
+ "View Transaction","Transaktion anzeigen"
582
+ "View Transaction Details","Überweisungsdetails zeigen"
583
+ "Virtual PayPal Debit Card Transaction","Virtuelle PayPal Überweisung mit Debitkarte"
584
+ "Virtual Terminal Payment","Virtuelles Zahlungsterminal"
585
+ "Void","Leer"
586
+ "Waiting until Customer\'s eCheck will be cleared.","Warten bis der eCheck des Kunden freigegeben ist."
587
+ "We prefer PayPal (150 X 40)","Wir bevorzugen PayPal (150 X 40)"
588
+ "We prefer PayPal (150 X 60)","Wir bevorzugen PayPal (150 X 60)"
589
+ "Website Payments Plus","Webseite Zahlungen Plus"
590
+ "Website Payments Pro (Includes Express Checkout)","Webseiten-Zahlungen Pro (enthält Express-Kasse)"
591
+ "Website Payments Pro Hosted Solution","Website Payments Pro Gehostete Lösung"
592
+ "Website Payments Pro Hosted Solution (Includes Express Checkout)","Webseiten-Zahlungen Pro gehostetete Lösung (enthält Express-Kasse)"
593
+ "Website Payments Pro Hosted Solution and Express Checkout","Webseiten-Zahlungen Pro gehostetete Lösung und Express-Kasse"
594
+ "Website Payments Pro Payflow Edition (Includes Express Checkout)","Webseiten-Zahlungen Pro Payflow-Edition (enthält Expess-Kasse)"
595
+ "Website Payments Pro Payflow Edition and Express Checkout","Webseiten-Zahlungen Pro Payflow-Edition und Express-Kasse"
596
+ "Website Payments Pro and Express Checkout","Webseiten-Zahlungen Pro und Express-Kasse"
597
+ "Website Payments Standard","Webseite Zahlungen Standard"
598
+ "Website Payments Standard Payment","Webseite Zahlungen Standard Zahlung"
599
+ "What is PayPal?","Was ist PayPal?"
600
+ "Whether to create a billing agreement, if there are no active billing agreements available.","Ob eine Rechnungsvereinbarung angelegt werden muss, wenn keine aktiven Rechnungsvereinbarungen zur Verfügung stehen."
601
+ "Will appear as a payment option only for customers who have at least one active billing agreement.","Erscheint nur für die Kunden als Zahlungsoption, die mindestens eine aktive Rechnungsvereinbarung haben."
602
+ "WorldLink Withdrawal","WorldLink Abhebung"
603
+ "Would you like to sign a billing agreement to streamline further purchases with PayPal?","Würden Sie gerne eine Rechnungsvereinbarung abschliessen, um zukünftige Käufe mit PayPal zu rationalisieren?"
604
+ "Wrong Order ID (%s) specified.","Falsche Bestellnummer (%s) angegeben."
605
+ "Wrong PayPal Express Checkout Token specified.","Falscher PayPal Express-Checkout Token eingegeben."
606
+ "Yes","Ja"
607
+ "Yes. Matched Address and five-didgit ZIP","Ja. Adresse und fünfstellige Postleitzahl stimmen überein."
608
+ "You cannot void a verification transaction","Sie können eine Prüfung nicht für ungültig erklären"
609
+ "You will be redirected to the PayPal website in a few seconds.","Sie werden in wenigen Sekunden auf die PayPal Website weitergeleitet."
610
+ "You will be redirected to the PayPal website when you place an order.","Sie werden zur PayPal-Website weitergeleitet, wenn Sie eine Bestellung aufgeben."
611
+ "You will be redirected to the PayPal website.","Sie werden zur PayPal Webseite weitergeleitet."
612
+ "You will be required to enter your payment details after you place an order.","Sie werden aufgefordert, Ihre Zahlungsdaten eingeben, nachdem Sie eine Bestellung aufgegeben haben."
613
+ "Zip/Postal Code","Postleitzahl"
614
+ "chargeback reimbursed","Rücklastschrift erstattet."
615
+ "chargeback settled","Rücklastschrift beglichen"
616
+ "customer complaint","Kundenreklamation"
617
+ "customer triggered a chargeback","Kunde hat eine Rückbuchung veranlasst"
618
+ "customer triggered money-back guarantee","Der Kunde leitete eine Geld-zurück-Garantie ein"
619
+ "eBay Auction Payment","eBay Auktion Zahlung"
620
+ "merchant refunded payment","Händler hat Zahlung erstattet"
621
+ "no reason","kein Grund"
622
+ "reversal of an adjustment","Storno einer Änderung"
623
+ "unknown reason","unbekannter Grund"
app/locale/de_DE/Mage_PaypalUk.csv ADDED
@@ -0,0 +1,2 @@
 
 
1
+ "PayPal Express Checkout (Payflow Edition) Shortcut Wrapper","PayPal Express Checkout (Payflow Edition) Shortcut Wrapper"
2
+ "PayPal Express Order Review Form","PayPal Express Bestellübersichtsformular"
app/locale/de_DE/Mage_Persistent.csv ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Remember Me"" Default Value","""Login merken""-Standardwert"
2
+ "(Not %s?)","(Nicht %s?)"
3
+ "* Required Fields","* Pflichtfelder"
4
+ "Address","Adresse"
5
+ "Address Information","Addressinformationen"
6
+ "Already registered?","Bereits registriert?"
7
+ "Back","Zurück"
8
+ "By creating an account with our store, you will be able to move through the checkout process faster, store multiple shipping addresses, view and track your orders in your account and more.","Mit einem Konto bei unserem Shop geht der Bestell- und Bezahlprozess viel schneller, Sie können mehrere Versandadressen speichern, Ihre Bestellungen ansehen und verfolgen und vieles mehr."
9
+ "Cannot load configuration from file %s.","Konfiguration aus Datei %s kann nicht geladen werden."
10
+ "Checkout as Guest","Checkout als Gast"
11
+ "Checkout as a Guest","Als Gast zur Kasse"
12
+ "Checkout as a Guest or Register","Als Gast weiter zur Kasse gehen oder registrieren"
13
+ "City","Stadt"
14
+ "Clear Persistence on Log Out","Eindeutige Ausdauer beim Ausloggen"
15
+ "Close","Schließen"
16
+ "Company","Unternehmen"
17
+ "Confirm Password","Passwort bestätigen"
18
+ "Continue","Weiter"
19
+ "Country","Land"
20
+ "Create an Account","Ein Konto anlegen"
21
+ "Easy access to your order history and status","Schneller Zugriff auf Ihre Bestellungen und Ihren Status"
22
+ "Email Address","E-Mail-Adresse"
23
+ "Enable ""Remember Me""","""Login merken"" aktivieren"
24
+ "Enable Persistence","Ausdauer aktivieren"
25
+ "Fast and easy check out","Schnelles und einfaches Bezahlen"
26
+ "Faster checkout","Schneller Checkout"
27
+ "Fax","Fax"
28
+ "Forgot Your Password?","Passwort vergessen?"
29
+ "Forgot your password?","Passwort vergessen?"
30
+ "General Options","Allgemeine Optionen"
31
+ "If you have an account with us, please log in.","Falls Sie ein Konto bei uns haben, loggen Sie bitte ein."
32
+ "Loading next step...","Lade nächsten Schritt..."
33
+ "Login","Login"
34
+ "Login Information","Login-Informationen"
35
+ "Login or Create an Account","Einloggen oder Benutzerkonto erstellen"
36
+ "New Customers","Neue Kunden"
37
+ "New Here?","Neu hier?"
38
+ "Password","Passwort"
39
+ "Persist Shopping Cart","Bestehender Warenkorb"
40
+ "Persistence Lifetime (seconds)","Noch bleibende Lebensdauer (Sekunden)"
41
+ "Persistent Shopping Cart","Bleibender Warenkorb"
42
+ "Personal Information","Persönliche Angaben"
43
+ "Please enter the following information to create your account.","Bitte geben Sie die folgenden Informationen ein, um Ihr Konto zu erstellen."
44
+ "Please log in below:","Bitte loggen Sie sich hier ein:"
45
+ "Please select region, state or province","Bitte Region, Staat oder Provinz auswählen."
46
+ "Register","Registrieren"
47
+ "Register and Checkout","Registrieren und checkout"
48
+ "Register and save time!","Registrieren und Zeit sparen!"
49
+ "Register to Create an Account","Registrieren, um ein Konto zu erstellen"
50
+ "Register with us for future convenience:","Registrieren Sie sich bei uns, um den Einkauf so bequem wie möglich zu gestalten:"
51
+ "Registered Customers","Registrierte Kunden"
52
+ "Registration is free and easy!","Die Anmeldung ist kostenlos und einfach!"
53
+ "Remember Me","Eingaben merken"
54
+ "Returning Customers","Wiederkehrende Kunden"
55
+ "Save in address book","Im Adressbuch speichern"
56
+ "Save multiple shipping addresses","Speichern Sie mehrere Lieferadressen"
57
+ "Select State/Province...","Bundesland auswählen"
58
+ "Select a billing address from your address book or enter a new address.","Rechnungsadresse aus Ihrem Adressbuch auswählen oder neue Adresse eingeben"
59
+ "Ship to different address","An eine abweichende Adresse versenden"
60
+ "Ship to this address","An diese Adresse versenden"
61
+ "Shopping cart has been updated with appropriate prices","Der Einkaufswagen wurde mit entsprechenden Preisen aktualisiert"
62
+ "Sign Up for Newsletter","Melden Sie sich für unseren Newsletter an"
63
+ "Sign in to speed up your checkout process","Melden Sie sich an, um Ihren Checkout-Prozess zu beschleunigen"
64
+ "State/Province","Staat/Bezirk"
65
+ "Street Address","Anschrift (Straße, Hausnummer, PLZ)"
66
+ "Street Address %s","Hausanschrift %s"
67
+ "Submit","Übermitteln"
68
+ "Telephone","Telefon"
69
+ "To proceed to Checkout, please log in using your email address.","Um weiter zur Kasse zu gehen, melden Sie sich bitte mit Ihrer E-Mail-Adresse an."
70
+ "VAT Number","MwSt.-Nummer"
71
+ "View and track orders and more","Anzeigen und Nachverfolgen von Aufträgen und mehr"
72
+ "Welcome, %s!","Willkommen, %s!"
73
+ "What\'s this?","Was ist das?"
74
+ "Zip/Postal Code","Postleitzahl"
app/locale/de_DE/Mage_Poll.csv ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Actions","Aktionen"
2
+ "Add Answer","Antwort hinzufügen"
3
+ "Add New Answer","Neue Antwort hinzufügen"
4
+ "Add New Poll","Neue Umfrage hinzufügen"
5
+ "Answer Title","Antworttitel"
6
+ "Answer Title:","Antworttitel:"
7
+ "Answer with the same title in this poll","Antwort mit gleichem Titel in dieser Umfrage"
8
+ "Are you sure you want to delete it?","Sind Sie sicher, dass Sie es löschen wollen?"
9
+ "Assigned Answers","Zugewiesene Antworten"
10
+ "Closed","Geschlossen"
11
+ "Community Poll","Community-Umfrage"
12
+ "Date Closed","Datum Geschlossen"
13
+ "Date Posted","Datum Eingestellt"
14
+ "Delete","Löschen"
15
+ "Delete Answer","Antwort löschen"
16
+ "Delete Poll","Umfrage löschen"
17
+ "Disallow Voting in a Poll Multiple Times from Same IP-address","Verbieten mehrerer Umfrageteilnahmen von der selben IP-Adresse"
18
+ "Edit Answer '%s'","Antwort '%s' bearbeiten"
19
+ "Edit Poll '%s'","Umfrage '%s' bearbeiten"
20
+ "Edit Poll Answer","Umfrageantwort bearbeiten"
21
+ "ID","ID"
22
+ "Invalid Answer.","Ungültige Antwort."
23
+ "New Poll","Neue Umfrage"
24
+ "Number of Responses","Anzahl an Umfragereaktionen"
25
+ "Open","Offen"
26
+ "Poll Answers","Umfrageantworten"
27
+ "Poll Information","Umfrageinformation"
28
+ "Poll Manager","Umfragenverwalter"
29
+ "Poll Question","Frage in Umfrage"
30
+ "Poll information","Umfrageinformation"
31
+ "Poll with the same question","Umfrage mit gleicher Frage"
32
+ "Polls","Umfragen"
33
+ "Save Answer","Antwort speichern"
34
+ "Save Poll","Umfrage speichern"
35
+ "Status","Status"
36
+ "The answer has been saved.","Die Antwort wurde gespeichert."
37
+ "The poll does not exist.","Die Umfrage existiert nicht."
38
+ "Unable to find an answer to delete.","Zu löschende Antwort konnte nicht gefunden werden."
39
+ "Visible In","Sichtbar in"
40
+ "Vote","Stimme"
41
+ "Votes Count","Stimmenanzahl"
42
+ "Votes Count:","Stimmenanzahl:"
app/locale/de_DE/Mage_ProductAlert.csv ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Alert Email Sender","Email-Absender für Benachrichtigung"
2
+ "Alert subscription has been saved.","Benachrichtigungsabonnement wurde gespeichert."
3
+ "Allow Alert When Product Comes Back in Stock","Benachrichtigung, sobald ein ausverkauftes Produkt wieder verfügbar ist, zulassen"
4
+ "Allow Alert When Product Price Changes","Benachrichtigung bei Preisänderungen eines Produkts zulassen"
5
+ "Click here not to receive alerts for this product","Klicken Sie hier um keine Benachrichtigungen zu diesem Produkt zu erhalten"
6
+ "Error Email Recipient","Email-Empfänger bei auftretenden Fehlern"
7
+ "Error Email Sender","Email-Absender bei auftretenden Fehlern"
8
+ "Error Email Template","Email-Vorlage bei auftretenden Fehlern"
9
+ "Frequency","Frequenz"
10
+ "Not enough parameters.","Angaben reichen nicht aus."
11
+ "Price Alert Email Template","Email-Vorlage für Preisbenachrichtigungen"
12
+ "Price:","Preis:"
13
+ "Product Alerts","Produktbenachrichtigungen"
14
+ "Product Alerts Run Settings","Produktbenachrichtigungen Ausführungseinstellungen"
15
+ "Product alerts Cron error","Produktbenachrichtigungen Cron-Fehler"
16
+ "Product price alert","Produktpreisbenachrichtigung"
17
+ "Product stock alert","Produktverfügbarkeitsbenachrichtigung"
18
+ "Regular Price:","Regulärer Preis:"
19
+ "Sign up for price alert","Für Preisbenachrichtigungen anmelden"
20
+ "Sign up to get notified when this product is back in stock","Lassen Sie sich benachrichtigen, sobald dieses Produkt wieder verfügbar ist."
21
+ "Special price:","Spezialpreis:"
22
+ "Start Time","Startzeit"
23
+ "Stock Alert Email Template","Email-Vorlage für Verfügbarkeitsbenachrichtigung"
24
+ "The alert subscription has been deleted.","Das Benachrichtigungsabonnement wurde gelöscht."
25
+ "The alert subscription has been saved.","Das Benachrichtigungsabonnement wurde gespeichert."
26
+ "The product is not found.","Das Produkt konnte nicht gefunden werden."
27
+ "The product was not found.","Das Produkt konnte nicht gefunden werden."
28
+ "Unable to update the alert subscription.","Aktualisierung des Benachrichtigungsabonnements nicht möglich."
29
+ "Unsubscribe from all price alerts","Von allen Preisbenachrichtigungen abmelden"
30
+ "Unsubscribe from all stock alerts","Von allen Verfügbarkeitsbenachrichtigungen abmelden"
31
+ "You are receiving this notification because you subscribed to receive alerts when the following products are back in stock:","Sie erhalten diese Benachrichtigung, da Sie informiert werden wollten, wenn folgende Produkte wieder verfügbar sind:"
32
+ "You are receiving this notification because you subscribed to receive alerts when the prices for the following products changed:","Sie erhalten diese Benachrichtigung, da Sie informiert werden wollten, wenn sich die Preise folgender Produkte ändern:"
33
+ "You will no longer receive price alerts for this product.","Sie erhalten zukünftig keine Preisbenachrichtigungen mehr."
34
+ "You will no longer receive stock alerts for this product.","Sie erhalten zukünftig keine weiteren Verfügbarkeitsbenachrichtigungen mehr für dieses Produkt."
35
+ "You will no longer receive stock alerts.","Sie erhalten zukünftig keine Verfügbarkeitsbenachrichtigungen mehr."
app/locale/de_DE/Mage_Rating.csv ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "1 star","1 Stern"
2
+ "2 stars","2 Sterne"
3
+ "3 stars","3 Sterne"
4
+ "4 stars","4 Sterne"
5
+ "5 stars","5 Sterne"
6
+ "Add New Rating","Neue Bewertung hinzufügen"
7
+ "Assigned Options","Zugewiesene Optionen"
8
+ "Be the first to review this product","Bewerten Sie dieses Produkt als Erster"
9
+ "Default Value","Vorgegebener Wert"
10
+ "Delete Rating","Vorgegebene Bewertung"
11
+ "Edit Rating","Bewertung bearbeiten"
12
+ "ID","ID"
13
+ "If you do not specify a rating title for a store, the default value will be used.","Wenn Sie keinen Bewertungstitel für einen Store spezifizieren, wird der vorgegebene Wert genutzt."
14
+ "Manage Ratings","Bewertungen verwalten"
15
+ "New Rating","Neue Bewertung"
16
+ "Option Label","Option Label"
17
+ "Option Title","Option Titel"
18
+ "Option Title:","Option Titel:"
19
+ "Please select one of each ratings above","Bitte wählen Sie oben eine Bewertung"
20
+ "Rating Information","Bewertungsinformation"
21
+ "Rating Name","Bewertungsname"
22
+ "Rating Options","Bewertungsoptionen"
23
+ "Rating Title","Bewertungstitel"
24
+ "Rating Visibility","Sichtbarkeit der Bewertung"
25
+ "Rating isn't Available","Bewertung ist nicht verfügbar"
26
+ "Rating with the same title","Bewertung mit gleichem Titel"
27
+ "Save Rating","Bewertung speichern"
28
+ "Sort Order","Sortierfolge"
29
+ "Visible In","Sichtbar in"
app/locale/de_DE/Mage_Reports.csv ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Abandoned Carts","Unbenutzte Einkaufswagen"
2
+ "Abandoned carts","Verlassene Warenkörbe"
3
+ "Action","Aktion"
4
+ "Add to Cart","Zum Warenkobrn hinzufügen"
5
+ "Add to Compare","Hinzufügen um zu vergleichen"
6
+ "Add to Wishlist","Zum Wunschzettel hinzufügen"
7
+ "Any","Etwas"
8
+ "Applied Coupon","Benutzter Gutschein"
9
+ "Applies to Any of the Specified Order Statuses","Gilt für jeden spezifischen Stand der Bestellung"
10
+ "Are you sure you want to refresh lifetime statistics? There can be performance impact during this operation.","Sind Sie sicher, dass Sie die Laufzeit der Statistiken aktualisieren möchten? Während dieser Tätigkeit kann die Leistung beeinflusst werden."
11
+ "Are you sure?","Sind Sie sicher?"
12
+ "Avg. Approved Rating","Durchschnittliche anerkannte Bewertung"
13
+ "Avg. Rating","Durchschnittliche Bewertung"
14
+ "Bestsellers","Bestseller"
15
+ "Bought from wishlists","Vom Wunschzettel gekauft"
16
+ "CSV","CSV"
17
+ "Carts","Einkaufswagen"
18
+ "Catalog Category (Without Subcategories)","Katalogkategorie (ohne Unterkategorien)"
19
+ "Compared Products Grid Template","Gittermustervorlage für verglichene Produkte"
20
+ "Compared Products List Template","Vorlage für die Liste verglichener Produkte"
21
+ "Coupons","Gutscheine"
22
+ "Coupons Usage Report","Protokoll zur Anwendung von Gutscheinen"
23
+ "Created At","Erstellte At"
24
+ "Current Month Starts","Aktuelle monatliche Starts"
25
+ "Customer","Kunde"
26
+ "Customer Name","Kundenname"
27
+ "Customer Tags","Tags des Kunden"
28
+ "Customers","Kunden"
29
+ "Customers Report","Erfahrungsbericht der Kunden"
30
+ "Customers Reviews","Berichte der Kunden"
31
+ "Customers Tags","Tags der Kunden"
32
+ "Customers by Number of Orders","Kunden nach Bestellnummer"
33
+ "Customers by Orders Total","Kunden nach Gesamtzahl der Bestellung"
34
+ "Customers by number of orders","Kunden nach der Anzahl der Aufträge"
35
+ "Customers by orders total","Kunden nach Aufträgen insgesamt"
36
+ "Customers that have wishlist: %s%","Kunden, die einen Wunschzettel haben: %s%"
37
+ "Dashboard","Dashboard"
38
+ "Day","Tag"
39
+ "Default Recently Compared Products Count","Default der kürzlich verglichenen Anzahl der Produkte"
40
+ "Default Recently Viewed Products Count","Default der kürzlich angesehenen Anzahl der Produkte"
41
+ "Description","Beschreibung"
42
+ "Detail","Detail"
43
+ "Downloads","Downloads"
44
+ "Email","E-Mail"
45
+ "Empty Rows","Leere Reihe"
46
+ "Excel XML","Excel-XML"
47
+ "Filter","Filter"
48
+ "First Name","Vorname"
49
+ "From","Von"
50
+ "Guest","Gast"
51
+ "Hits","Treffer"
52
+ "ID","ID"
53
+ "IP Address","IP Adresse"
54
+ "Index model name must be defined","Index Modellname muss definiert sein"
55
+ "Invalid date specified.","Ungültiges angegebenes Datum"
56
+ "Invoiced","In Rechnung gestellt."
57
+ "Items in Cart","Waren im Einkaufswagen"
58
+ "Last Name","Nachname"
59
+ "Last Review","Letzte Überprüfung"
60
+ "Link","Link"
61
+ "List of Products Recently Compared and Removed from the Compare List by Visitor","Liste der kürzlich verglichenen Produkte und Produkte, die vom Besucher von der Vergleichsliste entfernt wurden"
62
+ "List of Products Recently Viewed by Visitor","Liste der kürzlich angesehenen Produkte des Besuchers"
63
+ "Low Stock","Niedriger Lagerbestand"
64
+ "Low stock","Wenige Artikel vorrätig"
65
+ "Match Period To","Entsprechungszeitraum"
66
+ "Month","Monat"
67
+ "Most Viewed","am meisten angesehen"
68
+ "Name","Name"
69
+ "New Accounts","Neue Konten"
70
+ "No","Nein"
71
+ "Number Added","Anzahl hinzugefügt"
72
+ "Number Fulfilled","Anzahl erfüllt"
73
+ "Number Of Reviews","Anzahl der Bewertungen"
74
+ "Number Purchased","Anzahl der erworbenen Artikel"
75
+ "Number Viewed","Anzahl wie oft angesehen"
76
+ "Number of Items","Anzahl der Artikel"
77
+ "Number of New Accounts","Anzahl der neuen Konten"
78
+ "Number of Products to display","Anzahl der darzustellenden Artikel"
79
+ "Number of Reviews","Anzahl der Bewertungen"
80
+ "Number of Times Deleted","Anzahl wie oft gelöscht"
81
+ "Number of Total Tags","Gesamtzahl aller Etiketten"
82
+ "Number of Unique Tags","Anzahl einzelner Etiketten"
83
+ "Number of Views","Anzahl wie oft angesehen"
84
+ "Number of items bought from a wishlist: %s","Anzahl der Artikel die aus einer Wunschliste gekauft wurden: in %"
85
+ "Number of times wishlists have been shared (emailed): %s","Anzahl wie oft Wunschlisten per email verteilt wurden: in %"
86
+ "Number of wishlist conversions: %s","Anzahl der Konvertierung von Wunschlisten: in %"
87
+ "Number of wishlist referrals: %s","Anzahl der Empfehlungen von Wunschlisten: in %"
88
+ "Number of wishlists: %s","Anzahl der Wunschlisten: in %"
89
+ "Order Status","Status des Auftrags"
90
+ "Order Taxes Report Grouped by Tax Rate","Auftragssteuermeldung unterteilt nach Steuersatz"
91
+ "Orders","Aufträge"
92
+ "Out of stock","Nicht lieferbar"
93
+ "Period","Zeitraum"
94
+ "Poducts Report","Artikelmeldung"
95
+ "Popular Tags","Beliebte Tags"
96
+ "Popularity","Popularität"
97
+ "Price","Preis"
98
+ "Product Name","Produktname"
99
+ "Product Reviews","Produktreviews"
100
+ "Product SKU","Bestandseinheit des Produktes"
101
+ "Product Tags","Produkttags"
102
+ "Products","Produkte"
103
+ "Products Ordered","Bestellte Artikel"
104
+ "Products Report","Artikelmeldung"
105
+ "Products Reviews","Artikelbewertungen"
106
+ "Products Tags","Etiketten der Artikel"
107
+ "Products in carts","Artikel in den Warenkörben"
108
+ "Purchases","Käufe"
109
+ "Quantity Ordered","bestellte Menge"
110
+ "Quantity of Items","Artikelmenge"
111
+ "Recently Compared","zuletzt verglichen"
112
+ "Recently Compared Products","zuletzt verglichene Artikel"
113
+ "Recently Viewed","Kürzlich angesehen"
114
+ "Recently Viewed Products","Kürzlich angesehene Produkte"
115
+ "Recently Viewed/Compared Products","Kürzlich angesehene / verglichene Produkte"
116
+ "Refresh Lifetime Statistics","Aktualisiere lebenslange Statistik"
117
+ "Refresh Statistics","Aktualisiere Statistik"
118
+ "Refresh Statistics for the Last Day","Aktualisiere Statistik für den letzten Tag"
119
+ "Refunds","Gutschriften"
120
+ "Report","Report"
121
+ "Reports","Berichte"
122
+ "Results","Ergebnisse"
123
+ "Revenue","Umsatz"
124
+ "Review","Review"
125
+ "Reviews","Bewertungen"
126
+ "Reviews for %s","Bewertungen für %s"
127
+ "Sales","Verkäufe"
128
+ "Sales Report","Verkaufsreport"
129
+ "Search Query","Suchbegriff"
130
+ "Search Terms","Suchbegriffe"
131
+ "Select day of the month.","Wählen Sie ein Datum aus."
132
+ "Shipping","Lieferung"
133
+ "Shopping Cart","Warenkorb"
134
+ "Shopping Cart Price Rule","Warenkorb Preisregel"
135
+ "Show Actual Values","Tatsächliche Werte anzeigen"
136
+ "Show Report","Report anzeigen"
137
+ "Show for Current","Anzeige für aktuellen Eintrag"
138
+ "Specified","Spezifiziert"
139
+ "Statistics","Statistik"
140
+ "Stock Qty","Anzahl auf Lager"
141
+ "Submitted In","Abgeschickt in"
142
+ "Submitted On","Abgeschickt am"
143
+ "Subtotal","Zwischensumme"
144
+ "Tag","Tag"
145
+ "Tag ""%s"" details","Schild ""%s"" Details"
146
+ "Tag Detail","Detail zu Tag"
147
+ "Tag Name","Tagname"
148
+ "Tag Use","Tag-Benutzung"
149
+ "Tags Submitted by %s","Tags eingetragen von %s"
150
+ "Tags submitted to %s","Tags versandt an %s"
151
+ "Tax","Steuer"
152
+ "Title","Titel"
153
+ "To","An"
154
+ "Total","Gesamtbetrag"
155
+ "Total Invoiced vs. Paid Report","Gesamtgegenüberstellung Berechnet zu Bezahlt"
156
+ "Total Ordered Report","Report Gesamtbestellvolumen"
157
+ "Total Refunded Report","Gesamtreport zu Rückerstattungen"
158
+ "Total Shipped Report","Gesamtreport versendeter Produkte"
159
+ "Total Tags","Gesamtanzahl Tags"
160
+ "Total invoiced","Insgesamt berechnet"
161
+ "Total refunded","Erstatteter Gesamtbetrag"
162
+ "Updated At","Aktualisiert am"
163
+ "Viewed Products Grid Template","Tabellarische Vorlage für angesehene Produkte"
164
+ "Viewed Products List Template","Vorlage für Liste der angesehenen Produkte"
165
+ "Visible In","Sichtbar in"
166
+ "Wishlist Report","Wunschzettelreport"
167
+ "Wishlist vs. Regular Order","Gegenüberstellung Wunschzettel zu regulärer Bestellung"
168
+ "Wishlists","Wunschzettel"
169
+ "Year","Jahr"
170
+ "Year-To-Date Starts","Kalenderjahr startet"
171
+ "Yes","Ja"
172
+ "Your Recently Compared","Ihre letzten Vergleiche"
173
+ "Your Recently Viewed","Ihre zuletzt angesehenen"
174
+ "undefined","undefiniert"
app/locale/de_DE/Mage_Review.csv ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%d Review(s)","%d Review(s)"
2
+ "%s Review(s)","%s Review(s)"
3
+ "(Posted on %s)","(Am %s gepostet)"
4
+ "1 star","1 Stern"
5
+ "2 star","2 Sterne"
6
+ "2 stars","2 Sterne"
7
+ "3 star","3 Sterne"
8
+ "3 stars","3 Sterne"
9
+ "4 star","4 Sterne"
10
+ "4 stars","4 Sterne"
11
+ "5 star","5 Sterne"
12
+ "5 stars","5 Sterne"
13
+ "<a href=""%1$s"" onclick=""this.target=\'blank\'"">%2$s %3$s</a> <a href=""mailto:%4$s"">(%4$s)</a>","<a href=""%1$s"" onclick=""this.target=\'blank\'"">%2$s %3$s</a> <a href=""mailto:%4$s"">(%4$s)</a>"
14
+ "Add New Review","Neues Review hinzufügen"
15
+ "Add Your Review","Eigenes Review hinzufügen"
16
+ "Administrator","Administrator"
17
+ "All Reviews","Alle Reviews"
18
+ "All Reviews of Customer `%s`","Alle Reviews des Kunden '%s'"
19
+ "All Reviews of Product `%s`","Alle Bewertungen für das Produkt `%s`"
20
+ "Allow Guests to Write Reviews","Erlaube Gäste Reviews zu schreiben"
21
+ "Approved","Genehmigt"
22
+ "Are you sure you want to do this?","Sind Sie sicher, dass sie das tun wollen?"
23
+ "Are you sure?","Sind Sie sicher?"
24
+ "Average Customer Rating","Durschschnittliche Kundenbewertung"
25
+ "Average Customer Rating:","Durschschnittliche Kundenbewertung:"
26
+ "Back","Zurück"
27
+ "Back to Main Product Info","Zurück zur Hauptproduktinfo"
28
+ "Back to My Reviews","Zurück zu Meinen Reviews"
29
+ "Back to Product Reviews","Zurück zu Produktreviews"
30
+ "Be the first to review this product","Bewerten Sie dieses Produkt als Erster"
31
+ "Catalog Product Review View","Katalogprodukt Review Ansicht"
32
+ "Catalog Product Reviews List","Katalogprodukt Review Liste"
33
+ "Created On","Erstellt am"
34
+ "Customer","Kunde"
35
+ "Customer My Account Product Reviews","Kunde Mein Konto Produktreviews"
36
+ "Customer My Account Review Details","Kunde Mein Konto Reviewdetails"
37
+ "Customer Reviews","Kundenreviews"
38
+ "Customers Reviews","Kundenbewertungen"
39
+ "Delete","Löschen"
40
+ "Delete Review","Review löschen"
41
+ "Detailed Rating","Detailierte Bewertung"
42
+ "Edit Review '%s'","Review '%s' bearbeiten"
43
+ "Guest","Gast"
44
+ "How do you rate this product?","Wie bewerten Sie dieses Produkt?"
45
+ "ID","ID"
46
+ "Let us know your thoughts","Teilen Sie uns Ihre Meinung mit"
47
+ "Manage Ratings","Bewertungen verwalten"
48
+ "My Product Reviews","Meine Produktreviews"
49
+ "My Recent Reviews","Meine letzten Reviews"
50
+ "Name","Name"
51
+ "Name in Store","Name im Shop"
52
+ "New Review","Neues Review"
53
+ "Nickname","Nickname"
54
+ "Nickname can\'t be empty","Nickname darf nicht leer sein"
55
+ "Not Approved","Nicht genehmigt"
56
+ "Only registered users can write reviews. Please, <a href=""%s"">log in</a> or <a href=""%s"">register</a>","Nur registrierte Benutzer können Bewertungen schreiben. Bitte <a href=""%s"">loggen Sie sich ein</a> oder <a href=""%s"">registrieren Sie sich</a>"
57
+ "Pending","ausstehend / anhängig"
58
+ "Pending Reviews","Ausstehende Reviews"
59
+ "Pending Reviews of Customer `%s`","Ausstehende Reviews des Kunden '%s'"
60
+ "Please select a product","Bitte wählen Sie ein Produkt"
61
+ "Please select one of each of the ratings above","Bitte wählen Sie jeweils eine der obenstehenden Bewertungen"
62
+ "Posted By","Geposted von"
63
+ "Price","Preis"
64
+ "Product","Produkt"
65
+ "Product Name","Produktname"
66
+ "Product Rating","Produktbewertung"
67
+ "Product Rating:","Produktbewertung:"
68
+ "Product Review (submitted on %s):","Produktreview (von %s hinzugefügt):"
69
+ "Product Reviews","Produktreviews"
70
+ "Product SKU","Bestandseinheit des Produktes"
71
+ "Products Reviews","Produktbewertungen"
72
+ "Qty","Anzahl"
73
+ "Rating:","Bewertung"
74
+ "Review","Review"
75
+ "Review (submitted on %s):","Review (von %s hinzugefügt):"
76
+ "Review Details","Reviewdetails"
77
+ "Review Form Fields Before","Felder Bewertungsformular vorher"
78
+ "Review by %s","Bewertung von %s"
79
+ "Review by <span>%s</span>","Review von <span>%s</span>"
80
+ "Review can\'t be empty","Review darf nicht leer sein"
81
+ "Review summary can\'t be empty","Zusammenfassung des Reviews darf nicht leer sein"
82
+ "Reviews and Ratings","Reviews und Bewertungen"
83
+ "SKU","SKU"
84
+ "Save Review","Review speichern"
85
+ "Status","Status"
86
+ "Submit Review","Review abschicken"
87
+ "Summary Rating","Bewertungszusammenfassung"
88
+ "Summary of Review","Reviewzusammenfassung"
89
+ "Summary of Your Review","Zusammenfassung Ihres Reviews"
90
+ "Title","Titel"
91
+ "Type","Typ"
92
+ "Unable to post the review.","Review kann nicht geposted werden."
93
+ "Update Status","Status aktualisieren"
94
+ "View All Reviews","Alle Reviews ansehen"
95
+ "View Details","Details ansehen"
96
+ "Visible In","Sichtbar in"
97
+ "Websites","Webseiten"
98
+ "What's your nickname?","Was ist Ihr Spitzname?"
99
+ "Write Your Own Review","Schreiben Sie Ihr eigenes Review"
100
+ "You have submitted no reviews.","Sie haben keine Reviews geschrieben."
101
+ "You're reviewing:","Sie schreiben ein Review für:"
102
+ "Your Rating:","Ihre Bewertung:"
103
+ "Your Review (submitted on %s):","Ihr Review (von % hinzugefügt)"
104
+ "Your review has been accepted for moderation.","Ihr Review wurde für Moderation akzeptiert."
app/locale/de_DE/Mage_Rss.csv ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s - Discounts and Coupons","%s - Rabatte und Gutscheine"
2
+ "%s - Special Products","%s - Sonderangebote"
3
+ "%s RSS Feed","%s RSS-Feed"
4
+ "%s has reached a quantity of %s.","%s hat eine Menge von %s erreicht."
5
+ "%s\'s Wishlist","%ss Wunschzettel"
6
+ "Cannot retrieve the wishlist","Kann den Wunschzettel nicht abrufen."
7
+ "Catalog","Katalog"
8
+ "Category Feeds","Feeds aus Kategorien"
9
+ "Click for price","Klicken für den Preis"
10
+ "Comment: %s<br/>","Kommentar: %s<br/>"
11
+ "Coupons/Discounts","Gutscheine/Rabatte"
12
+ "Current Status: %s<br/>","Aktueller Stand: %s<br/>"
13
+ "Customer Name: %s","Kundenname: %s"
14
+ "Customer Order Status Notification","Benachrichtigung zum Stand der Kundenbestellung"
15
+ "Details for %s #%s","Details für %s #%s"
16
+ "Discount","Rabatt"
17
+ "Discount (%s)","Rabatt (%s)"
18
+ "Enable RSS","RSS-Feed aktivieren"
19
+ "Error in processing xml. %s","Fehler bei der XML-Bearbeitung von %s"
20
+ "From:","Von:"
21
+ "Get Feed","RSS-Feed abonnieren"
22
+ "Gift Message","Geschenkmitteilung"
23
+ "Grand Total","Gesamtbetrag"
24
+ "Low Stock Products","Produkte aud dem geringen Lagerbestand"
25
+ "Message:","Nachricht:"
26
+ "Miscellaneous Feeds","Verschiedene RSS-Feeds"
27
+ "New Orders","Neue Bestellungen"
28
+ "New Products","Neue Produkte"
29
+ "New Products from %s","Neue Produkte von %s"
30
+ "Notified Date: %s<br/>","Benachrichtigt am: %s<br/>"
31
+ "Order # %s Notification(s)","Benachrichtigung der Bestellung # von %s"
32
+ "Order #%s created at %s","Bestellung # von %s erstellt von %s"
33
+ "Pending product review(s)","Ausstehender Produktbericht"
34
+ "Product: ""%s"" review By: %s","Produkt: ""%s"" Bewertung Von: %s"
35
+ "Product: <a href=""%s"">%s</a> <br/>","Produkt: <a href=""%s"">%s</a> <br/>"
36
+ "Products tagged with %s","Produkte gekennzeichnet mit %s"
37
+ "Purchased From: %s","Gekauft von: %s"
38
+ "RSS","RSS"
39
+ "RSS Feeds","RSS-Feeds"
40
+ "RSS Feeds List","Liste der RSS-Feeds"
41
+ "RSS Feeds Section","Bereich RSS-Feeds"
42
+ "Review: %s <br/>","Bericht: %s <br/>"
43
+ "Rss Config","RSS Konfig"
44
+ "Shipping &amp; Handling","Versand und Abwicklung"
45
+ "Special Products","Sonderangebote"
46
+ "Store: %s <br/>","Geschäft: %s <br/>"
47
+ "Subtotal","Zwischensumme"
48
+ "Summary of review: %s <br/>","Zusammenfassung des Berichtes: %s <br/>"
49
+ "Tags Products","Gekennzeichnete Produkte"
50
+ "Tax","Steuer"
51
+ "There are no Rss Feeds","Es gibt keine RSS-Feeds."
52
+ "To:","An:"
53
+ "Top Level Category","Kategorie auf höchster Ebene"
54
+ "Total: %s<br/>","Summe: %s<br/>"
55
+ "Wishlist","Wunschzettel"
56
+ "click <a href=""%s"">here</a> to view the review","Klicken Sie <a href=""%s"">hier</a> um die Bewertung zu sehen"
app/locale/de_DE/Mage_Rule.csv ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "ALL","ALLE"
2
+ "ANY","JEDE"
3
+ "Add","Hinzufügen"
4
+ "Apply","Anwenden"
5
+ "Conditions Combination","Bedingungenkombination"
6
+ "Customer Groups must be specified.","Die Kundengruppen müssen angegeben werden."
7
+ "End Date must be greater than Start Date.","Das Enddatum muss hinter dem Anfangsdatum liegen."
8
+ "FALSE","FALSCH"
9
+ "If %s of these conditions are %s:","Wenn %s dieser Bedingungen sind %s:"
10
+ "Invalid discount amount.","Ungültiger Rabattbetrag:"
11
+ "Open Chooser","Auswahl öffnen"
12
+ "Perform following actions","Folgende Aktionen ausführen"
13
+ "Please choose a condition to add...","Bitte wählen Sie eine Bedingung, die hinzugefügt werden soll..."
14
+ "Please choose an action to add...","Bitte wählen Sie eine Aktion, die hinzugefügt werden soll..."
15
+ "Remove","Entfernen"
16
+ "TRUE","WAHR"
17
+ "There is no information about associated entity type ""%s"".","Es gibt keine Informationen über den zugehörigen Entitätstyp ""%s"".
18
+
19
+ "
20
+ "Websites must be specified.","Die Webseiten müssen angegeben werden."
21
+ "by","von"
22
+ "contains","enthält"
23
+ "does not contain","enthält nicht"
24
+ "does not contains","enthält nicht"
25
+ "equals or greater than","gleich oder größer als"
26
+ "equals or less than","gleich oder kleiner als"
27
+ "for","für"
28
+ "for greater than","für größer als"
29
+ "for or greater than","für oder größer als"
30
+ "found","gefunden"
31
+ "from","von"
32
+ "greater than","größer als"
33
+ "is","ist"
34
+ "is not","ist nicht"
35
+ "is not one of","ist nicht einer von"
36
+ "is one of","ist einer von"
37
+ "less than","weniger als"
38
+ "not found","nicht gefunden"
39
+ "not from","nicht von"
40
+ "to","bis"
41
+ "was","war"
42
+ "was not","war nicht"
app/locale/de_DE/Mage_Sales.csv ADDED
@@ -0,0 +1,882 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """%s"" coupon code is not valid.","""%s"" Couponcode ist ungültig."
2
+ "%s","%s"
3
+ "%s / %s rate:","%s / %s Rate:"
4
+ "%s for %s","%s für %s"
5
+ "%s order(s) cannot be canceled","%s Bestellung(en) konnte(n) nicht storniert werden"
6
+ "%s order(s) have been canceled.","%s Bestellung(en) wurde(n) storniert."
7
+ "%s order(s) have been put on hold.","%s Bestellung(en) wurde(n) in Wartestellung gesetzt."
8
+ "%s order(s) have been released from holding status.","%s Bestellung(en) wurde(n) aus der Wartestellung genommen."
9
+ "%s order(s) were not put on hold.","%s Bestellung(en) wurde(n) nicht in Wartestellung gesetzt."
10
+ "%s order(s) were not released from holding status.","%s Bestellung(en) wurde(n) nicht aus der Wartestellung genommen."
11
+ "* - Enter custom price excluding tax","* - Geben Sie benutzerdefinierten Preis ohne Steuer ein"
12
+ "* - Enter custom price including tax","* - Geben Sie benutzerdefinierten Preis inklusive Steuer ein"
13
+ "* Required Fields","* Pflichtfelder"
14
+ "-- Please Select --","-- Bitte auswählen --"
15
+ "-- Please Select Billing Agreement--","-- Bitte wählen Sie Rechnungsvereinbarung --"
16
+ "About This Order:","Über diese Bestellung:"
17
+ "About This Profile:","Über dieses Profil:"
18
+ "About Your Invoice","Informationen zu Ihrer Rechnung"
19
+ "About Your Order","Über Ihre Bestellung"
20
+ "About Your Refund","Informationen zu Ihrer Rückerstattung"
21
+ "About Your Shipment","Informationen zu Ihrer Sendung"
22
+ "Accept Payment","Zahlung akzeptieren"
23
+ "Accept or Deny Payment","Zahlung akzeptieren oder ablehnen"
24
+ "Account Information","Kontoinformationen"
25
+ "Action","Aktion"
26
+ "Actions","Aktionen"
27
+ "Activate","Aktivieren"
28
+ "Active","Aktiv"
29
+ "Add","Hinzufügen"
30
+ "Add New Address","Neue Adresse hinzufügen"
31
+ "Add Order Comments","Bestellungskommentare hinzufügen"
32
+ "Add Package","Verpackung hinzufügen"
33
+ "Add Products","Produkte hinzufügen"
34
+ "Add Selected Product(s) to Option","Ausgewählte Produkte zu Option hinzufügen"
35
+ "Add Selected Product(s) to Order","Ausgewählte Produkte zur Bestellung hinzufügen"
36
+ "Add Selected Product(s) to Package","Ausgewählte(s) Produkt(e) zur Verpackung hinzufügen"
37
+ "Add To Order","Zur Bestellung hinzufügen"
38
+ "Add Tracking Number","Trackingnummer hinzufügen"
39
+ "Add comment to order","Kommentar zur Bestellung hinzufügen"
40
+ "Add new comment to credit memo","Neuen Kommentar zur Gutschrift hinzufügen"
41
+ "Add new comment to shipment","Neuen Kommentar zur Sendung hinzufügen"
42
+ "Add new tracking number","Neue Trackingnummer hinzufügen"
43
+ "Add to Cart","Zum Warenkobrn hinzufügen"
44
+ "Additional Product Info","Zusätzliche Angaben zum Produkt"
45
+ "Address","Adresse"
46
+ "Address model is not defined.","Adressenmodell ist nicht definiert."
47
+ "Adjustment Fee","Anpassungsgebühr"
48
+ "Adjustment Refund","Anpassungsrückerstattung"
49
+ "Agreement Information","Vereinbarungsinformationen"
50
+ "Allow Reorder","Nachbestellung erlauben"
51
+ "Amount","Summe"
52
+ "Amount: %s.","Summe: %s."
53
+ "An error occurred while assigning order status. Status has not been assigned.","Bei der Zuweisung des Auftragsstatus ist ein Fehler aufgetreten. Status wurde nicht zugewiesen."
54
+ "An error occurred while creating shipping label.","Ein Fehler ist aufgetreten beim Erstellen des Versandlabels."
55
+ "An error occurred while saving order status. The status has not been added.","Beim Speichern des Auftragsstatus ist ein Fehler aufgetreten. Der Status wurde nicht hinzugefügt."
56
+ "An error occurred while unassigning order status.","Beim Löschen der Zuweisung für einen Auftragsstatus ist ein Fehler aufgetreten."
57
+ "An error occurred while updating the order address. The address has not been changed.","Beim Aktualisieren der Bestelladresse ist ein Fehler aufgetreten. Die Adresse wurde nicht geändert."
58
+ "An item option with code %s already exists.","Eine Artikeloption mit Code %s existiert bereits."
59
+ "Anchor Custom Title","Kundenspezifischen Titel festlegen"
60
+ "Append Comments","Kommentare anhängen"
61
+ "Apply","Anwenden"
62
+ "Apply Coupon Code","Coupon Code anwenden"
63
+ "Approved the payment online.","Zahlung online akzeptiert."
64
+ "Are you sure you want to accept this payment?","Sind Sie sicher, dass Sie diese Zahlung akzeptieren wollen?"
65
+ "Are you sure you want to cancel this order?","Sind Sie sicher, dass Sie diese Bestellung stornieren wollen?"
66
+ "Are you sure you want to delete all items from shopping cart?","Sind Sie sicher, dass Sie alle Artikel aus dem Einkaufswagen löschen möchten?"
67
+ "Are you sure you want to deny this payment?","Sind Sie sicher, dass Sie diese Zahlung ablehnen wollen?"
68
+ "Are you sure you want to do this?","Sind Sie sicher, dass sie das tun wollen?"
69
+ "Are you sure you want to send Creditmemo email to customer?","Sind Sie sicher, dass Sie ein Creditmemo E-Mail an den Kunden schicken wollen?"
70
+ "Are you sure you want to send Invoice email to customer?","Sind Sie sicher, dass Sie ein Rechnungsmail an den Kunden schicken wollen?"
71
+ "Are you sure you want to send Shipment email to customer?","Sind Sie sicher, dass Sie ein Versandmail an den Kunden schicken wollen?"
72
+ "Are you sure you want to send order email to customer?","Sind Sie sicher, dass Sie ein Bestellungsmail an den Kunden schicken wollen?"
73
+ "Are you sure you want to void the payment?","Sind Sie sicher, dass Sie die Zahlung ungültig machen wollen?"
74
+ "Are you sure?","Sind Sie sicher?"
75
+ "Are you sure? This order will be canceled and a new one will be created instead","Sind Sie sicher? Diese Bestellung wird storniert und eine neue wird stattdessen erstellt"
76
+ "Assign Order Status to State","Staat einen Auftragsstatus zuweisen"
77
+ "Assign Status to State","Staat einen Status zuweisen"
78
+ "Assignment Information","Informationen zur Zuweisung"
79
+ "At least a payment ID must be set.","Es muss mindestens eine ZahlungsID gesetzt sein."
80
+ "Authorization","Bewilligung"
81
+ "Authorized amount of %s.","Bewilligte Summe von %s."
82
+ "Authorizing amount of %s is pending approval on gateway.","Bewilligungssumme von %s wartet auf Zustimmung am Gateway."
83
+ "Back","Zurück"
84
+ "Back to Billing Agreements","Zurück zu Rechnungsvereinbarungen"
85
+ "Back to My Orders","Zurück zu Meine Bestellungen"
86
+ "Back to Recurring Profiles","Zurück zu Wiederkehrende Profile"
87
+ "Backordered","Rückständig"
88
+ "Bestsellers","Bestseller"
89
+ "Bill to Name","Rechnung auf Namen"
90
+ "Billing","Abrechnung"
91
+ "Billing Address","Rechnungsadresse"
92
+ "Billing Agreement","Rechnungsvereinbarung"
93
+ "Billing Agreement # %s","Rechnungsvereinbarung # %s"
94
+ "Billing Agreement #%s","Rechnungsvereinbarung #%s"
95
+ "Billing Agreement View","Rechnungsvereinbarung Ansicht"
96
+ "Billing Agreements","Rechnungsvereinbarungen"
97
+ "Billing Last Name","Nachname in der Rechnung"
98
+ "Billing ZIP Code","PLZ in der Rechnung"
99
+ "Buy %s for price %s","Kaufen Sie %s zum Preis von %s"
100
+ "CSV","CSV"
101
+ "Cancel","Abbrechen"
102
+ "Cancel credit memo","Gutschrift aufheben"
103
+ "Cancel invoice","Rechnung abbrechen"
104
+ "Cancel order","Bestellung abbrechen"
105
+ "Canceled","Storniert"
106
+ "Canceled order offline.","Bestellung offline abgebrochen."
107
+ "Canceled order online.","Bestellung online abgebrochen."
108
+ "Cannot add order history.","Bestellungshistorie kann nicht hinzugefügt werden."
109
+ "Cannot create an empty shipment.","Leere Sendung kann nicht erstellt werden."
110
+ "Cannot determine the field name.","Feldname kann nicht bestimmt werden."
111
+ "Cannot do invoice for order.","Rechnung für Bestellung kann nicht erstellt werden."
112
+ "Cannot do shipment for order.","Versand für Bestellung kann nicht durchgeführt werden."
113
+ "Cannot get order instance","Bestellungsinstanz kann nicht gefunden werden."
114
+ "Cannot get the order instance.","Die Bestellungsinstanz kann nicht gefunden werden."
115
+ "Cannot register an existing credit memo.","Eine bereits existierende Gutschrift kann nicht nochmals registriert werden."
116
+ "Cannot register existing invoice","Eine bereits existierende Rechnung kann nicht nochmals registriert werden."
117
+ "Cannot register existing shipment","Eine bereits existierende Sendung kann nicht nochmals registriert werden."
118
+ "Capture","Erfassung"
119
+ "Capture Amount","Erfassungssumme"
120
+ "Capture Offline","Offline Erfassung"
121
+ "Capture Online","Online Erfassung"
122
+ "Capture invoice","Erfassungsrechnung"
123
+ "Captured amount of %s online.","Erfassungssumme von %s online."
124
+ "Capturing amount of %s is pending approval on gateway.","Erfassungssumme von %s wartet auf Zustimmung am Gateway."
125
+ "Carrier","Carrier"
126
+ "Carrier/Method","Carrier/Methode"
127
+ "Change status, add comments","Status ändern, Kommentare hinzufügen"
128
+ "Changing address information will not recalculate shipping, tax or other order amount.","Durch das Ändern von Adressinformationen werden Versandkosten, Steuern oder ein sonstiger Bestellwert nicht neu berechnet."
129
+ "Checkout Totals Sort Order","Checkout Gesamtsummen Sortierfolge"
130
+ "City","Stadt"
131
+ "Clear Shopping Cart","Einkaufswagen leeren"
132
+ "Click to change shipping method","Klicken Sie um die Versandart zu ändern"
133
+ "Close","Schließen"
134
+ "Closed","Geschlossen"
135
+ "Comma-separated.","Durch Komma getrennt."
136
+ "Comment","Kommentar"
137
+ "Comment Text","Kommentartext"
138
+ "Comments","Kommentare"
139
+ "Comments History","Kommentarhistorie"
140
+ "Company","Firma"
141
+ "Complete","Vollständig"
142
+ "Configure","Konfigurieren"
143
+ "Configure and Add to Order","Konfigurieren und zum Auftrag hinzufügen"
144
+ "Contents","Inhalt"
145
+ "Continue","Weiter"
146
+ "Controls whether customer IP is shown in orders, invoices, shipments, credit memos.","Überwacht, ob die Kunden-IP in Bestellungen, Rechnungen, Sendungen und Gutschriften angezeigt wird."
147
+ "Country","Land"
148
+ "Coupons","Gutscheine"
149
+ "Create","Erstellen"
150
+ "Create New Customer","Neuen Kunden anlegen"
151
+ "Create New Order","Neue Bestellung anlegen"
152
+ "Create New Order Status","Neuen Auftragsstatus anlegen"
153
+ "Create New Order for %s","Neue Bestellung für %s anlegen"
154
+ "Create New Order for %s in %s","Neue Bestellung für %s in %s anlegen"
155
+ "Create New Order for New Customer","Neue Bestellung für neuen Kunden anlegen"
156
+ "Create New Order for New Customer in %s","Neue Bestellung für neuen Kunden in %s anlegen"
157
+ "Create New Status","Neuen Status anlegen"
158
+ "Create Order","Bestellung anlegen"
159
+ "Create Packages","Verpackungen erstellen"
160
+ "Create Shipment","Lieferung erstellen"
161
+ "Create Shipping Label","Versandlabel erstellen"
162
+ "Create Shipping Label...","Versandlabel erstellen..."
163
+ "Create new credit memo for order","Neue Gutschrift für Bestellung erstellen"
164
+ "Create new invoice for order","Neue Rechnung für Bestellung anlegen"
165
+ "Create new shipment for order","Neue Lieferung für Bestellung fertig machen"
166
+ "Create...","...erstellen"
167
+ "Created At","Erstellte At"
168
+ "Created billing agreement #%s.","Rechnungsvereinbahrung #%s erstellt."
169
+ "Created:","Erstellt:"
170
+ "Credit Memo","Gutschrift"
171
+ "Credit Memo #","Gutschrift #"
172
+ "Credit Memo # ","Gutschrift Nr. "
173
+ "Credit Memo #%1$s | %3$s | %2$s (%4$s)","Gutschrift #%1$s | %3$s | %2$s (%4$s)"
174
+ "Credit Memo Comment Email Sender","Gutschrift Kommentar Email Sender"
175
+ "Credit Memo Comment Email Template","Gutschrift Kommentar Email Vorlage"
176
+ "Credit Memo Comment Email Template for Guest","Gutschrift Kommentar Email Vorlage für Gast"
177
+ "Credit Memo Comments","Gutschrift Kommentare"
178
+ "Credit Memo Email Sender","Gutschrift Email Sender"
179
+ "Credit Memo Email Template","Gutschrift Email Vorlage"
180
+ "Credit Memo Email Template for Guest","Gutschrift Email Vorlage für Gast"
181
+ "Credit Memo Update","Gutschrift Aktualisierung"
182
+ "Credit Memo Update for Guest","Gutschrift Aktualisierung für Gast"
183
+ "Credit Memos","Gutschriften"
184
+ "Credit memo canceling problem.","Problem bei Gutschriftaufhebung"
185
+ "Credit memo cannot be canceled.","Gutschrift kann nicht aufgehoben werden."
186
+ "Credit memo has been created automatically","Gutschriftenempfänger wurde automatisch erstellt"
187
+ "Custom Price","Kundenpreis"
188
+ "Custom Value","Kundenmehrwert"
189
+ "Customer","Kunde"
190
+ "Customer Can Define Start Date","Kunden können den Starttermin bestimmen"
191
+ "Customer Email","Kunden Email"
192
+ "Customer Group","Kundengruppe"
193
+ "Customer Last Name","Nachname des Kunden"
194
+ "Customer My Account Order Creditmemo View","Kundenbestellung My Account Ansicht der Gutschrift"
195
+ "Customer My Account Order History","Kundenbestellung My Account Historie"
196
+ "Customer My Account Order Invoice View","Kundenbestellung My Account Ansicht der Rechnung"
197
+ "Customer My Account Order Shipment View","Kundenbestellung My Account Ansicht der Lieferung"
198
+ "Customer My Account Order View","Kundenbestellung My Account Ansicht"
199
+ "Customer Name","Kundenname"
200
+ "Customer\'s Current Activities","Aktuelle Aktionen des Kunden"
201
+ "Customs Value","Zollwert"
202
+ "Date","Datum"
203
+ "Date Shipped","Versanddatum"
204
+ "Default Status","Standardstatus"
205
+ "Default Template","Standardvorlage"
206
+ "Default logo, will be used in PDF and HTML documents.<br />(jpeg, tiff, png) If you see image distortion in PDF, try to use larger image","Standardlogo, wird in PDF- und HTML-Dokumenten verwendet.<br />(jpeg, tiff, png) Wenn Sie eine Bildverzerrung im PDF feststellen, versuchen Sie es mit einem größeren Bild"
207
+ "Delete","Löschen"
208
+ "Delete Package","Verpackung löschen"
209
+ "Denied the payment online.","Bezahlung online verweigert."
210
+ "Deny Payment","Bezahlung verweigern"
211
+ "Description Message","Beschreibungsmitteilung"
212
+ "Discount","Rabatt"
213
+ "Discount (%s)","Rabatt (%s)"
214
+ "Discount Amount","Rabattbetrag"
215
+ "Display Order ID in Header","Auftrags-ID in der Kopfzeile anzeigen"
216
+ "Edit","Bearbeiten"
217
+ "Edit Order #%s","Bestellung #%s bearbeiten"
218
+ "Edit Order %s %s Address","Bestelladresse %s %s bearbeiten"
219
+ "Edit Order Status","Auftragsstatus bearbeiten"
220
+ "Email","E-Mail"
221
+ "Email Address","E-Mail-Adresse"
222
+ "Email Copy of Credit Memo","E-Mail-Kopie der Gutschrift"
223
+ "Email Copy of Invoice","Rechnungskopie per E-Mail senden"
224
+ "Email Copy of Shipment","E-Mail-Kopie der Versandinformationen"
225
+ "Email Order Confirmation","E-Mail mit Auftragsbestätigung"
226
+ "Enable","Aktivieren"
227
+ "Enabled","Aktiviert"
228
+ "Enter the billing last name and email/ZIP as in the order billing address","Geben Sie den Nachnamen und die E-Mail/PLZ wie auf der Rechnungsadresse in der Bestellung ein."
229
+ "Entered data is incorrect. Please try again.","Die eingegebenen Daten sind inkorrekt. Bitte nochmal versuchen."
230
+ "Error to Show in Shopping Cart","Fehler beim Anzeigen im Warenkorb"
231
+ "Excel XML","Excel-XML"
232
+ "Excl. Tax","ohne Steuern"
233
+ "Expired","Abgelaufen"
234
+ "Explanation","Erklärung"
235
+ "Failed to cancel the billing agreement.","Aufhebung von Billing Agreement fehlgeschlagen."
236
+ "Failed to create billing agreement for this order.","Erstellen von Billing Agreement für diese Bestellung fehlgeschlagen."
237
+ "Failed to finish billing agreement wizard.","Abschließen von Billing Agreement Assistent fehlgeschlagen."
238
+ "Failed to send the order email.","Senden der Auftrags-E-Mail fehlgeschlagen."
239
+ "Failed to start billing agreement wizard.","Start von Billing Agreement Assistent fehlgeschlagen."
240
+ "Failed to update the payment.","Aktualisieren der Bezahlung fehlgeschlagen."
241
+ "Failed to update the profile.","Aktualisierung des Profils fehlgeschlagen."
242
+ "Failed to void the payment.","Aufheben der Bezahlung fehlgeschlagen."
243
+ "Fetch","Holen"
244
+ "File extension not known or unsupported type in the following shipment: %s","Dateierweiterung ist unbekannt oder wird nicht unterstützt bei der folgenden Lieferung: %s"
245
+ "Find Order By:","Bestellungen finden durch:"
246
+ "First Name","Vorname"
247
+ "From","Von"
248
+ "From Name","Von Name"
249
+ "From:","Von:"
250
+ "G.T. (Base)","G.B. (Basis)"
251
+ "G.T. (Purchased)","G.T. (gekauft)"
252
+ "General","Allgemein"
253
+ "General Information","Allgemeine Informationen"
254
+ "Get Payment Update","Zahlungsaktualisierung abrufen"
255
+ "Get Update","Update erhalten"
256
+ "Get shipping methods and rates","Versandarten und -kosten abrufen"
257
+ "Gift Message","Grußnachricht"
258
+ "Gift Message for This Order","Geschenknachricht für diese Bestellung"
259
+ "Gift Message for the Entire Order","Geschenkmitteilung für die gesamte Bestellung"
260
+ "Gift Message for this Order","Grußnachricht für diesen Auftrag"
261
+ "Gift Options","Geschenkoptionen"
262
+ "Gift Wrapping for the Entire Order","Geschenkverpackung für gesamte Bestellung"
263
+ "Girth","Umfang"
264
+ "Go to Home Page","Go to Home Page"
265
+ "Grand Total","Gesamtbetrag"
266
+ "Grand Total to be Charged","Gesamtsumme die belastet werden soll"
267
+ "Guest","Gast"
268
+ "Height","Höhe"
269
+ "Hide Customer IP","Kunden-IP verbergen"
270
+ "Hold","Warten"
271
+ "Hold action is not available.","Zurückstellen nicht verfügbar."
272
+ "Hold order","Bestellung zurückstellen"
273
+ "Home","Home"
274
+ "ID","ID"
275
+ "ID #","ID Nr."
276
+ "IPN ""Refunded"". Refund issued by merchant. Registered notification about refunded amount of %s. Transaction ID: ""%s"". Credit Memo has not been created. Please create offline Credit Memo.","IPN ""Erstattet"". Erstattung vom Händler ausgestellt. Benachrichtigung über zurückerstatteten Betrag von %s registriert. Transaktions-ID: ""%s"". Gutschrift wurde nicht erstellt. Bitte erstellen Sie offline eine Gutschrift."
277
+ "If empty, the default description above will be used.","Wenn leer wird die Standardbeschreibung oben verwendet."
278
+ "If empty, the default error above will be used.","Wenn leer, wird der obenstehende Standardfehler benutzt."
279
+ "If the invoice was created offline, try creating an offline creditmemo.","Wenn Rechnung offline erstellt wurde, versuchen Sie einen Offline Gutschein zu erstellen."
280
+ "Incl. Tax","Steuer inkludieren"
281
+ "Information","Information"
282
+ "Initial Fee","Erstzahlung"
283
+ "Initial Fees","Anfängliche Gebühren"
284
+ "Initial period payment","Anfangszahlung"
285
+ "Insufficient information to create shipping label(s). Please verify your Store Information and Shipping Settings.","Unzureichende Informationen um ein Versandetikett/en zu erstellen. Bitte bestätigen Sie Ihre Shop Informationen und Versandeinstellungen."
286
+ "Invalid block: %s.","Ungültiger Block: %s."
287
+ "Invalid carrier specified.","Ungültiger Versender angegeben."
288
+ "Invalid draw line data. Please define ""lines"" array.","Ungültige Draw Line-Daten. Bitte ""lines""-Array definieren."
289
+ "Invalid entity model","Ungültiges Entitätsmodell"
290
+ "Invalid item option format.","Ungültiges Format für Artikeloption."
291
+ "Invalid qty to invoice item ""%s""","Ungültige Anz., um Artikel ""%s"" zu fakturieren"
292
+ "Invalid qty to refund item ""%s""","Ungültige Anz., um Artikel ""%s"" zurückzuerstatten"
293
+ "Invalid qty to ship for item ""%s""","Ungültige Anz. bezüglich der Lieferung des Artikels ""%s"""
294
+ "Invalid renderer model","Ungültiges Renderer-Modell"
295
+ "Invalid request for adding product to quote.","Ungültige Anfrage, dem Angebot Produkte hinzuzufügen."
296
+ "Invalid value(s) for Qty to Ship","Unzulässige(r) Wert(e) für die Liefermenge"
297
+ "Invoice","Rechnung"
298
+ "Invoice #","Rechnung Nr."
299
+ "Invoice # ","Invoice # "
300
+ "Invoice #%1$s | %2$s | %4$s (%3$s)","Rechnung Nr.%1$s | %2$s | %4$s (%3$s)"
301
+ "Invoice #%s","Rechnung #%s"
302
+ "Invoice Comment Email Sender","Rechnung Kommentar E-Mail Absender"
303
+ "Invoice Comment Email Template","Rechnung Kommentar E-Mail Vorlage"
304
+ "Invoice Comment Email Template for Guest","E-Mail-Vorlage für Rechnungszusätze für Gäste"
305
+ "Invoice Comments","Kommentare zur Rechnung"
306
+ "Invoice Date","Rechnungsdatum"
307
+ "Invoice Email Sender","Rechnung an E-Mail-Versender ausstellen"
308
+ "Invoice Email Template","Rechnung Email Vorlage"
309
+ "Invoice Email Template for Guest","Rechnung E-Mail Vorlage für Gast"
310
+ "Invoice Update","Aktualisierte Rechnung"
311
+ "Invoice Update for Guest","Aktualisierte Rechnung für Gast"
312
+ "Invoice and Packing Slip Design","Gestaltung von Rechnung und Lieferschein"
313
+ "Invoice and Ship","Rechnung und Auslieferung"
314
+ "Invoice canceling problem.","Problem beim Annullieren der Rechnung"
315
+ "Invoice cannot be canceled.","Rechnung kann nicht widerrufen werden."
316
+ "Invoice cannot be captured.","Rechnung kann nicht abgefangen werden."
317
+ "Invoice cannot be voided.","Rechnung kann nicht ungültig gemacht werden."
318
+ "Invoice capturing problem.","Fehler bei Rechnungserfassung."
319
+ "Invoice void problem","Problem beim Ungültigmachen der Rechnung."
320
+ "Invoice will be created without communication with payment gateway.","Rechnung wird ohne Verbindung zur Zahlungsschnittstelle erstellt."
321
+ "Invoiced","In Rechnung gestellt."
322
+ "Invoices","Rechnungen"
323
+ "Is Closed","Geschlossen"
324
+ "Item","Objekt"
325
+ "Item Status","Artikelstatus"
326
+ "Item object is not specified.","Objekt des Artikels nicht näher beschrieben."
327
+ "Item options declaration error.","Fehler bei der Angabe der Artikeloptionen."
328
+ "Item ordered qty","Bestellte Menge des Artikels"
329
+ "Item qty declaration error.","Fehler bei Eingabe der Artikelmenge."
330
+ "Items","Artikel"
331
+ "Items Invoiced","In Rechnung gestellte Artikel"
332
+ "Items Ordered","Bestellte Artikel"
333
+ "Items Refunded","Rückvergütete Artikel"
334
+ "Items Shipped","Artikel versandt"
335
+ "Items in the Package","Artikel in der Sendung"
336
+ "Items maximum quantity or price do not allow checkout.","Nicht möglich, zur Kasse zu gehen wegen maximaler Menge oder Preis der Artikel."
337
+ "Items options declaration error.","Fehler bei Angabe der Artikeloptionen."
338
+ "Items to Refund","Artikel zur Rückvergütung"
339
+ "Items to Ship","Zu versendende Artikel"
340
+ "Key","Schlüssel"
341
+ "Last Name","Letzter Name"
342
+ "Last Ordered Items","Zuletzte bestellte Artikel"
343
+ "Last status can\'t be unassigned from state.","Letzter Status kann vom Zustand nicht entfernt werden."
344
+ "Length","Länge"
345
+ "Link to the New Order","Link zu neuer Bestellung"
346
+ "Link to the Previous Order","Link zu vorheriger Bestellung"
347
+ "Logo for HTML Print View","Logo für HTML-Druckansicht"
348
+ "Logo for HTML documents only. If empty, default will be used.<br />(jpeg, gif, png)","Logo nur für HTML-Dokumente. Falls leer wird eine Standardvoreinstellung verwendet.<br />(jpeg, gif, png)"
349
+ "Logo for PDF Print-outs (200x50)","Logo für PDF-Ausdrucke (200x50)"
350
+ "Make Check payable to:","Scheck zur Auszahlung an:"
351
+ "Manage","Verwalten"
352
+ "Maximum amount available to refund is %s","Maximale Summe, die für eine Rückerstattung verfügbar ist, beträgt %s"
353
+ "Maximum shipping amount allowed to refund is: %s","Erlaubte maximale Liefermenge zur Rückvergütung ist:%s"
354
+ "Message","Nachricht"
355
+ "Message:","Nachricht:"
356
+ "Minimum Amount","Mindestmenge"
357
+ "Minimum Order Amount","Mindestmenge für Bestellung"
358
+ "Mixed","Gemischt"
359
+ "Most Viewed","Am häufigsten betrachtet"
360
+ "Most Viewed Products Report","Bericht über die am häufigsten betrachteten Produkte"
361
+ "Move to Shopping Cart","In den Einkaufskorb legen"
362
+ "Move to Wishlist","Auf Wunschzettel schreiben"
363
+ "Multi-address Description Message","Nachricht für Mehrfachadressen-Beschreibung"
364
+ "Multi-address Error to Show in Shopping Cart","Mehrfachadressen-Fehler für Anzeige im Warenkorb"
365
+ "My Orders","Meine Bestellungen"
366
+ "My Orders - Details","Meine Bestellungen - Details"
367
+ "N/A","Nicht verfügbar"
368
+ "Name","Name"
369
+ "New","Neu"
370
+ "New Billing Agreement","Neue Abrechnungsvereinbarung"
371
+ "New Credit Memo","Neue Gutschrift"
372
+ "New Credit Memo for Guest","Neue Gutschrift für Gast"
373
+ "New Credit Memo for Invoice #%s","Neue Gutschrift für Rechnung #%s"
374
+ "New Credit Memo for Order #%s","Neue Gutschrift für Bestellung #%s"
375
+ "New Invoice","Neue Rechnung"
376
+ "New Invoice and Shipment for Order #%s","Neue Rechnung und Versand für Bestellung #%s"
377
+ "New Invoice for Guest","Neue Rechnung für Gast"
378
+ "New Invoice for Order #%s","Neue Rechnung für die Bestellung #%s"
379
+ "New Order","Neue Bestellung"
380
+ "New Order Confirmation Email Sender","Neue Bestellbestätigung E-Mail Absender"
381
+ "New Order Confirmation Template","Neue Vorlage für Bestellbestätigung"
382
+ "New Order Confirmation Template for Guest","Neue Bestellbestätigung Vorlage für Gast"
383
+ "New Order RSS","RSS für neue Bestellung"
384
+ "New Order Status","Neuer Bestellstatus"
385
+ "New Order for Guest","Neue Bestellung für Gast"
386
+ "New Shipment","Neue Lieferung"
387
+ "New Shipment for Guest","Neue Sendung für Gast"
388
+ "New Shipment for Order #%s","Neue Sendung für Bestellung #%s"
389
+ "Newsletter Subscription","Newsletter-Abonnement"
390
+ "No","Nein"
391
+ "No Items","Keine Artikel"
392
+ "No Items To Refund","Keine Artikel für Erstattung"
393
+ "No Payment Methods","Keine Zahlungsmethoden"
394
+ "No detail for number ""%s""","Keine Details zur Nummer ""%s"""
395
+ "No information available.","Keine Informationen verfügbar."
396
+ "No items","Keine Artikel"
397
+ "No order(s) were put on hold.","Keine Bestellung(en) zurückgestellt."
398
+ "No order(s) were released from holding status.","Für keine Bestellung(en) wurde der Wartestatus aufgehoben."
399
+ "No ordered items","Keine bestellten Artikel"
400
+ "No shipping information available","Keine Versandinformation verfügbar"
401
+ "Nominal Items","Nominelle Artikel"
402
+ "Nominal item can be purchased standalone only. To proceed please remove other items from the quote.","Nominelle Artikel können nur einzeln erworben werden. Um fortzufahren, entfernen Sie bitte die übrigen Artikel aus dem Angebot."
403
+ "Nominal order registered.","Beispielbestellung registriert."
404
+ "Not Capture","Nicht gespeichert"
405
+ "Not Initialized","Nicht initialisiert"
406
+ "Not Notified","Nicht benachrichtigt"
407
+ "Not enough valid data to save the parent transaction ID.","Nicht genügend gültige Daten, um die Transaktions-ID der Haupttransaktion zu speichern."
408
+ "Notification Not Applicable","Benachrichtigung nicht möglich"
409
+ "Notified","Benachrichtigt"
410
+ "Notify Customer by Email","Kunde per E-Mail benachrichtigen"
411
+ "Number","Nummer"
412
+ "Number of Invoiced Orders","Anzahl der abgerechneten Bestellungen"
413
+ "Number of Orders","Anzahl der Bestellungen"
414
+ "Number of Refunded Orders","Anzahl der erstatteten Bestellungen"
415
+ "OK","OK"
416
+ "Offline Refunded","Offline rückerstattet"
417
+ "On Hold","Zurückgestellt"
418
+ "Online Refunded","Online erstattet"
419
+ "Order","Bestellung"
420
+ "Order #","Bestellung Nr."
421
+ "Order # ","Order # "
422
+ "Order # %s","Bestellung # %s"
423
+ "Order # %s %s | %s","Bestellung # %s %s | %s"
424
+ "Order #%s","Bestellung #%s"
425
+ "Order #%s - %s","Bestellung #%s - %s"
426
+ "Order API","Auftrags-API"
427
+ "Order Address Information","Lieferadressen-Information"
428
+ "Order Comment","Kommentar zur Bestellung"
429
+ "Order Comment Email Sender","Auftragskommentar vom E-Mail-Versender"
430
+ "Order Comment Email Template","Kommentar zur Bestellung E-Mail Vorlage"
431
+ "Order Comment Email Template for Guest","Kommentar zur Bestellung E-Mail Vorlage für Gast"
432
+ "Order Comments","Kommentare zur Bestellung"
433
+ "Order Credit Memos","Gutschriften anfordern"
434
+ "Order Currency:","Währung der Bestellung:"
435
+ "Order Date","Bestelldatum"
436
+ "Order Date (%s)","Bestelldatum (%s)"
437
+ "Order Date: ","Bestelldatum"
438
+ "Order Date: %s","Bestelldatum %s"
439
+ "Order Details","Bestellungsdetail"
440
+ "Order Grand Total","Gesamtsumme Bestellung"
441
+ "Order History","Bestellungshistorie"
442
+ "Order History Info","Bestellverlaufs-Information"
443
+ "Order ID","BestellungsID"
444
+ "Order Information","Bestellungsinformationen"
445
+ "Order Invoices","Rechnungen anfordern"
446
+ "Order Shipments","Sendungen zur Bestellung"
447
+ "Order State","Bestellstatus"
448
+ "Order Status","Status des Auftrags"
449
+ "Order Status Information","Bestellstatus-Information"
450
+ "Order Statuses","Bestellstatus"
451
+ "Order Subtotal","Zwischensumme Bestellung"
452
+ "Order Taxes Report Grouped by Tax Rates","Bestellungssteuerbericht nach Steuersätzen gruppiert"
453
+ "Order Total","Gesamtsumme Bestellung"
454
+ "Order Totals","Gesamtbeträge Bestellung"
455
+ "Order Update","Update zur Bestellung"
456
+ "Order Update for Guest","Update zur Bestellung für Gast"
457
+ "Order View","Bestellungsansicht"
458
+ "Order credit memo","Gutschrift anfordern"
459
+ "Order does not allow to be canceled.","Der Auftrag kann nicht annulliert werden."
460
+ "Order invoice","Rechnung zur Bestellung"
461
+ "Order is suspended as its authorizing amount %s is suspected to be fraudulent.","Bestellung ist ausgesetzt, da der autorisierte Betrag %s vermutlich betrügerisch ist."
462
+ "Order is suspended as its capture amount %s is suspected to be fraudulent.","Die Bestellung wurde ausgesetzt, da die erfasste Bestellmenge %s unter dem Verdacht betrügerischer Aktivitäten steht."
463
+ "Order object is not specified.","Bestellungsobjekt ist nicht spezifiziert."
464
+ "Order saving error: %s","Fehler beim Speichern der Bestellung: %s"
465
+ "Order shipments","Bestellungslieferungen"
466
+ "Order status does not exist.","Bestellstatus existiert nicht."
467
+ "Order status with the same status code already exist.","Es existiert schon ein Bestellstatus mit diesem Statuscode."
468
+ "Order was placed using %s","Bestellung wurde unter Verwendung von %s durchgeführt."
469
+ "Ordered","Bestellt"
470
+ "Ordered amount of %s.","Bestellte Menge von %s."
471
+ "Ordering amount of %s is pending approval on gateway.","Bestellte Menge von %s erwartet die Bestätigung vom Gateway."
472
+ "Orders","Aufträge"
473
+ "Orders and Returns","Bestellungen und Retouren"
474
+ "Orders and Returns Search Form","Suchmaske Bestellungen und Rücksendungen"
475
+ "Original Price","Originalpreis"
476
+ "Original order item that recurring payment profile correspondss to.","Ursprünglich bestellter Artikel, der dem Zahlungsprofil entspricht."
477
+ "PDF Credit Memos","PDF Gutschriften"
478
+ "PDF Invoices","PDF Rechnungen"
479
+ "PDF Packingslips","PDF Packzettel"
480
+ "PDF Print-outs","PDF Ausdrucke"
481
+ "PDF object is not specified.","PDF Objekt ist nicht spezifiziert."
482
+ "PDF page object is not specified.","PDF Seitenobjekt ist nicht spezifiziert"
483
+ "PDF total model should extend Mage_Sales_Model_Order_Pdf_Total_Default","PDF Gesamtmodell sollte Mage_Sales_Model_Order_Pdf_Total_Default erweitern"
484
+ "Package","Paket"
485
+ "Package types are disregarded for USPS domestic shipments.","Paket-Typen werden für den USPS Inlandsversand außer Acht gelassen."
486
+ "Packages","Verpackungen"
487
+ "Packingslip # ","Packzettel #"
488
+ "Paid","bezahlt"
489
+ "Paid Amount","Bezahlter Betrag"
490
+ "Parent Transaction ID","Ursprüngliche Transaktions-ID"
491
+ "Parent transaction ID must have a transaction ID.","Die Transaktions-Stammkennung muss eine Transaktionskennung haben"
492
+ "Partial","Unvollständig"
493
+ "Payment Failed","Bezahlung fehlgeschlagen"
494
+ "Payment Information","Information zur Zahlung"
495
+ "Payment Method","Zahlungsart"
496
+ "Payment Method Name","Name der Bezahlungsmethode"
497
+ "Payment Method:","Zahlungsweise:"
498
+ "Payment Review","Bezahlungsüberprüfung"
499
+ "Payment disallow storing objects.","Die Zahlung erlaubt keine Speicherung von Objekten"
500
+ "Payment transactions disallow storing objects.","Zahlungen beinhalten nicht das Speichern der Objekte."
501
+ "Payment type","Zahlungsart"
502
+ "Payment update has been made.","Update der Zahlung ist erfolgt"
503
+ "Pending","Ausstehend"
504
+ "Pending Payment","Ausstehende Bezahlung"
505
+ "Period","Zeitraum"
506
+ "Place Order Using Billing Agreements","Auftrag mithilfe von Rechnungsvereinbahrungen erteilen"
507
+ "Placed from IP","Bestellt von IP Nummer"
508
+ "Please Select Products to Add","Bitte wählen Sie hinzuzufügende Produkte"
509
+ "Please Select a Customer","Bitte wählen sie einen Kunden"
510
+ "Please Select a Store","Bitte wählen sie ein Geschäft aus"
511
+ "Please check billing address information. %s","Bitte überprüfen Sie die Rechnungsadresse. %s"
512
+ "Please check shipping address information. %s","Bitte überprüfen Sie die Lieferadresse. %s"
513
+ "Please define PDF object before using.","Bitte bestimmen sie vor Gebrauch das PDF Objekt"
514
+ "Please enter positive number in this field.","Bitte schreiben sie in dieses Feld Pluszahlen."
515
+ "Please select a valid payment method.","Bitte wählen Sie eine gültige Zahlungsmethode."
516
+ "Please specify a shipping method.","Bitte geben Sie eine Versandart an."
517
+ "Please specify a valid grid column alias name that exists in grid table.","Bitte geben sie eine gültige Reihenbezeichnung, die in der Matrix existiert, an."
518
+ "Price","Preis"
519
+ "Print","Ausdrucken"
520
+ "Print All","Alles ausdrucken"
521
+ "Print All Invoices","Alle Rechnungen drucken"
522
+ "Print All Refunds","Alle Rückerstattungen ausdrucken"
523
+ "Print All Shipments","Allen Versand drucken"
524
+ "Print Credit Memos","Gutschriften ausdrucken"
525
+ "Print Invoice","Rechnung drucken"
526
+ "Print Invoices","Rechnungen ausdrucken"
527
+ "Print Order","Bestellung ausdrucken"
528
+ "Print Order # %s","Bestellung # %s ausdrucken"
529
+ "Print Packingslips","Packbelege ausdrucken"
530
+ "Print Refund","Erstattung drucken"
531
+ "Print Shipment","Lieferung ausdrucken"
532
+ "Print Shipping Label","Versandetikett drucken"
533
+ "Print Shipping Labels","Versandetiketten drucken"
534
+ "Processing","Bearbeitung"
535
+ "Product","Produkt"
536
+ "Product Name","Produktname"
537
+ "Products","Produkte"
538
+ "Products Bestsellers Report","Bericht der am meisten verkauften Artikel"
539
+ "Products in Comparison List","Artikel in der Vergleichsliste"
540
+ "Products should be added to package(s)","Produkte sollten dem Paket/den Paketen hinzugefügt werden"
541
+ "Profile #%s","Profil #%s"
542
+ "Profile Information","Profilinformation"
543
+ "Profile State","Profilstatus"
544
+ "Profit","Ertrag"
545
+ "Promotion Coupons Usage Report","Bericht über die Verwendung von Werbungsgutscheinen"
546
+ "Proper payment object must be set.","Es muss ein geeignetes Bezahlungsobjekt eingestellt werden."
547
+ "Purchase Order Number:","Bestellungsnummer:"
548
+ "Purchased From","Gekauft von"
549
+ "Purchased From (Store)","Erworben von (Geschäft)"
550
+ "Purchased Item","Erworbener Artikel"
551
+ "Purchased On","Gekauft am"
552
+ "Qty","Anzahl"
553
+ "Qty Invoiced","In Rechnung gestellte Menge"
554
+ "Qty Ordered","Bestellte Menge"
555
+ "Qty Shipped","Gelieferte Menge"
556
+ "Qty To Add","Hinzuzufügende Menge"
557
+ "Qty to Add","Hinzuzufügende Anz."
558
+ "Qty to Invoice","Zu berechnende Menge"
559
+ "Qty to Refund","Zu erstattende Menge"
560
+ "Qty to Ship","Zu versendende Menge"
561
+ "Quantity Ordered","bestellte Menge"
562
+ "Quote item id is not received.","Die angegebene Artikelnummer wurde nicht empfangen."
563
+ "Quote item is not loaded.","Der bestellte Artikel wird nicht geladen."
564
+ "Rate","Steuersatz"
565
+ "Recent Orders","Kürzlich aufgegebene Bestellungen"
566
+ "Recently Compared Products","zuletzt verglichene Artikel"
567
+ "Recently Viewed","Kürzlich angesehen"
568
+ "Recently Viewed Products","Kürzlich angesehene Produkte"
569
+ "Recurring Profile # %s","Wiederkehrendes Profil #%s"
570
+ "Recurring Profile Initial Fee","Wiederkehrendes Profil Einrichtungsgebühr"
571
+ "Recurring Profiles","Wiederkehrende Profile"
572
+ "Recurring Profiles (beta)","Wiederkehrende Profile &#40;Beta&#41;"
573
+ "Reference ID","Referenz-ID"
574
+ "Reference ID:","Referenz-ID:"
575
+ "Refresh","Aktualisieren"
576
+ "Refund","Erstatten"
577
+ "Refund #","Erstatten #"
578
+ "Refund #%s","Rückerstattung #%s"
579
+ "Refund Amount","Erstattungsbetrag"
580
+ "Refund Offline","Offline-Rückerstattung"
581
+ "Refund Shipping","Erstattung Versand"
582
+ "Refund Shipping (Excl. Tax)","Erstattung Versand (exkl. Steuer)"
583
+ "Refund Shipping (Incl. Tax)","Erstattung Versand (inkl. Steuer)"
584
+ "Refund Totals","Gesamtrückerstattung"
585
+ "Refunded","Rückerstattet"
586
+ "Refunded amount of %s offline.","Erstatteter Betrag von %s offline."
587
+ "Refunded amount of %s online.","Erstatteter Betrag von %s online."
588
+ "Refunds","Gutschriften"
589
+ "Registered a Void notification.","Ungültige Benachrichtigung registriert."
590
+ "Registered notification about approved payment.","Registrierte Benachrichtigung über akzeptierte Bezahlung."
591
+ "Registered notification about captured amount of %s.","Benachrichtigung über begrenzten Betrag von %s registriert."
592
+ "Registered notification about denied payment.","Benachrichtigung über abgelehnte Zahlung registriert."
593
+ "Registered notification about refunded amount of %s.","Registrierte Benachrichtigung über rückerstatteten Betrag von %s."
594
+ "Registered update about approved payment.","Aktualisierung über bestätigte Zahlung registriert."
595
+ "Registered update about denied payment.","Registrierte Aktualisierung bezüglich abgelehnter Zahlung."
596
+ "Regular Payment","Reguläre Zahlung"
597
+ "Related Orders","Dazugehörige Bestellungen"
598
+ "Remove","Entfernen"
599
+ "Remove Coupon Code","Gutscheincode entfernen"
600
+ "Remove tracking number","Tracking-Nummer entfernen"
601
+ "Reorder","Wieder bestellen"
602
+ "Retrieve credit memo info","Gutschrifts-Info abrufen"
603
+ "Retrieve credit memo information","Gutschriftinformationen abrufen"
604
+ "Retrieve credit memo list","Gutschrifts-Liste abrufen"
605
+ "Retrieve invoice info","Rechnungsinformationen abrufen"
606
+ "Retrieve invoice information","Rechnungsinformationen abrufen"
607
+ "Retrieve list of credit memos by filters","Gutschrifts-Liste filtern"
608
+ "Retrieve list of invoices by filters","Rechnungsliste nach Filtern abrufen"
609
+ "Retrieve list of orders by filters","Bestellliste nach Filtern abrufen"
610
+ "Retrieve list of shipments by filters","Versandliste nach Filtern abrufen"
611
+ "Retrieve order information","Bestellinformation abrufen"
612
+ "Retrieve orders info","Bestellungsinformationen abrufen"
613
+ "Retrieve shipment info","Versandinformationen abrufen"
614
+ "Retrieve shipment information","Versandinformation abrufen"
615
+ "Return to Stock","Zurück zum Inventar"
616
+ "Returned","Zurückgesendet"
617
+ "Returns","Rücksendungen"
618
+ "Revenue","Umsatz"
619
+ "Row Subtotal","Zeilengesamtsumme"
620
+ "Row Total","Zeilensumme"
621
+ "SKU","Artikelposition"
622
+ "Sales","Verkäufe"
623
+ "Sales Discount","Verkaufsermäßigung"
624
+ "Sales Emails","Verkaufs-E-Mails"
625
+ "Sales Emails Section","Verkaufsemailbereich"
626
+ "Sales Invoice Print View","Rechnungsdruckansicht"
627
+ "Sales Items","Verkaufsartikel"
628
+ "Sales Order Print View","Auftrags-Druckansicht"
629
+ "Sales Section","Verkaufsbereich"
630
+ "Sales Shipment Print View","Versendungskauf-Druckansicht"
631
+ "Sales Shipping","Versendungskauf"
632
+ "Sales Tax","Umsatzsteuer"
633
+ "Sales Total","Gesamtbetrag des Verkaufs"
634
+ "Same As Billing Address","Identisch mit Rechnungsadresse"
635
+ "Save Order Address","Bestelladresse speichern"
636
+ "Save Status","Status speichern"
637
+ "Save Status Assignment","Statuszuweisung speichern"
638
+ "Save in address book","Speichern im Adressbuch"
639
+ "Schedule","Planen"
640
+ "Select","Auswählen"
641
+ "Select All","Alle auswählen"
642
+ "Select from existing customer addresses:","Wählen Sie eine existierende Kundenadresse aus:"
643
+ "Selected option(s) or their combination is not currently available.","Ausgewählte Option(en) oder deren Kombination ist derzeit nicht verfügbar."
644
+ "Send Credit Memo Comment Email Copy To","Kreditkommentaremail in Kopie schicken an"
645
+ "Send Credit Memo Comments Email Copy Method","Senden Gutschrift Kommentare E-Mail Kopie Methode"
646
+ "Send Credit Memo Email Copy Method","Senden Gutschrift E-Mail Kopie Methode"
647
+ "Send Credit Memo Email Copy To","Kreditkommentaremail in Kopie schicken an"
648
+ "Send Email","E-Mail senden"
649
+ "Send Invoice Comment Email Copy To","Rechnungskommentaremail in Kopie schicken an"
650
+ "Send Invoice Comments Email Copy Method","Rechnung schicken Kommentare E-Mail Kopieren Methode"
651
+ "Send Invoice Email Copy Method","Rechnung schicken E-Mail Kopieren Methode"
652
+ "Send Invoice Email Copy To","Kopie der Rechnungs-E-Mail versenden an"
653
+ "Send Order Comment Email Copy To","Bestellungskommentaremail in Kopie schicken an"
654
+ "Send Order Comments Email Copy Method","Bestellung schicken Kommentare E-Mail Kopieren Methode"
655
+ "Send Order Email","E-Mail mit der Bestellung versenden"
656
+ "Send Order Email Copy Method","Bestellungsemail in Kopie schicken an"
657
+ "Send Order Email Copy To","Bestellungskommentaremail in Kopie schicken an"
658
+ "Send Sales Emails","Verkaufsemails verschicken"
659
+ "Send Shipment Comment Email Copy To","Kopie der E-Mail mit dem Lieferungsvermerk versenden an"
660
+ "Send Shipment Comments Email Copy Method","Senden Versand Kommentare E-Mail Kopie Methode"
661
+ "Send Shipment Email Copy Method","Sendung schicken E-Mail Kopieren Methode"
662
+ "Send Shipment Email Copy To","Kopie der Lieferungs-E-Mail versenden an"
663
+ "Send Tracking Information","Rückverfolgungsinformation schicken"
664
+ "Send shipment info","Versandinformationen senden"
665
+ "Set order for existing transactions not allowed","Die Reihenfolge für existierende Transaktionen festzulegen ist nicht gestattet"
666
+ "Ship","Versenden"
667
+ "Ship To","Lieferung an"
668
+ "Ship to Name","Lieferung auf Namen"
669
+ "Ship to:","Versenden nach:"
670
+ "Shipment","Lieferung"
671
+ "Shipment #","Lieferung #"
672
+ "Shipment #%1$s | %3$s (%2$s)","Lieferung #%1$s | %3$s (%2$s)"
673
+ "Shipment #%s","Lieferung #%s"
674
+ "Shipment Comment Email Sender","Lieferungskommentaremail-Absender"
675
+ "Shipment Comment Email Template","Lieferungskommentaremail-Vorlage"
676
+ "Shipment Comment Email Template for Guest","Lieferungskommentaremail-Vorlage für Gast"
677
+ "Shipment Comments","Lieferungskommentare"
678
+ "Shipment Email Sender","Lieferungsemail-Absender"
679
+ "Shipment Email Template","Lieferungsemail-Vorlage"
680
+ "Shipment Email Template for Guest","Lieferungsemail-Vorlage für Gast"
681
+ "Shipment Update","Lieferungsupdate"
682
+ "Shipment Update for Guest","Lieferungsaktualisierung für Gast"
683
+ "Shipments","Lieferungen"
684
+ "Shipped","Versandt"
685
+ "Shipped By","Geliefert von"
686
+ "Shipping","Lieferung"
687
+ "Shipping & Handling","Lieferung und Verarbeitung"
688
+ "Shipping &amp; Handling","Versand und Abwicklung"
689
+ "Shipping &amp; Handling Information","Versandinformationen"
690
+ "Shipping Address","Lieferungsadresse"
691
+ "Shipping Amount","Lieferungsbetrag"
692
+ "Shipping Information","Lieferungsinformation"
693
+ "Shipping Method","Liefermethode"
694
+ "Shipping Method:","Liefermethode:"
695
+ "Shipping Refund","Versanderstattung"
696
+ "Shipping and Tracking Information","Lieferungs- und Rückverfolgungsinformation"
697
+ "Shopping Cart","Einkaufswagen"
698
+ "Show Packages","Sendungen anzeigen"
699
+ "Signature Confirmation","Bestätigung Unterschrift"
700
+ "Signed Up From","Angemeldet seit"
701
+ "Size","Größe"
702
+ "Sku","SKU"
703
+ "Sold to:","Verkauft an:"
704
+ "Some item options or their combination are not currently available.","Einige Optionen oder deren Kombination sind zurzeit nicht verfügbar."
705
+ "Some of the products below do not have all the required options.","Einige der unten aufgeführten Produkte haben nicht alle der erforderlichen Optionen."
706
+ "Some of the selected options are not currently available.","Einige der ausgewählten Optionen sind nicht verfügbar."
707
+ "Sorry, no quotes are available for this order at this time.","Es tut uns Leid, es gibt derzeit keine Preisangabe für diese Bestellung."
708
+ "Source object is not specified.","Quellobjekt ist nicht angegeben."
709
+ "Specified profile does not exist.","Spezifiziertes Profil existiert nicht."
710
+ "State Code [State Title]","Statuscode [Statustitel]"
711
+ "State/Province","Staat/Bezirk"
712
+ "Status","Status"
713
+ "Status Code","Statuscode"
714
+ "Status Label","Statuslabel"
715
+ "Status:","Status:"
716
+ "Store Credit","Guthaben aufbewahren"
717
+ "Store View Specific Labels","Ladenansicht Spezifische Marken"
718
+ "Street Address","Anschrift (Straße, Hausnummer, PLZ)"
719
+ "Submit Comment","Kommentar abschicken"
720
+ "Submit Credit Memo","Gutschrift übermitteln"
721
+ "Submit Invoice","Rechnung einreichen"
722
+ "Submit Invoice and Shipment","Rechnung und Lieferung vorlegen"
723
+ "Submit Order","Bestellung abschicken"
724
+ "Submit Shipment","Versand eingeben"
725
+ "Subscribe to Newsletter","Newsletter abonnieren"
726
+ "Subscribe to Order Status","Zum Auftragsstatus anmelden"
727
+ "Subtotal","Zwischensumme"
728
+ "Subtotal after discount.","Zwischensumme nach Rabatt."
729
+ "Subtotal:","Zwischensumme:"
730
+ "Suspected Fraud","Betrug vermutet"
731
+ "Suspend","Aufheben"
732
+ "Suspended","Suspendiert"
733
+ "Tax","Steuer"
734
+ "Tax Amount","Steuerbetrag"
735
+ "Tax Percent","Steuer Prozent"
736
+ "Telephone","Telefon"
737
+ "The Order State ""%s"" must not be set manually.","Der Auftragsstatus ""%s"" darf nicht manuell festgelegt werden."
738
+ "The address total model should be extended from Mage_Sales_Model_Quote_Address_Total_Abstract.","Das adress total model sollte von Mage_Sales_Model_Quote_Address_Total_Abstract erweitert werden."
739
+ "The billing agreement ""%s"" has been canceled.","Die Rechnungsvereinbarung ""%s"" wurde annuliert."
740
+ "The billing agreement ""%s"" has been created.","Die Rechnungsvereinbarung ""%s"" wurde erstellt."
741
+ "The coupon code has been accepted.","Der Gutscheincode ist akzeptiert worden."
742
+ "The message has been sent.","Die Nachricht ist gesendet."
743
+ "The message was sent.","Die Nachricht ist gesendet worden."
744
+ "The order address has been updated.","Die Auftragsadresse wurde aktualisiert."
745
+ "The order email has been sent.","Die Auftrags-E-Mail ist gesendet worden."
746
+ "The order has been cancelled.","Die Bestellung wurde storniert."
747
+ "The order has been created.","Die Bestellung wurde erstellt."
748
+ "The order has been put on hold.","Die Bestellung wurde auf Wartestellung gesetzt."
749
+ "The order has been released from holding status.","Die Bestellung wurde aus der Wartestellung genommen."
750
+ "The order has not been cancelled.","Die Bestellung wurde nicht storniert."
751
+ "The order status has been assigned.","Der Auftragsstatus wurde festgesetzt."
752
+ "The order status has been saved.","Der Auftragsstatus wurde gespeichert."
753
+ "The order status has been unassigned.","Der Auftragsstatus wurde entfernt."
754
+ "The order was not put on hold.","Die Bestellung wurde nicht auf Wartestellung gesetzt."
755
+ "The order was not unheld.","Der Auftrag ist nicht freigegeben worden."
756
+ "The order was placed using %s","Die Bestellung wurde unter Verwendung von %s durchgeführt"
757
+ "The order(s) cannot be canceled","Die Bestellung(en) konnte(n) nicht storniert werden"
758
+ "The payment has been accepted.","Die Bezahlung ist akzeptiert worden."
759
+ "The payment has been denied.","Die Zahlung wurde abgelehnt."
760
+ "The payment has been voided.","Die Zahlung wurde ungültig gemacht."
761
+ "The profile has been updated.","Das Profil wurde aktualisiert."
762
+ "The profile has no changes.","Es gibt keine Änderungen zum Profil."
763
+ "The profile state has been updated.","Der Profilstand wurde aktualisiert."
764
+ "The quantity you want to add exceeds the total shipped quantity for some of selected Product(s)","Die Menge, die Sie hinzufügen möchten übersteigt die Gesamtanzahl des ausgewählten Produktes / der ausgewählten Produkte."
765
+ "The requested Payment Method is not available.","Die angeforderte Zahlungsart ist nicht verfügbar."
766
+ "The shipping label has been created.","Das Versandlabel wurde erstellt."
767
+ "The transaction ""%s"" (%s) is already closed.","Die Transaktion ""%s"" (%s) ist bereits abgeschlossen."
768
+ "The transaction ""%s"" cannot be captured yet.","Die Transaktion ""%s"" kann noch nicht erfasst werden."
769
+ "The value that you entered is not valid.","Der von Ihnen eingegebene Wert ist ungültig."
770
+ "There are no billing agreements yet.","Es gibt noch keine Rechnungsvereinbahrungen."
771
+ "There are no printable documents related to selected orders.","Es gibt keine ausdruckbaren Dokumente verbunden mit den gewählten Bestellungen."
772
+ "There are no shipping labels related to selected orders.","Es gibt keine Versandetiketten zu den ausgewählten Bestellungen."
773
+ "There are no shipping labels related to selected shipments.","Es gibt keine Versandetiketten zu den ausgewählten Sendungen."
774
+ "There is no need to approve this payment.","Diese Zahlung muss nicht bestätigt werden."
775
+ "There is no need to deny this payment.","Diese Bezahlung muss nicht verweigert werden."
776
+ "There is no update for the payment.","Es gibt kein Update zur Zahlung."
777
+ "This message will be shown in shopping cart when subtotal after discount less than minimum amount.","Diese Nachricht erscheint im Warenkorb, wenn Zwischensumme nach Rabatt weniger als Mindestbetrag."
778
+ "This operation requires an existing transaction object.","Diese Operation erfordert ein existierendes Transaktionsobjekt."
779
+ "This order contains (%s) items and therefore cannot be edited through the admin interface at this time, if you wish to continue editing the (%s) items will be removed, the order will be canceled and a new order will be placed.","Diese Bestellung enthält (%s) Artikel und kann deshalb nicht mit der Administrator-Oberfläche bearbeitet werden. Wenn Sie fortfahren möchten, werden die (%s) Artikel entfernt, die Bestellung wird gelöscht und eine neue erstellt."
780
+ "This order no longer exists.","Diese Bestellung existiert nicht mehr."
781
+ "This product does not have any configurable options","Dieses Produkt hat keine Einstellungsmöglichkeiten."
782
+ "This profile state cannot be changed to ""%s"".","Dieser Profilstatus kann nicht zu ""%s"" geändert werden."
783
+ "This will create an offline refund. To create an online refund, open an invoice and create credit memo for it. Do you wish to proceed?","Dies erstellt eine Offine Rückerstattung. Um eine Online Rückerstattung zu erstellen, öffnen Sie eine Rechnung und erstellen Sie eine Gutschrift. Wollen Sie fortfahren?"
784
+ "Tier Pricing","Preisebene"
785
+ "Title","Titel"
786
+ "To","An"
787
+ "To Name","Name"
788
+ "To:","An:"
789
+ "Total","Gesamt"
790
+ "Total %d product(s)","Gesamtsumme %d Produkt(e)"
791
+ "Total (ex)","Gesamt (ex)"
792
+ "Total (inc)","Gesamtsumme (ink)"
793
+ "Total Due","Gesamtsumme fällig"
794
+ "Total Invoiced","Gesamtsumme in Rechnung"
795
+ "Total Invoiced Paid","Gesamtsumme in Rechnung, bezahlt"
796
+ "Total Invoiced VS Paid Report","Gesamtsumme in Rechnung VS Paid Report"
797
+ "Total Invoiced not Paid","Gesamtsumme in Rechnung, nicht bezahlt"
798
+ "Total Ordered Report","Report Gesamtbestellvolumen"
799
+ "Total Paid","Gesamtsumme bezahlt"
800
+ "Total Qty","Gesamtanzahl"
801
+ "Total Refund","Erstattungsbetrag"
802
+ "Total Refunded","Gesamtsumme rückerstattet"
803
+ "Total Refunded Report","Gesamtreport zu Rückerstattungen"
804
+ "Total Sales Shipping","Gesamtumsatz Versand"
805
+ "Total Shipped Report","Gesamtreport versendeter Produkte"
806
+ "Total Shipping","Gesamtsumme Versand"
807
+ "Total Shipping Charges","Gesamte Versandkosten"
808
+ "Total Tax","Gesamtsteuern"
809
+ "Total Weight","Gesamtgewicht"
810
+ "Total model should be extended from Mage_Sales_Model_Order_Total_Abstract.","Das Gesamtmodell ist um Mage_Sales_Model_Order_Total_Abstract zu erweitern."
811
+ "Track Order","Bestellung nachverfolgen"
812
+ "Track all shipment(s)","Alle Sendungen nachverfolgen"
813
+ "Track all shipments","Allen Versand verfolgen"
814
+ "Track this shipment","Diese Sendung nachverfolgen"
815
+ "Track your order","Ihre Bestellung nachverfolgen"
816
+ "Tracking","Tracking"
817
+ "Tracking Number","Verfolgungsnummer"
818
+ "Tracking Number(s):","Trackingnummer(n):"
819
+ "Transaction ""%s"" was already processed.","Transaktion ""%s"" wurde schon bearbeitet."
820
+ "Transaction # %s | %s","Transaktions-Nr. %s | %s"
821
+ "Transaction ID","TransaktionsID"
822
+ "Transaction ID must not be empty.","TransaktionsID darf nicht leer sein."
823
+ "Transaction ID: ""%s"".","Transaktions-ID: ""%s""."
824
+ "Transaction Type","Transaktionstyp"
825
+ "Transactions","Transaktionen"
826
+ "Trial ","Test"
827
+ "Trial Payment","Probezahlung"
828
+ "Trial Period","Testperiode"
829
+ "Trial period payment","Probeperiodenzahlung"
830
+ "Type","Typ"
831
+ "Unassign","Zuweisung entfernen"
832
+ "Unhold","Freigabe"
833
+ "Unhold action is not available.","Freigabe der Aktion ist nicht verfügbar."
834
+ "Unhold order","Bestellung freigeben"
835
+ "Unknown State","Unbekannter Status"
836
+ "Unknown Status","Unbekannter Status"
837
+ "Unsupported transaction type ""%s"".","Nicht unterstützter Transaktionstyp ""%s""."
838
+ "Update Changes","Änderungen aktualisieren"
839
+ "Update Items and Qty\'s","Artikel und Mengen aktualisieren"
840
+ "Update Qty\'s","Anzahl aktualisieren"
841
+ "Updated At","Aktualisiert am"
842
+ "Updated:","Aktualisiert:"
843
+ "Use Aggregated Data (beta)","Gesamtdaten (Beta) verwenden"
844
+ "Use Order Status As Default","Bestellstatus als Standard verwenden"
845
+ "Validate Each Address Separately in Multi-address Checkout","Jede Adresse im Multiadress-Ausgang gesondert validieren"
846
+ "Value","Wert"
847
+ "View","Ansicht"
848
+ "View All","Alle ansehen"
849
+ "View Another Order","Eine andere Bestellung ansehen"
850
+ "View Order","Bestellung ansehen"
851
+ "Visible on Frontend","Am Frontende sichtbar"
852
+ "Void","Leer"
853
+ "Void invoice","Leere Rechnung"
854
+ "Voided authorization.","Ungültige Berechtigung."
855
+ "Website","Website"
856
+ "Weight","Gewicht"
857
+ "Whether buyer can define the date when billing for the profile begins.","Ob Käufer das Datum festlegen kann, wann Abrechnung des Profils beginnt."
858
+ "Width","Breite"
859
+ "Wishlist","Wunschzettel"
860
+ "Wrong billing agreement ID specified.","Falsche Zahlungsvereinbarungs-ID angegeben."
861
+ "Wrong quote item id to update configuration.","Falsche Angebotskennnummer zur Aktualisierung der Konfiguration."
862
+ "Wrong state: ""%s"".","Falscher Zustand: ""%s""."
863
+ "Yes","Ja"
864
+ "You can leave a box blank if you don\'t wish to add a gift message for whole order","Sie können ein Eingabefeld leer lassen, wenn Sie keine Geschenkmitteilung für die gesamte Bestellung hinzufügen möchten."
865
+ "You don\'t have permissions to manage this order because of one or more products are not permitted for your website.","Sie haben keine Erlaubnis, diese Bestellung zu verwalten, weil eines oder mehrere Produkte für Ihre Webseite nicht zulässig sind."
866
+ "You have placed no orders.","Sie haben keine Bestellungen aufgegeben."
867
+ "You will be redirected to the payment system website.","Sie werden zu der Zahlungssystem-Website weitergeleitet."
868
+ "Your credit card will be charged for","Ihre Kreditkarte wird belastet mit"
869
+ "ZIP/Post Code","Postleitzahl"
870
+ "Zip/Postal Code","Postleitzahl"
871
+ "cm","cm"
872
+ "in","in"
873
+ "kg","kg"
874
+ "lb","US-Pfund"
875
+ "the credit memo email is not sent","die Gutschrifts-E-Mail wurde nicht gesendet"
876
+ "the credit memo email was sent","die Gutschrift-E-Mail wurde versendet"
877
+ "the invoice email is not sent","die Rechnungs-E-Mail ist nicht versendet"
878
+ "the invoice email was sent","die Rechnungs-E-Mail wurde versendet"
879
+ "the order confirmation email is not sent","die Auftragsbestätigungs-E-Mail ist nicht versendet"
880
+ "the order confirmation email was sent","die Auftragsbestätigungs-E-Mail wurde versendet"
881
+ "the shipment email is not sent","die Versand-E-Mail wurde nicht gesendet"
882
+ "the shipment email was sent","die Lieferungs-E-Mail wurde versendet"
app/locale/de_DE/Mage_SalesRule.csv ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%d Shopping Cart Price Rules based on ""%s"" attribute have been disabled.","%d Warenkorb Preisregeln für ""%s"" Eigenschaften wurden deaktiviert."
2
+ "%s Coupon(s) have been generated","Es wurden %s Kupons erstellt."
3
+ "Actions","Aktionen"
4
+ "Active","Aktiv"
5
+ "Add New Rule","Neue Regel hinzufügen"
6
+ "Alphabetical","Alphabetisch"
7
+ "Alphanumeric","Alphanumerisch"
8
+ "An error occurred while generating coupons. Please review the log and try again.","Während er Erstellung der Kupons trat ein Fehler auf. Bitte überprüfen sie diese und versuchen sie es nochmals."
9
+ "Apply","Anwenden"
10
+ "Apply To","Anwenden auf"
11
+ "Apply the rule only if the following conditions are met (leave blank for all products)","Regel nur bei folgenden Bedingungen anwenden (Leer lassen für alle Produkte)"
12
+ "Apply the rule only to cart items matching the following conditions (leave blank for all items)","Regel nur auf Artikel im Warenkorb mit den folgenden Bedingungen anwenden (Leer lassen für alle Artikel)"
13
+ "Apply the rule to cart items matching the following conditions","Regel nur bei folgenden Bedingungen auf Artikel im Warenkorb anwenden"
14
+ "Apply to Shipping Amount","Auf Versandbetrag anwenden"
15
+ "Are you sure you want to delete the selected coupon(s)?","Wollen sie die ausgewählten Kupons wirklich löschen?"
16
+ "Auto","Automatisch"
17
+ "Auto Generated Specific Coupon Codes","Automatische generierte spezifische Kupon-Kennung"
18
+ "Buy X get Y free (discount amount is Y)","X kaufen, Y kostenlos bekommen (Rabattbetrag ist Y)"
19
+ "By Fixed value","Nach festen Wert"
20
+ "By Percentage","Nach Prozent"
21
+ "Can\'t acquire coupon.","Kann Gutschein nicht erwerben."
22
+ "Cart Attribute","Warenkorbattribut"
23
+ "Catalog","Katalog"
24
+ "Code Format","Kennung -Format"
25
+ "Code Length","Kennung -Länge"
26
+ "Code Prefix","Kennung- Präfix"
27
+ "Code Suffix","Kennung - Zusatz"
28
+ "Conditions","Bedingungen"
29
+ "Conditions combination","Bedingungskombination"
30
+ "Coupon","Gutschein"
31
+ "Coupon Code","Gutscheincode"
32
+ "Coupon Qty","Anzahl Kupon"
33
+ "Coupon with the same code","Kupon mit gleicher Kennung"
34
+ "Coupons Information","Kuponinformationen"
35
+ "Created On","Erstellt am"
36
+ "Customer Groups","Kundengruppen"
37
+ "Dash Every X Characters","Trennstrichs alle X Ziffern"
38
+ "Date Expire","Verfalldatum"
39
+ "Date Start","Startdatum"
40
+ "Default Label","Standardlabel"
41
+ "Default Rule Label for All Store Views","Standardregel Label für alle StoreViews"
42
+ "Description","Beschreibung"
43
+ "Discount Amount","Rabattbetrag"
44
+ "Discount Qty Step (Buy X)","Rabattmengenschritt (X kaufen)"
45
+ "Edit Rule","Regel ändern"
46
+ "Edit Rule '%s'","Regel '%s' ändern"
47
+ "Excluding prefix, suffix and separators.","Ausgenommen Präfix, Zusatzziffern und Trenner."
48
+ "FOUND","GEFUNDEN"
49
+ "Fixed amount discount","Rabatt mit festem Wert"
50
+ "Fixed amount discount for whole cart","Fester Rabattbetrag für gesamten Warenkorb"
51
+ "For matching items only","Nur für passende Artikel"
52
+ "For shipment with matching items","Für Versand mit passenden Artikeln"
53
+ "Free Shipping","Versandkostenfrei"
54
+ "From Date","Von Datum"
55
+ "General Information","Allgemeine Information"
56
+ "Generate","Erstellen"
57
+ "ID","ID"
58
+ "If %s %s %s for a subselection of items in cart matching %s of these conditions:","Falls %s %s %s für eine Unterauswahl der Artikel im Einkaufswagen %s dieser Bedingungen entspricht:"
59
+ "If an item is %s in the cart with %s of these conditions true:","Falls ein Artikel im Einkaufswagen %s ist und %s dieser Bedingungen vorliegen:"
60
+ "If empty no separation.","Wenn leer, keine Trennung."
61
+ "If you select and save the rule you will be able to generate multiple coupon codes.","Wenn sie diese Erstellungsregel auswählen und abspeichern, können sie mehrere Kupon-Kennziffern erstellen."
62
+ "Inactive","Nicht aktiv"
63
+ "Item totals are not set for rule.","Artikel-Summen sind keine Regel."
64
+ "Labels","Bezeichnungen"
65
+ "Manage Coupon Codes","Kupon-Kennungen verwalten"
66
+ "Maximum Qty Discount is Applied To","Maximal angewendete Rabattmenge"
67
+ "NOT FOUND","NICHT GEFUNDEN"
68
+ "NOT LOGGED IN","NICHT ANGEMELDET"
69
+ "New Rule","Neue Regel"
70
+ "No","Nein"
71
+ "No Coupon","Kein Gutschein"
72
+ "Not valid data provided","Es liegen keine gültigen Daten vor"
73
+ "Number of Uses","Anzahl der Verwendungen"
74
+ "Numeric","Numerisch"
75
+ "Payment Method","Zahlungsart"
76
+ "Percent of product price discount","Prozente für Rabatt auf den Verkaufspreis"
77
+ "Period","Zeitraum"
78
+ "Price in cart","Preis im Warenkorb"
79
+ "Priority","Priorität"
80
+ "Product attribute combination","Kombination der Produktmerkmale"
81
+ "Products subselection","Produktunterauswahl"
82
+ "Promotions","Promotionen"
83
+ "Public In RSS Feed","Im RSS Feed veröffentlichen"
84
+ "Quantity in cart","Menge im Warenkorb"
85
+ "Row total in cart","Zeile Gesamt im Warenkorb"
86
+ "Rule Information","Regelinformation"
87
+ "Rule Name","Regelname"
88
+ "Rule is not defined","Regel nicht definiert"
89
+ "Sales Discount Amount","Rabttbetrag des Verkaufs"
90
+ "Sales Subtotal Amount","Zwischensumme des Verkaufsbetrags"
91
+ "Sales Total Amount","Gesamtbetrag des Verkaufs"
92
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
93
+ "Shipping Country","Lieferland"
94
+ "Shipping Method","Lieferungsart"
95
+ "Shipping Postcode","Postleitzahl der Lieferadresse"
96
+ "Shipping Region","Region der Lieferadresse"
97
+ "Shipping State/Province","Bundesland/Provinz der Lieferadresse"
98
+ "Shopping Cart Price Rule","Warenkorb Preisgebot"
99
+ "Shopping Cart Price Rules","Warenkorb Preisgebote"
100
+ "Special Price","Sonderpreis"
101
+ "Specific Coupon","spezieller Gutschein"
102
+ "Status","Status"
103
+ "Stop Further Rules Processing","Weitere Regelbearbeitung abbrechen"
104
+ "Store View Specific Labels","Überblick spezifischer Etikette im Lager"
105
+ "Subtotal","Zwischensumme"
106
+ "Subtotal Amount","Zwischensumme des Betrags"
107
+ "The rule has been deleted.","Die Regel wurde gelöscht."
108
+ "The rule has been saved.","Die Regel wurde gespeichert."
109
+ "This rule no longer exists.","Diese Regel existiert nicht mehr."
110
+ "Times Used","Wie oft eingelöst"
111
+ "To Date","Bis Datum"
112
+ "To Fixed Value","Zu festen Wert"
113
+ "To Percentage","Zu Prozent"
114
+ "Total","Gesamtbetrag"
115
+ "Total Amount","Gesamtbetrag"
116
+ "Total Items Quantity","Gesamtmenge aller Artikel"
117
+ "Total Weight","Gesamtgewicht"
118
+ "Unable to create requested Coupon Qty. Please check settings and try again.","Angeforderte Anzahl an Kupons konnte nicht erstellt werden. Bitte Einstellungen überprüfen und nochmals versuchen."
119
+ "Unable to find a rule to delete.","Keine Regel zum Löschen gefunden."
120
+ "Update prices using the following information","Finden Sie neue Preise mit den folgenden Informationen"
121
+ "Update product's %s %s: %s","%s %s: %s von Produkt aktualisieren"
122
+ "Update the Product","Produkt aktualisieren"
123
+ "Use Auto Generation","Über Automatische Erstellung"
124
+ "Used","Eingelöst"
125
+ "Uses per Coupon","Verwendung je Gutschein"
126
+ "Uses per Customer","Verwendung je Kunde"
127
+ "Website","Webseite"
128
+ "Websites","Websites"
129
+ "Wrong rule specified.","Falsche Regel angegeben."
130
+ "Yes","Ja"
131
+ "total amount","Gesamtsumme"
132
+ "total quantity","Gesamtmenge"
app/locale/de_DE/Mage_Sendfriend.csv ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Add Recipient","Empfänger hinzufügen"
2
+ "Allow for Guests","Für Gäste erlauben"
3
+ "An invalid email address for recipient was entered.","Sie haben eine ungültige E-Mail-Adresse als Empfänger angegeben."
4
+ "At least one recipient must be specified.","Es muss mindestens ein Empfänger eingetragen werden."
5
+ "Back","Zurück"
6
+ "Catalog Product Email to a Friend","Produkt aus dem Katalog per E-Mail an einen Freund senden"
7
+ "Email Address","E-Mail-Adresse"
8
+ "Email Address:","E-Mail-Adresse:"
9
+ "Email Templates","E-Mail Vorlagen"
10
+ "Email to a Friend","E-Mail an einen Freund"
11
+ "Email:","E-Mail:"
12
+ "Enabled","Aktiviert"
13
+ "Invalid Sender Information","Ungültiger Absender"
14
+ "Invalid sender email.","Ungültige Absender E-Mail-Adresse."
15
+ "Limit Sending By","Senden einschränken auf"
16
+ "Max Products Sent in 1 Hour","Maximale Anzahl in einer Stunde gesendeter Produkte"
17
+ "Max Recipients","Maximale Empfängeranzahl"
18
+ "Maximum %d email addresses allowed.","Maximal %d E-Mail-Adressen erlaubt."
19
+ "Message:","Nachricht:"
20
+ "Name","Name"
21
+ "Name:","Name:"
22
+ "No more than %d emails can be sent at a time.","Es können nicht mehr als %d E-Mails auf einmal versendet werden."
23
+ "Please define a correct Cookie instance.","Legen Sie bitte eine korrekte Cookie-Instanz fest."
24
+ "Please define a correct Product instance.","Legen Sie bitte eine korrekte Produkt-Instanz fest."
25
+ "Please define the correct Sender information.","Bitte legen Sie korrekte Senderinformationen fest."
26
+ "Recipient:","Empfänger:"
27
+ "Remove Email","E-Mail löschen"
28
+ "Select Email Template","E-Mail-Vorlage wählen"
29
+ "Send Email","E-Mail senden"
30
+ "Send product to a friend","Dieses Produkt an einen Freund senden"
31
+ "Sender:","Absender:"
32
+ "Some emails were not sent.","Einige E-Mail wurden nicht gesendet."
33
+ "The link to a friend was sent.","Der Link wurde an den Freund gesendet."
34
+ "The message cannot be empty.","Das Nachrichten-Feld kann nicht freigelassen werden."
35
+ "The messages cannot be sent more than %d times in an hour","Die Nachrichten können nicht öfter als %d mal pro Stunde gesendet werden"
36
+ "The sender name cannot be empty.","Der Absender-Name kann nicht freigelassen werden."
37
+ "There were some problems with the data.","Es traten Probleme mit den Daten auf."
38
+ "You have exceeded limit of %d sends in an hour","Sie haben das Limit von %d Nachrichten pro Stunde überschritten"
app/locale/de_DE/Mage_Shipping.csv ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " for more information or ","für mehr Information oder"
2
+ "# of Items (and above)","Anzahl (und höher)"
3
+ "# of Items vs. Destination","Anzahl zu Destination"
4
+ "Allow Shipping to Multiple Addresses","Lieferung an Mehrere Adressen Erlauben"
5
+ "An error occurred while import table rates.","Während des Imports der Kostentabelle trat ein Fehler auf."
6
+ "Calculate Handling Fee","Bearbeitungsgebühr berechnen"
7
+ "Carrier:","Transport:"
8
+ "City","Stadt"
9
+ "Close Window","Fenster Schließen"
10
+ "Condition","Bedingung"
11
+ "Country","Land"
12
+ "Custom Value","Zollwert"
13
+ "Date","Datum"
14
+ "Delivered on:","Geliefert am:"
15
+ "Delivered to:","Geliefert an:"
16
+ "Description","Beschreibung"
17
+ "Displayed Error Message","Angezeigte Fehlermeldung"
18
+ "Divide to equal weight (one request)","Auf gleiches Gewicht verteilen (eine Anfrage)"
19
+ "Duplicate Row #%s (Country ""%s"", Region/State ""%s"", Zip ""%s"" and Value ""%s"").","Zeile duplizieren #%s (Land""%s"", Region/Bundesland ""%s"", PLZ ""%s"" und Wert ""%s"")."
20
+ "Enabled","Aktiviert"
21
+ "Error:","Fehler:"
22
+ "Export","Export"
23
+ "File has not been imported. See the following list of errors: %s","Die Datei konnte nicht importiert werden. Vgl. die folgende Fehlerliste: %s"
24
+ "Fixed","Fix"
25
+ "Flat Rate","Pauschaltarif:"
26
+ "Free Shipping","Versandkostenfrei"
27
+ "Google Sitemap Section","Google-Sitemap-Sektion"
28
+ "Handling Fee","Bearbeitungsgebühren"
29
+ "Import","Import"
30
+ "Include Virtual Products in Price Calculation","Virtuelle Produkte in Preiskalkulation miteinbeziehen"
31
+ "Info:","Info:"
32
+ "Invalid %s ""%s"" in the Row #%s.","%s ""%s"" ungültig in Zeile #%s."
33
+ "Invalid Country ""%s"" in the Row #%s.","Ungültiges Land ""%s"" in Zeile #%s."
34
+ "Invalid Region/State ""%s"" in the Row #%s.","Ungültige Region/Bundesland ""%s"" in Zeile #%s."
35
+ "Invalid Shipping Price ""%s"" in the Row #%s.","Ungültiger Lieferpreis ""%s"" in Zeile #%s."
36
+ "Invalid Table Rate code for type %s: %s","Ungültiger Tabellenraten-Code für Typ %s: %s"
37
+ "Invalid Table Rate code type: %s","Ungültiger Tabellenraten-Code des Typs: %s"
38
+ "Invalid Table Rates File Format","Ungültiges Tabellenraten-Dateiformat"
39
+ "Invalid Table Rates format in the Row #%s","Ungültiges Format für Tabellenwerte in Zeile #%s"
40
+ "Local Time","Ortszeit"
41
+ "Location","Ort"
42
+ "Maximum Qty Allowed for Shipping to Multiple Addresses","Erlaubte Höchstanzahl für Lieferung an Mehrere Adressen"
43
+ "Method Name","Methodenname"
44
+ "Minimum Order Amount","Mindestmenge für Bestellung"
45
+ "N/A","Nicht verfügbar"
46
+ "None","Keine"
47
+ "Options","Optionen"
48
+ "Order Subtotal (and above)","Bestellungszwischensumme (und höher)"
49
+ "Origin","Ursprung"
50
+ "Per Order","Auf Bestellung"
51
+ "Per Package","Pro Paket"
52
+ "Percent","Prozent"
53
+ "Price","Preis"
54
+ "Price vs. Destination","Preis zu Destination"
55
+ "Region/State","Region/Bundesland"
56
+ "Service Type:","Dienstleistungstyp:"
57
+ "Ship to Applicable Countries","Versand in zutreffende Länder"
58
+ "Ship to Specific Countries","Versand in angegebene Länder"
59
+ "Shipment #","Lieferung #"
60
+ "Shipment Tracking Popup","Lieferungs-Tracking-Popup"
61
+ "Shipped or billed on:","Geliefert und in Rechnung gestellt an:"
62
+ "Shipping Methods","Lieferungsmethoden"
63
+ "Shipping Methods Section","Lieferungsmethoden-Sektion"
64
+ "Shipping Settings","Lieferungsoptionen"
65
+ "Shipping Settings Section","Lieferungsoptionen-Sektion"
66
+ "Show Method if Not Applicable","Wenn nicht anwendbar, Verfahren anzeigen"
67
+ "Signed by:","Unterschrieben von:"
68
+ "Sort Order","Sortierreihenfolge"
69
+ "Status:","Status:"
70
+ "Store Pickup","Abholung"
71
+ "Street Address","Anschrift (Straße, Hausnummer, PLZ)"
72
+ "Street Address Line 2","Adressangabe Straße Zeile 2"
73
+ "Table Rates","Tabellenraten"
74
+ "The shipping module is not available for selected delivery country.","Dieses Lieferungsmodul ist für das ausgewählte Lieferungsland nicht verfügbar."
75
+ "The shipping module is not available.","Dieser Lieferungsmodul ist nicht verfügbar."
76
+ "There is no tracking available for this shipment.","Für diese Lieferung ist kein Tracking verfügbar."
77
+ "There is no tracking available.","Tracking ist nicht verfügbar."
78
+ "This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.","Diese Lieferungsmethode ist zur Zeit nicht verfügbar. Wenn Sie mit diese Lieferungsmethode verwenden wollen, kontaktieren Sie uns bitte."
79
+ "This shipping method is not available, please specify ZIP-code","Diese Lieferungsmethode ist nicht verfügbar, bitte geben Sie eine Postleitzahl an"
80
+ "Title","Titel"
81
+ "Track:","Route:"
82
+ "Tracking Information","Routeninformation"
83
+ "Tracking Number:","Tracking-Nummer:"
84
+ "Tracking information is currently not available. Please ","Tracking-Information ist zur Zeit nicht verfügbar. Bitte"
85
+ "Tracking information is currently unavailable.","Tracking-Information ist zur Zeit nicht verfügbar."
86
+ "Type","Typ"
87
+ "Use origin weight (few requests)","Ursprungsgewicht verwenden (wenige Anfragen)"
88
+ "Weight (and above)","Gewicht (und höher)"
89
+ "Weight vs. Destination","Gewicht zu Destination"
90
+ "Weight:","Gewicht:"
91
+ "ZIP/Postal Code","Postleitzahl"
92
+ "contact us","kontaktieren Sie uns"
93
+ "email us at ","schreiben Sie uns eine E-Mail an"
app/locale/de_DE/Mage_Sitemap.csv ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Action","Aktion"
2
+ "Add Sitemap","Sitemap hinzufügen"
3
+ "Always","Immer"
4
+ "CMS Pages Options","CMS Seitenoptionen"
5
+ "Categories Options","Kategorien Optionen"
6
+ "Daily","Täglich"
7
+ "Edit Sitemap","Sitemap bearbeiten"
8
+ "Enabled","Aktiviert"
9
+ "Error Email Recipient","Email-Empfänger bei auftretenden Fehlern"
10
+ "Error Email Sender","Email-Absender bei auftretenden Fehlern"
11
+ "Error Email Template","Email-Vorlage bei auftretenden Fehlern"
12
+ "File ""%s"" cannot be saved. Please, make sure the directory ""%s"" is writeable by web server.","Datei ""%s"" kann nicht gespeichert werden. Bitte stellen Sie sicher, dass das Verzeichnis ""%s"" seitens des Webservers beschreibbar ist."
13
+ "Filename","Dateiname"
14
+ "Frequency","Frequenz"
15
+ "Generate","Generieren"
16
+ "Generation Settings","Generierungseinstellungen"
17
+ "Google Sitemap","Google Sitemap"
18
+ "Hourly","Stündlich"
19
+ "ID","ID"
20
+ "Last Time Generated","Zuletzt generiert"
21
+ "Link for Google","Link für Google"
22
+ "Monthly","Monatlich"
23
+ "Never","Niemals"
24
+ "New Sitemap","Neue Sitemap"
25
+ "Path","Pfad"
26
+ "Please create the specified folder ""%s"" before saving the sitemap.","Bitte erstellen sie den benötigten Ordner ""%s"", bevor Sie die Sitemap speichern."
27
+ "Please define correct path","Bitte definieren Sie einen korrekten Pfad"
28
+ "Please make sure that ""%s"" is writable by web-server.","Bitte vergewissern Sie sich, dass ""%s"" seitens des Webservers beschreibbar ist."
29
+ "Please use only letters (a-z or A-Z), numbers (0-9) or underscore (_) in the filename. No spaces or other characters are allowed.","Bitte verwenden Sie nur Buchstaben (a-z oder A-Z), Zahlen (0-9) oder Unterstriche (_) im Dateinamen. Leerzeichen oder andere Zeichen sind nicht zugelassen."
30
+ "Priority","Priorität"
31
+ "Products Options","Produkte Optionen"
32
+ "Sitemap","Sitemap"
33
+ "Sitemap generate Warnings","Warnungen zu Sitemap generieren"
34
+ "Start Time","Startzeit"
35
+ "Store View","Store-Ansicht"
36
+ "The priority must be between 0 and 1.","Die Priorität muss zwischen 0 und 1 liegen."
37
+ "The sitemap ""%s"" has been generated.","Die Sitemap ""%s"" wurde generiert."
38
+ "The sitemap has been deleted.","Die Sitemap wurde gelöscht."
39
+ "The sitemap has been saved.","Die Sitemap wurde gespeichert."
40
+ "This sitemap no longer exists.","Diese Sitemap existiert nicht mehr."
41
+ "Unable to find a sitemap to delete.","Sitemap zur Löschung konnte nicht gefunden werden."
42
+ "Unable to find a sitemap to generate.","Sitemap, die generiert werden soll, konnte nicht gefunden werden."
43
+ "Unable to generate the sitemap.","Sitemap kann nicht erstellt werden."
44
+ "Valid values range: from 0.0 to 1.0.","Gültige Eingaben: zwischen 0,0 und 1,0."
45
+ "Weekly","Wöchentlich"
46
+ "Yearly","Jährlich"
app/locale/de_DE/Mage_Tag.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "# of Uses","Anzahl der Verwendungen"
2
+ "%s tag(s) have been accepted for moderation.","%s Tag(s) wurde(n) für die Moderation akzeptiert."
3
+ "<strong>Tag Name:</strong> %s","<strong>Tag-Bezeichnung:</strong> %s"
4
+ "Action","Aktion"
5
+ "Add","Hinzufügen"
6
+ "Add New Tag","Neuen Tag hinzufügen"
7
+ "Add Tags","Tags hinzufügen"
8
+ "Add Your Tags:","Fügen Sie Ihre Tags hinzu:"
9
+ "Add tag(s) to product","Tag(s) zum Produkt hinzufügen"
10
+ "Add to Cart","Zum Warenkobrn hinzufügen"
11
+ "Add to Wishlist","Zum Wunschzettel hinzufügen"
12
+ "All Tags","Alle Tags"
13
+ "Approved","Bestätigt"
14
+ "Are you sure you want to delete this tag?","Sind Sie sicher, diesen Tag löschen zu wollen?"
15
+ "Are you sure you want to do this?","Sind Sie sicher, dass sie das tun wollen?"
16
+ "Are you sure?","Sind Sie sicher?"
17
+ "Back","Zurück"
18
+ "Back to Tags List","Zurück zur Tagliste"
19
+ "Base Popularity","Popularität aufbauen"
20
+ "Block Information","Blockinformation"
21
+ "CSV","CSV"
22
+ "Catalog Product View","Katalog-Produktansicht"
23
+ "Change status","Status ändern"
24
+ "Click on a tag to view your corresponding products.","Klicken Sie auf einen Tag, um die zugehörigen Produkte zu sehen."
25
+ "Country","Land"
26
+ "Customer My Account My Tags List","Kunde Mein Konto Meine Tagliste"
27
+ "Customer My Account Tag View","Kunde Mein Konto Tag-Ansicht"
28
+ "Customer Since","Kunde Seit"
29
+ "Customers","Kunden"
30
+ "Customers Submitted this Tag","Kunden Haben diesen Tag Eingereicht"
31
+ "Customers Tagged '%s'","Kunden Haben '%s' getaggt"
32
+ "Delete","Löschen"
33
+ "Delete Tag","Tag löschen"
34
+ "Disabled","Deaktiviert"
35
+ "Edit Tag '%s'","Tag '%s' Bearbeiten"
36
+ "Email","E-Mail"
37
+ "First Name","Vorname"
38
+ "General Information","Allgemeine Information"
39
+ "Grid","Raster"
40
+ "ID","ID"
41
+ "Info","Informationen"
42
+ "Last Name","Nachname"
43
+ "List","Liste"
44
+ "Manage Tags","Tags Verwalten"
45
+ "My Recent Tags","Meine Neuesten Tags"
46
+ "My Tags","Meine Tags"
47
+ "Name","Name"
48
+ "New Tag","Neuer Tag"
49
+ "No matches found.","Keine Übereinstimmungen gefunden."
50
+ "Other people marked this product with these tags:","Andere Leute haben dieses Produkt mit diesen Tags gekennzeichnet:"
51
+ "Pending","Ausstehend"
52
+ "Pending Tags","Unbestätigte Tags"
53
+ "Popular","Beliebt"
54
+ "Popular Tags","Beliebte Tags"
55
+ "Price","Preis"
56
+ "Product Name","Produktname"
57
+ "Product SKU","Bestandseinheit des Produktes"
58
+ "Product Tag API","Produkttag-Programmierschnittstelle"
59
+ "Product Tags","Produkttags"
60
+ "Products","Produkte"
61
+ "Products Tagged by Administrators","Von Administratoren Getaggte Produkte"
62
+ "Products Tagged by Customers","Von Kunden Getaggte Produkte"
63
+ "Products Tagged with '%s'","Mit '%s' getaggte Produkte"
64
+ "Products tagged with '%s'","Mit '%s' gekennzeichnete Produkte"
65
+ "Rebuild Tag aggregation data","Datenansammlungen im Anhang wiederherstellen"
66
+ "Remove","Löschen"
67
+ "Remove product tag","Produkttag entfernen"
68
+ "Retrieve list of tags by product","Liste von Tags nach Produkten abrufen"
69
+ "Retrieve product tag info","Produkttag-Informationen abrufen"
70
+ "SKU","SKU"
71
+ "Save Tag","Tag speichern"
72
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
73
+ "Status","Status"
74
+ "Store View","Store-Ansicht"
75
+ "Tag","Tag"
76
+ "Tag ""%s"" has already been added to the product.","Etikett ""%s"" wurde bereits zum Produkt hinzugefügt."
77
+ "Tag ""%s"" has been added to the product.","Etikett ""%s"" wurde zum Produkt hinzugefügt."
78
+ "Tag ""%s"" has been rejected by administrator.","Etikett ""%s"" wurde vom Administrator abgelehnt."
79
+ "Tag Aggregation Data","Tag Gruppierungsdaten"
80
+ "Tag Name","Tagname"
81
+ "Tagged Products List","Liste von Produkten mit Tags"
82
+ "Tags","Tags"
83
+ "Tags List (All Available)","Tagliste (Alle verfügbar)"
84
+ "Tags List Before","Etikettenliste zuerst"
85
+ "Tags:","Tags:"
86
+ "Telephone","Telefon"
87
+ "The tag has been deleted.","Das Tag wurde gelöscht."
88
+ "There are no tags available.","Es sind keine Tags verfügbar."
89
+ "Unable to find any products tagged with '%s' in the current store","Es konnten keine Produkte mit dem Tag '%s' in diesem Shop gefunden werden."
90
+ "Unable to remove tag. Please, try again later.","Tag kann nicht entfernt werden. Bitte versuchen Sie es später noch einmal."
91
+ "Unable to save tag(s).","Tag(s) konnte(n) nicht gespeichert werden."
92
+ "Update","Aktualisieren"
93
+ "Update product tag","Produkttag aktualisieren"
94
+ "Use spaces to separate tags. Use single quotes (') for phrases.","Verwenden Sie Leerzeichen um Tags zu trennen. Verwenden Sie Apostrophe (') für Phrasen."
95
+ "View All Tags","Alle Tags ansehen"
96
+ "View Customers","Kunden ansehen"
97
+ "View Products","Produkte ansehen"
98
+ "XML","XML"
99
+ "You have not tagged any products yet.","Sie haben noch keinen Produkten Tags hinzugefügt."
100
+ "ZIP/Post Code","Postleitzahl"
101
+ "[STORE VIEW]","[SHOP ANSICHT]"
app/locale/de_DE/Mage_Tax.csv ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "'*' - matches any; 'xyz*' - matches any that begins on 'xyz' and not longer than %d.","'*' - gleicht mit allem ab; 'xyz*' - gleicht mit allem ab, was mit 'xyz' beginnt und nicht länger als %d ist."
2
+ "-- Please Select --","-- Bitte auswählen --"
3
+ "Add New Class","Neue Klasse hinzufügen"
4
+ "Add New Tax Rate","Neuen Steuersatz hinzufügen"
5
+ "Add New Tax Rule","Neue Steuerregel hinzufügen"
6
+ "After Discount","Nach Rabatt"
7
+ "An error occurred while deleting this rate.","Beim Löschen dieses Steuersatzes ist ein Fehler aufgetreten."
8
+ "An error occurred while deleting this rate. Incorrect rate ID.","Beim Löschen dieses Steuersatzes ist ein Fehler aufgetreten. Inkorrekte SatzID."
9
+ "An error occurred while deleting this tax class.","Beim Löschen dieser Steuerklasse ist ein Fehler aufgetreten."
10
+ "An error occurred while deleting this tax rule.","Beim Löschen dieser Steuerregel ist ein Fehler aufgetreten."
11
+ "An error occurred while saving this tax class.","Beim Sepichern dieser Steuerklasse ist ein Fehler aufgetreten."
12
+ "An error occurred while saving this tax class. A class with the same name","Beim Speichern dieser Steuerklasse ist ein Fehler aufgetreten. Eine Klasse mit dem selben Namen"
13
+ "Apply Customer Tax","Kundensteuer anwenden"
14
+ "Apply Discount On Prices","Rabatt auf Preise anwenden"
15
+ "Apply Tax On","Steuer anwenden auf"
16
+ "Apply discount on price including tax is calculated based on store tax, if ""Apply Tax after Discount"" is selected.","Der Rabatt auf den Preis einschließlich Steuern basiert auf der Ladensteuer, wenn ""Steuer nach dem Rabatt"" gewählt wurde."
17
+ "Are you sure you want to do this?","Sind Sie sicher, dass sie das tun wollen?"
18
+ "Back","Zurück"
19
+ "Before Discount","Vor Rabatt"
20
+ "CSV","CSV"
21
+ "Calculate off subtotal only","Berechnen Sie nur Teilsummen"
22
+ "Calculation Settings","Berechnungseinstellungen"
23
+ "Catalog Prices","Katalogpreise"
24
+ "Class Name","Klassenname"
25
+ "Click here to go to <a href=""%s"">Tax configuration</a> and change your settings.","Klicken Sie hier, um unter <a href=""%s"">Tax configuration</a> Ihre Einstellungen zu ändern."
26
+ "Code","Code"
27
+ "Country","Land"
28
+ "Custom price if available","Benutzerdefinierter Preis falls verfügbar"
29
+ "Customer Tax Class","Kundensteuerklasse"
30
+ "Customer Tax Class Information","Kunden Steuerklasse Information"
31
+ "Customer Tax Classes","Kunden Steuerklassen"
32
+ "Default Country","Standard Land"
33
+ "Default Post Code","Standard Postleitzahl"
34
+ "Default State","Standard Staat"
35
+ "Default Tax Destination Calculation","Standard Steuerzielberechnung"
36
+ "Delete Class","Klasse löschen"
37
+ "Delete Rate","Steuersatz löschen"
38
+ "Delete Rule","Regel löschen"
39
+ "Display Full Tax Summary","Vollständige Steuerzusammenfassung anzeigen"
40
+ "Display Prices","Preise anzeigen"
41
+ "Display Product Prices In Catalog","Produktpreise im Katalog anzeigen"
42
+ "Display Shipping Amount","Versandbetrag anzeigen"
43
+ "Display Shipping Prices","Versandpreise anzeigen"
44
+ "Display Subtotal","Zwischensumme anzeigen"
45
+ "Display Zero Tax Subtotal","Nullsteuer Zwischensumme anzeigen"
46
+ "Edit Class","Klasse bearbeiten"
47
+ "Edit Class '%s'","Klasse bearbeiten '%s'"
48
+ "Edit Rule","Regel ändern"
49
+ "Edit Tax Rate","Steuersatz bearbeiten"
50
+ "Enable Cross Border Trade","Cross Border Trade aktivieren"
51
+ "Excel XML","Excel-XML"
52
+ "Excl. Tax","Steuer weglassen"
53
+ "Excl. Tax:","Zzgl. Steuern:"
54
+ "Excluding Tax","Zuzüglich Steuern"
55
+ "Export Tax Rates","Steuersätze exportieren"
56
+ "Grand Total (Excl. Tax)","Gesamtsumme (zzgl. Steuern)"
57
+ "Grand Total (Excl.Tax)","Gesamtsumme (zzgl. Steuern)"
58
+ "Grand Total (Incl. Tax)","Gesamtsumme (inkl. Steuern)"
59
+ "Grand Total (Incl.Tax)","Gesamtsumme (inkl. Steuern)"
60
+ "Grand Total Excl. Tax","Gesamtsumme zzgl. Steuern"
61
+ "Grand Total Incl. Tax","Gesamtsumme inkl. Steuern"
62
+ "Ignore this notification","Ignorieren Sie diese Meldung"
63
+ "Import / Export Tax Rates","Steuersätze importieren / exportieren"
64
+ "Import Tax Rates","Steuersätze importieren"
65
+ "Inc. Tax","Inkl. Steuern"
66
+ "Incl. Tax","Steuer inkludieren"
67
+ "Incl. Tax:","Inkl. Steuern:"
68
+ "Include Tax In Grand Total","Steuern in Gesamtsumme inklusive"
69
+ "Including Tax","Inklusive Steuern"
70
+ "Including and Excluding Tax","Inklusive und zuzüglich Steuern"
71
+ "Invalid file format upload attempt","Ungültiges Dateiformat hochgeladen"
72
+ "Invalid file upload attempt","Ungültige Datei hochgeladen"
73
+ "Manage Customer Tax Classes","Kundensteuerklassen verwalten"
74
+ "Manage Product Tax Classes","Produktsteuerklassen verwalten"
75
+ "Manage Tax Rates","Steuersätze verwalten"
76
+ "Manage Tax Rules","Steuerregeln verwalten"
77
+ "Manage Tax Zones & Rates","Steuerzonen und -sätze verwalten"
78
+ "Maximum zip code length is 9.","Maximale Länge der Postleitzahl beträgt 9 Ziffern."
79
+ "Name","Name"
80
+ "New Class","Neue Steuerklasse"
81
+ "New Rule","Neue Regel"
82
+ "New Tax Rate","Neuer Steuersatz"
83
+ "No","Nein"
84
+ "None","Keine"
85
+ "One of the country has invalid code.","Eines der Bundesländer hat einen ungültigen Code."
86
+ "Orders, Invoices, Credit Memos Display Settings","Bestellungen, Rechnungen, Verkaufsgutschriften Display-Einstellungen"
87
+ "Original price only","Nur Originalpreis"
88
+ "Please fill all required fields with valid information.","Bitte füllen Sie alle Pflichtfelder mit gültigen Informationen aus."
89
+ "Please see <a href=""%s"">source</a> for more details.","Weitere Einzelheiten sehen Sie bitte unter <a href=""%s"">source</a>."
90
+ "Price Display Settings","Anzeige-Einstellungen für Preis"
91
+ "Priority","Priorität"
92
+ "Product Tax Class","Produktsteuerklasse"
93
+ "Product Tax Class Information","Produktsteuerklasse Information"
94
+ "Product Tax Classes","Produktsteuerklassen"
95
+ "Range From","Im Bereich von"
96
+ "Range To","Im Bereich bis"
97
+ "Range To should be equal or greater than Range From.","Bereich ""bis"" muss gleich oder größer als Bereich ""von"" sein."
98
+ "Rate","Steuersatz"
99
+ "Rate Percent","Steuersatz Prozent"
100
+ "Rate Percent should be a positive number.","Prozentrate muss eine positive Zahl sein."
101
+ "Reset","Zurücksetzen"
102
+ "Row Total","Zeilensumme"
103
+ "Sales","Verkäufe"
104
+ "Save Class","Steuerklasse speichern"
105
+ "Save Rate","Steuersatz speichern"
106
+ "Save Rule","Regel speichern"
107
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
108
+ "Shipping & Handling (Excl.Tax)","Versandkosten (exkl. MwSt.)"
109
+ "Shipping & Handling (Incl.Tax)","Versandkosten (inkl. MwSt)"
110
+ "Shipping & Handling Tax","Versandkosten & Steuern"
111
+ "Shipping (Excl. Tax)","Versand (excl. MwSt.)"
112
+ "Shipping (Incl. Tax)","Versand (inkl. MwSt.)"
113
+ "Shipping Excl. Tax (%s)","Versand exkl. MwSt. (%s)"
114
+ "Shipping Incl. Tax (%s)","Versand inkl. MwSt. (%s)"
115
+ "Shipping Prices","Versandpreise"
116
+ "Shopping Cart Display Settings","Warenkorb Anzeige Einstellungen"
117
+ "Sort Order","Sortierreihenfolge"
118
+ "State","Staat"
119
+ "State/Region","Bundesstaat/Region"
120
+ "Subtotal (Excl. Tax)","Zwischensumme (exkl. MwSt.)"
121
+ "Subtotal (Excl.Tax)","Zwischensumme (exkl. MwSt.)"
122
+ "Subtotal (Incl. Tax)","Zwischensumme (inkl. MwSt.)"
123
+ "Subtotal (Incl.Tax)","Zwischensumme (inkl. MwSt.)"
124
+ "Subtotal only","nur Teilergebnis"
125
+ "Tax","Steuer"
126
+ "Tax Calculation Based On","Steuerberechnung basiert auf"
127
+ "Tax Calculation Method Based On","Steuerberechnungsmethode basiert auf"
128
+ "Tax Class for Shipping","Steuerklasse für Versand"
129
+ "Tax Classes","Steuerklassen"
130
+ "Tax Identifier","Steuerbezeichner"
131
+ "Tax Rate","Steuersatz"
132
+ "Tax Rate Information","Steuersatzinformation"
133
+ "Tax Rule Information","Steuerregelinformation"
134
+ "Tax Rules","Steuerregeln"
135
+ "Tax Section","Steuerbereich"
136
+ "Tax Titles","Steuertitel"
137
+ "Tax rate cannot be removed. It exists in tax rule","Steuersätze können nicht entfernt werden. Diese bestehen in der Regelsteuer"
138
+ "Tax rates at the same priority are added, others are compounded.","Steuersätze mit gleicher Priorität sind hinzugefügt, andere sind zusammengesetzt."
139
+ "The tax class has been deleted.","Die Steuerklasse wurde gelöscht."
140
+ "The tax class has been saved.","Die Steuerklasse wurde gespeichert."
141
+ "The tax rate has been deleted.","Der Steuersatz wurde gelöscht."
142
+ "The tax rate has been imported.","Der Steuersatz wurde importiert."
143
+ "The tax rate has been saved.","Der Steuersatz wurde gespeichert."
144
+ "The tax rule has been deleted.","Die Steuerregel wurde gelöscht."
145
+ "This class no longer exists","Diese Klasse existiert nicht mehr."
146
+ "This rule no longer exists","Diese Regel existiert nicht mehr."
147
+ "This rule no longer exists.","Diese Regel existiert nicht mehr."
148
+ "Total","Gesamtbetrag"
149
+ "Unit Price","Einheitspreis"
150
+ "Warning tax configuration can result in rounding errors","Achtung: Steuer-Konfiguration kann zu Rundungsfehlern führen"
151
+ "Warning tax configuration can result in unexpected FPT prices on applicable devices","Warnung: Die Steuer-Konfiguration kann bei geeigneten Geräten zu unerwarteten Festpreis-Offerten führen"
152
+ "Warning tax discount configuration might result in different discounts than a customer might expect","Warnung: Steuerrabatt-Konfiguration kann zu anderen als vom Kunden erwarteten Rabatten führen"
153
+ "When catalog price includes tax, enable this setting will fix the price no matter what the customer's tax rate is.","Wenn der Katalogpreis Steuern enthält, aktiviert diese Einstellung den Preis unabhängig vom Steuersatz des Kunden."
154
+ "Whether catalog prices entered by admin include tax.","Ob vom Admin eingegebene Katalogpreise Steuer beinhalten."
155
+ "Whether shipping amounts entered by admin or obtained from gateways include tax.","Ob vom Admin eingegebene oder vom Gateway erhaltene Versandbeträge Steuer beinhalten."
156
+ "Yes","Ja"
157
+ "You cannot delete this tax class as it is used for %d customer groups.","Sie können diese Steuerklasse nicht löschen, da sie für %d Kundengruppen verwendet wird."
158
+ "You cannot delete this tax class as it is used for %d products.","Sie können diese Steuerklasse nicht löschen, da sie für %d Produkte verwendet wird."
159
+ "You cannot delete this tax class as it is used in Tax Rules. You have to delete the rules it is used in first.","Sie können diese Steuerklasse nicht löschen da sie in den Steuerregeln verwendet wird. Sie müssen die Regeln, in der sie verwendet wird, zuerst löschen."
160
+ "Zip code should not contain characters other than digits.","Postleitzahl darf keine anderen Zeichen als Ziffern enthalten."
161
+ "Zip/Post Code","Postleitzahl"
162
+ "Zip/Post is Range","Postleitzahl ist im Bereich"
163
+ "for store(s)","für Store(s)"
app/locale/de_DE/Mage_Usa.csv ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " was not delivered nor scanned","wurde weder zugestellt noch eingescannt"
2
+ """Per Order"" allows single handling fee for entire order. ""Per Package"" allows individual handling fee for each package.","""Pro Bestellung"" bedeutet einzelne Bearbeitungsgebühr für die gesamte Bestellung. ""Pro Paket"" bedeutet individuelle Bearbeitungsgebühr für jedes Paket."
3
+ "1 Day Freight","1-Tag Fracht"
4
+ "2 Day","2 Tage"
5
+ "2 Day AM","2 Tag morgens"
6
+ "2 Day Freight","2-Tage-Fracht"
7
+ "2Day","2 Tage"
8
+ "2nd Day Air","2. Tag Luftpost"
9
+ "2nd Day Air AM","2. Tag Luftpost vormittags"
10
+ "2nd Day Air AM Letter","2. Tag Luftpost vormittags Briefsendung"
11
+ "2nd Day Air Letter","2. Tag Luftpost Briefsendung"
12
+ "3 Day Freight","3-Tage-Fracht"
13
+ "3 Day Select","3-Tage-Select"
14
+ "Access ID","Zugangsnummer"
15
+ "Access License Number","Zugangslizenznummer"
16
+ "Account ID","Kundenkonto-ID"
17
+ "Account Number","Kundenkontonummer"
18
+ "Additional Protection Configuration Value","Zusätzliche Absicherung Konfigurationswert"
19
+ "Additional Protection Enabled","Zusätzliche Absicherung aktiviert"
20
+ "Additional Protection Min Subtotal","Zusätzliche Absicherung Mindestzwischensumme"
21
+ "Additional Protection Value","Zusätzliche Absicherung Wert"
22
+ "Additional Protection Value Rounding Method","Zusätzliche Absicherung Rundungsmethode für den Wert"
23
+ "Adult","Erwachsener"
24
+ "Adult Signature Required","Unterschrift eines Erwachsenen erforderlich"
25
+ "Allowed Methods","Erlaubte Mittel"
26
+ "Allows breaking total order weight into smaller pieces if it exeeds %s %s to ensure accurate calculation of shipping charges.","Das Gewicht der Gesamtbestellung kann in kleinere Stücke geteilt werden, wenn es %s %s überschreitet, um genaue Berechnung der Versandkosten zu gewährleisten."
27
+ "Allows breaking total order weight into smaller pieces if it exeeds 70 kg to ensure accurate calculation of shipping charges.","Das Gewicht der Gesamtbestellung kann in kleinere Stücke geteilt werden, wenn es 70 kg überschreitet, um genaue Berechnung der Versandkosten zu gewährleisten."
28
+ "Bound Printed Matter","Gebundene Drucksache"
29
+ "Break bulk economy","Sperrgut-Economy"
30
+ "Break bulk express","Sperrgut-Express"
31
+ "Business Service Center","Geschäftskundenservicezentrum"
32
+ "Calculate Handling Fee","Bearbeitungsgebühr berechnen"
33
+ "Canada Standard","Kanada Standard"
34
+ "Cannot identify measure unit for %s","Maßeinheit für %s kann nicht identifiziert werden"
35
+ "Cannot identify weight unit for %s","Gewichtseinheit für %s kann nicht identifiziert werden."
36
+ "Cannot retrieve shipping rates","Versandkosten konnten nicht abgerufen werden."
37
+ "Centimeters","Zentimeter"
38
+ "Commercial","Kommerziell"
39
+ "Configuration","Konfiguration"
40
+ "Container","Container"
41
+ "Content Type","Art des Inhaltes"
42
+ "Customer Packaging","Kundenverpackung"
43
+ "Customer Supplied Package","Vom Kunden geliefertes Paket"
44
+ "Customer services","Kundenservice"
45
+ "DHL","DHL"
46
+ "DHL (Deprecated)","DHL (veraltet)"
47
+ "DHL service is not available at %s date","DHL service is not available at %s date"
48
+ "Debug","Debug"
49
+ "Default Package Height","Standard Verpackungshöhe"
50
+ "Default Package Length","Standard Verpackungslänge"
51
+ "Default Package Width","Standard Verpackungsbreite"
52
+ "Delivered","Zugestellt"
53
+ "Delivery Confirmation","Lieferbestätigung"
54
+ "Depth","Tiefe"
55
+ "Destination Type","Zieltyp"
56
+ "Destination facility code is empty","Ziel Einrichtungscode ist leer"
57
+ "Development","Entwicklung"
58
+ "Direct","Direkt"
59
+ "Displayed Error Message","Angezeigte Fehlermeldung"
60
+ "Divide Order Weight","Teilen Sie das Bestellgewicht"
61
+ "Documents","Dokumente"
62
+ "Domestic Shipment Days","Versandtage im Inland"
63
+ "Domestic economy select","Auswahl heimische Wirtschaft"
64
+ "Domestic express","Inland Express"
65
+ "Drop Box","Briefkasten"
66
+ "Dropoff","Einwurf"
67
+ "Easy shop","Katalog"
68
+ "Economy select","Auswahl Wirtschaft"
69
+ "Empty response","Leere Rückmeldung"
70
+ "Enable Negotiated Rates","Vereinbarte Kosten aktivieren"
71
+ "Enabled for Checkout","Fertig zum Checkout"
72
+ "Enables/Disables SSL verification of Magento server by UPS.","Aktiviert/Deaktiviert die SSL-Überprüfung des Magneto Servers von UPS."
73
+ "Error #%s : %s","Fehler #%s : %s"
74
+ "Error #%s : %s (%s)","Fehler #%s: %s (%s)"
75
+ "Error #%s: %s","Fehler #%s: %s (%s)"
76
+ "Europack","Europack"
77
+ "Europe First Priority","Europa Höchste Priorität (Europe First Priority)"
78
+ "Exchange rate %s (Base Currency) -> %s not found. DHL method %s skipped","Umtauschkurs %s (Basiswährung) -> %s nicht gefunden. DHL-Methode %s übersprungen"
79
+ "Express","Express"
80
+ "Express 10:30","Express 10:30"
81
+ "Express 10:30 AM","Express bis 10:30 Uhr"
82
+ "Express 12:00","Express 12:00"
83
+ "Express 9:00","Express 9:00"
84
+ "Express Mail","Express-Sendung"
85
+ "Express Saturday","Express-Samstagszustellung"
86
+ "Express Saver","Express-Saver"
87
+ "Express easy","Express easy"
88
+ "Express envelope","Express-Umschlag"
89
+ "Express worldwide","Express Weltweit"
90
+ "Failed to parse xml document: %s","Konnte das XML-Dokument nicht analysieren: %s"
91
+ "FedEx","FedEx"
92
+ "FedEx 10kg Box","FedEx 10kg Box"
93
+ "FedEx 25kg Box","FedEx 25kg Box"
94
+ "FedEx Box","FedEx Box"
95
+ "FedEx Envelope","FedEx Brief (FedEx Envelope)"
96
+ "FedEx Pak","FedEx Paket (FedEx Pak)"
97
+ "FedEx Tube","FedEx Röhre (FedEx Tube)"
98
+ "First Overnight","Erste Klasse Übernacht-Service (First Overnight)"
99
+ "First-Class","Erste Klasse (First-Class)"
100
+ "First-Class Mail International Large Envelope","First-Class Mail International Large Envelope"
101
+ "First-Class Mail International Letter","First-Class Mail International Letter"
102
+ "First-Class Mail International Postcard","First-Class Mail International Postcard"
103
+ "First-Class Mail Large Envelope","First-Class Mail Large Envelope"
104
+ "First-Class Mail Large Postcards","First-Class Mail Large Postcards"
105
+ "First-Class Mail Letter","First-Class Mail Letter"
106
+ "First-Class Mail Parcel","First-Class Mail Parcel"
107
+ "First-Class Mail Postcards","First-Class Mail Postcards"
108
+ "First-Class Package International Service","First-Class Package International Service"
109
+ "First-Class Package Service","First-Class Package Service"
110
+ "First-Class Package Service Hold For Pickup","First-Class Package Service Hold For Pickup"
111
+ "Flat","Einheitstarif (Flat)"
112
+ "Flat-Rate Box","Flatrate Box"
113
+ "Flat-Rate Envelope","Flatrate Envelope"
114
+ "Free Method","Kostenloses Mittel"
115
+ "Free Shipping with Minimum Order Amount","Kostenloser Versand dank Mindestsumme der Bestellung"
116
+ "Freight","Fracht"
117
+ "Freight worldwide","Fracht Weltweit"
118
+ "Gateway URL","Gateway URL"
119
+ "Gateway XML URL","Gateway XML URL"
120
+ "Gift","Geschenk"
121
+ "Girth","Umfang"
122
+ "Global Express Guaranteed (GXG)","Global Express Guaranteed (GXG)"
123
+ "Global Express Guaranteed Document","Global Express Guaranteed Document"
124
+ "Global Express Guaranteed Non-Document Non-Rectangular","Global Express Guaranteed Non-Document Non-Rectangular"
125
+ "Global Express Guaranteed Non-Document Rectangular","Global Express Guaranteed Non-Document Rectangular"
126
+ "Globalmail business","Globalmail Business"
127
+ "Ground","Ground"
128
+ "Ground Commercial","Ground Commercial"
129
+ "Ground Residential","Ground Commercial"
130
+ "Handling Applied","Hinzugefügte Bearbeitungsgebühren"
131
+ "Handling Fee","Bearbeitungsgebühren"
132
+ "Height","Höhe"
133
+ "Height, width and length should be equal or greater than %s","Höhe, Breite und Tiefe sollten gleich oder größer als %s sein"
134
+ "Home Delivery","Lieferung frei Haus"
135
+ "Hub ID","Hub-ID"
136
+ "Inches","Zoll"
137
+ "Indirect","Indirekt"
138
+ "International Economy","International Economy"
139
+ "International Express","International Express"
140
+ "International First","International Erste Klasse (International First)"
141
+ "International Ground","International Landweg"
142
+ "International Priority","International Priorität (International Priority)"
143
+ "International Shipment Days","International Versandtage"
144
+ "Intl Economy Freight","International Economy Fracht"
145
+ "Intl Priority Freight","International Priority Fracht"
146
+ "Jetline","Jetline"
147
+ "Jumbo box","Jumbo Box"
148
+ "Key","Schlüssel"
149
+ "Kilograms","Kilogramm"
150
+ "Large","Groß"
151
+ "Large Express Box","Große Expressbox"
152
+ "Length","Länge"
153
+ "Letter","Brief"
154
+ "Library","Sammlung"
155
+ "Library Mail","Library Mail"
156
+ "Live","Live"
157
+ "Machinable","Maschinell bearbeitbar"
158
+ "Maximum Package Weight (Please consult your shipping carrier for maximum supported shipping weight)","Höchstgewicht pro Sendung (Bitte fragen Sie Ihren Versanddienstleister nach dem Höchstgewicht der Sendung.)"
159
+ "Media Mail","Media Mail"
160
+ "Medical express","Medikamente Express"
161
+ "Medium Express Box","Mittlere Expressbox"
162
+ "Merchandise","Trikots"
163
+ "Meter Number","Anzahl Meter"
164
+ "Minimum Order Amount for Free Shipping","Mindestbestellmenge für kostenlosen Versand."
165
+ "Minimum Package Weight (Please consult your shipping carrier for minimum supported shipping weight)","Mindestgewicht der Verpackung (bitte wenden Sie sich an Ihren Frachtführer, um das zulässige Mindestgewicht der Verpackung zu erfragen)"
166
+ "Mode","Modus"
167
+ "National Freight","Nationale Fracht"
168
+ "Next Afternoon","Am nächsten Nachmittag"
169
+ "Next Day Air","Am nächsten Tag per Luftpost"
170
+ "Next Day Air Early AM","Am nächsten Tag per Luftpost am frühen Vormittag"
171
+ "Next Day Air Early AM Letter","Am nächsten Tag per Luftbrief am frühen Vormittag"
172
+ "Next Day Air Intra (Puerto Rico)","Am nächsten Tag per Inlands-Luftpost (Puerto Rico)"
173
+ "Next Day Air Letter","Am nächsten Tag per Luftbrief"
174
+ "Next Day Air Saver","Am nächsten Tag per Air Saver"
175
+ "Next Day Air Saver Letter","Am nächsten Tag per Air Saver Brief"
176
+ "No","Nein"
177
+ "No packages for request","Keine Sendungen angefordert"
178
+ "Non Documents","Keine Dokumente"
179
+ "Non documents","Keine Dokumente"
180
+ "Non-rectangular","Nicht rechteckig"
181
+ "None","Keins"
182
+ "Not Required","Nicht erforderlich"
183
+ "Order","Bestellung"
184
+ "Order #%s","Bestellung #%s"
185
+ "Origin of the Shipment","Herkunftsort der Sendung"
186
+ "Origin serviceAreaCode is missing","Ursprungsservice AreaCode fehlt"
187
+ "Other","Sonstige"
188
+ "Others","Anderes"
189
+ "PAK","PAK"
190
+ "Package","Verpackung"
191
+ "Package Description","Beschreibung der Verpackung"
192
+ "Package content is missing","Paketinhalte fehlen"
193
+ "Packages Request Type","Pakete-Anforderungstyp"
194
+ "Packaging","Verpackungsmaterial"
195
+ "Pallet","Strohsack"
196
+ "Parcel","Paket"
197
+ "Parcel Post","Paketpost"
198
+ "Password","Passwort"
199
+ "Pickup Method","Abholmethode"
200
+ "Piece Id barcode is missing","Stück ID Barcode fehlt"
201
+ "Piece number information is missing","Information zur Stückzahl fehlt"
202
+ "Please make sure to use only digits here. No dashes are allowed.","Bitte geben Sie hier nur Ziffern ein. Striche sind unzulässig."
203
+ "Please, specify origin country","Bitte geben Sie das Herkunftsland an"
204
+ "Pounds","Pfund"
205
+ "Priority Mail","Eilpost"
206
+ "Priority Mail Express","Priority Mail Express"
207
+ "Priority Mail Express Flat Rate Boxes","Priority Mail Express Flat Rate Boxes"
208
+ "Priority Mail Express Flat Rate Boxes Hold For Pickup","Priority Mail Express Flat Rate Boxes Hold For Pickup"
209
+ "Priority Mail Express Flat Rate Envelope","Priority Mail Express Flat Rate Envelope"
210
+ "Priority Mail Express Flat Rate Envelope Hold For Pickup","Priority Mail Express Flat Rate Envelope Hold For Pickup"
211
+ "Priority Mail Express Hold For Pickup","Priority Mail Express Hold For Pickup"
212
+ "Priority Mail Express International","Priority Mail Express International"
213
+ "Priority Mail Express International Flat Rate Boxes","Priority Mail Express International Flat Rate Boxes"
214
+ "Priority Mail Express International Flat Rate Envelope","Priority Mail Express International Flat Rate Envelope"
215
+ "Priority Mail Express International Legal Flat Rate Envelope","Priority Mail Express International Legal Flat Rate Envelope"
216
+ "Priority Mail Express International Padded Flat Rate Envelope","Priority Mail Express International Padded Flat Rate Envelope"
217
+ "Priority Mail Express Legal Flat Rate Envelope","Priority Mail Express Legal Flat Rate Envelope"
218
+ "Priority Mail Express Legal Flat Rate Envelope Hold For Pickup","Priority Mail Express Legal Flat Rate Envelope Hold For Pickup"
219
+ "Priority Mail Express Padded Flat Rate Envelope","Priority Mail Express Padded Flat Rate Envelope"
220
+ "Priority Mail Express Padded Flat Rate Envelope Hold For Pickup","Priority Mail Express Padded Flat Rate Envelope Hold For Pickup"
221
+ "Priority Mail Express Sunday/Holiday Delivery","Priority Mail Express Sunday/Holiday Delivery"
222
+ "Priority Mail Express Sunday/Holiday Delivery Flat Rate Boxes","Priority Mail Express Sunday/Holiday Delivery Flat Rate Boxes"
223
+ "Priority Mail Express Sunday/Holiday Delivery Flat Rate Envelope","Priority Mail Express Sunday/Holiday Delivery Flat Rate Envelope"
224
+ "Priority Mail Express Sunday/Holiday Delivery Legal Flat Rate Envelope","Priority Mail Express Sunday/Holiday Delivery Legal Flat Rate Envelope"
225
+ "Priority Mail Express Sunday/Holiday Delivery Padded Flat Rate Envelope","Priority Mail Express Sunday/Holiday Delivery Padded Flat Rate Envelope"
226
+ "Priority Mail Flat Rate Envelope","Priority Mail Flat Rate Envelope"
227
+ "Priority Mail Flat Rate Envelope Hold For Pickup","Priority Mail Flat Rate Envelope Hold For Pickup"
228
+ "Priority Mail Gift Card Flat Rate Envelope","Priority Mail Gift Card Flat Rate Envelope"
229
+ "Priority Mail Gift Card Flat Rate Envelope Hold For Pickup","Priority Mail Gift Card Flat Rate Envelope Hold For Pickup"
230
+ "Priority Mail Hold For Pickup","Priority Mail Hold For Pickup"
231
+ "Priority Mail International","Priority Mail International"
232
+ "Priority Mail International DVD Flat Rate priced box","Priority Mail International DVD Flat Rate priced box"
233
+ "Priority Mail International Flat Rate Envelope","Priority Mail International Flat Rate Envelope"
234
+ "Priority Mail International Gift Card Flat Rate Envelope","Priority Mail International Gift Card Flat Rate Envelope"
235
+ "Priority Mail International Large Flat Rate Box","Priority Mail International Large Flat Rate Box"
236
+ "Priority Mail International Large Video Flat Rate priced box","Priority Mail International Large Video Flat Rate priced box"
237
+ "Priority Mail International Legal Flat Rate Envelope","Priority Mail International Legal Flat Rate Envelope"
238
+ "Priority Mail International Medium Flat Rate Box","Priority Mail International Medium Flat Rate Box"
239
+ "Priority Mail International Padded Flat Rate Envelope","Priority Mail International Padded Flat Rate Envelope"
240
+ "Priority Mail International Small Flat Rate Box","Priority Mail International Small Flat Rate Box"
241
+ "Priority Mail International Small Flat Rate Envelope","Priority Mail International Small Flat Rate Envelope"
242
+ "Priority Mail International Window Flat Rate Envelope","Priority Mail International Window Flat Rate Envelope"
243
+ "Priority Mail Large Flat Rate Box","Priority Mail Large Flat Rate Box"
244
+ "Priority Mail Large Flat Rate Box Hold For Pickup","Priority Mail Large Flat Rate Box Hold For Pickup"
245
+ "Priority Mail Legal Flat Rate Envelope","Priority Mail Legal Flat Rate Envelope"
246
+ "Priority Mail Legal Flat Rate Envelope Hold For Pickup","Priority Mail Legal Flat Rate Envelope Hold For Pickup"
247
+ "Priority Mail Medium Flat Rate Box","Priority Mail Medium Flat Rate Box"
248
+ "Priority Mail Medium Flat Rate Box Hold For Pickup","Priority Mail Medium Flat Rate Box Hold For Pickup"
249
+ "Priority Mail Padded Flat Rate Envelope","Priority Mail Padded Flat Rate Envelope"
250
+ "Priority Mail Padded Flat Rate Envelope Hold For Pickup","Priority Mail Padded Flat Rate Envelope Hold For Pickup"
251
+ "Priority Mail Regional Rate Box A","Priority Mail Regional Rate Box A"
252
+ "Priority Mail Regional Rate Box A Hold For Pickup","Priority Mail Regional Rate Box A Hold For Pickup"
253
+ "Priority Mail Regional Rate Box B","Priority Mail Regional Rate Box B"
254
+ "Priority Mail Regional Rate Box B Hold For Pickup","Priority Mail Regional Rate Box B Hold For Pickup"
255
+ "Priority Mail Regional Rate Box C","Priority Mail Regional Rate Box C"
256
+ "Priority Mail Regional Rate Box C Hold For Pickup","Priority Mail Regional Rate Box C Hold For Pickup"
257
+ "Priority Mail Small Flat Rate Box","Priority Mail Small Flat Rate Box"
258
+ "Priority Mail Small Flat Rate Box Hold For Pickup","Priority Mail Small Flat Rate Box Hold For Pickup"
259
+ "Priority Mail Small Flat Rate Envelope","Priority Mail Small Flat Rate Envelope"
260
+ "Priority Mail Small Flat Rate Envelope Hold For Pickup","Priority Mail Small Flat Rate Envelope Hold For Pickup"
261
+ "Priority Mail Window Flat Rate Envelope","Priority Mail Window Flat Rate Envelope"
262
+ "Priority Mail Window Flat Rate Envelope Hold For Pickup","Priority Mail Window Flat Rate Envelope Hold For Pickup"
263
+ "Priority Overnight","Eilpost Übernacht"
264
+ "Product content code is invalid","Produkt-Inhaltscode ist ungültig"
265
+ "Product name is missing","Produktname fehlt"
266
+ "Receiver","Empfänger"
267
+ "Rectangular","Rechteckig"
268
+ "Reference code is missing","Der Referenzcode fehlt"
269
+ "Regular","Regulär"
270
+ "Regular Pickup","Reguläre Abholung"
271
+ "Request Courier","Kurier anfordern"
272
+ "Required","Erforderlich"
273
+ "Required for negotiated rates; 6-character UPS.","Für vereinbarte Raten erforderlich; 6-Buchstaben UPS"
274
+ "Residential","Stationär"
275
+ "Residential Delivery","Lieferung an den stationären Wohnsitz"
276
+ "Response is in the wrong format","Antwort im falschen Format"
277
+ "Return","Retoure / Rücksendung"
278
+ "Round","Rund"
279
+ "Routing barcode is missing","Routen-Barcode fehlt"
280
+ "Same day","Am selben Tag"
281
+ "Sample","Beispiel"
282
+ "Sandbox Mode","Sandkasten-Modus"
283
+ "Second Day Service","Lieferung am zweiten Tag"
284
+ "Secure Gateway URL","Sichere Eingangs-URL"
285
+ "Secureline","Secureline"
286
+ "Sender","Absender"
287
+ "Sender city info is missing","Stadtinformation Absender fehlt"
288
+ "Sender contact name is missing","Kontaktname Absender fehlt"
289
+ "Sender country info is missing","Information Absenderland fehlt"
290
+ "Service type does not match","Service-Typ stimmt nicht überein"
291
+ "Ship to Applicable Countries","Versand in zutreffende Länder"
292
+ "Ship to Specific Countries","Versand in angegebene Länder"
293
+ "Shipment Contains Hazardous Materials","Sendung enthält gefährliche Substanzen"
294
+ "Shipment Dutiable","Sendung zollpflichtig"
295
+ "Shipment Duty Payment Type","Versand Zoll Zahlungstyp"
296
+ "Shipment Type","Versandtyp"
297
+ "Shipment is not available.","Versand nicht verfügbar."
298
+ "Shipment picked up","Sendung abgeholt"
299
+ "Shipper Number","Nummer des Spediteurs"
300
+ "Shipping Accept XML URL","Versand XML URL akzeptieren"
301
+ "Shipping Confirm XML URL","Versand XML URL bestätigen"
302
+ "Shipping Key","Sendungsnummer"
303
+ "Shipping Key (International)","Sendungsnummer (International)"
304
+ "Show Method if Not Applicable","Wenn nicht anwendbar, Verfahren anzeigen"
305
+ "Signature Required","Unterschrift erforderlich"
306
+ "Size","Grösse"
307
+ "Small Express Box","Kleine Express Box"
308
+ "Smart Post","Smart Post"
309
+ "Sort Order","Sortierreihenfolge"
310
+ "Specific","Spezifik"
311
+ "Sprintline","Sprintline"
312
+ "Standard Overnight","Standard über Nacht"
313
+ "Standard Post","Standard-Postversand"
314
+ "Station","Station"
315
+ "Subtotal","Zwischensumme"
316
+ "Subtotal With Discount","Zwischensumme mit Preisnachlass"
317
+ "The field is applicable if the Smart Post method is selected.","Dieses Feld ist anwendbar, wenn die Smart-Post-Methode gewählt wird."
318
+ "The response is in wrong format.","Die Antwort hat ein falsches Format"
319
+ "There is no available method for selected shipping address.","Für die ausgewählte Methode ist keine Versandadresse verfügbar"
320
+ "There is no items in this order","Es gibt keine Artikel in dieser Bestellung"
321
+ "Third Party","Dritte Person"
322
+ "Title","Titel"
323
+ "To Lower","herabsetzen"
324
+ "To Upper","hochsetzen"
325
+ "Tracking XML URL","Nachverfolgung XML URL"
326
+ "UPS","UPS"
327
+ "UPS Expedited","UPS Expeditiert"
328
+ "UPS Express","UPS Express"
329
+ "UPS Express Box","UPS Express Box"
330
+ "UPS Express Early A.M.","UPS Express in der Frühe"
331
+ "UPS Express Plus","USP Express Plus"
332
+ "UPS Ground","UPS Boden"
333
+ "UPS Letter Envelope","UPS Briefumschlag"
334
+ "UPS Next Day Air","UPS Luftfracht am Folgetag"
335
+ "UPS Next Day Air Early A.M.","UPS Luftfracht am frühen Morgen des nächsten Tages"
336
+ "UPS Next Day Air Saver","UPS Luftfracht Absicherung am Folgetag"
337
+ "UPS Saver","UPS Absicherung"
338
+ "UPS Second Day Air","UPS Luftfracht am zweiten Tag"
339
+ "UPS Second Day Air A.M.","UPS Luftfracht am zweiten Tag Früh"
340
+ "UPS Standard","UPS Standard"
341
+ "UPS Three-Day Select","UPS Drei Tage Auswahl"
342
+ "UPS Today Dedicated Courrier","UPS Heute bestimmter Courrier"
343
+ "UPS Today Express","UPS Heute Epress"
344
+ "UPS Today Express Saver","UPS Heute Express Absicherung"
345
+ "UPS Today Intercity","UPS Heute Intercity"
346
+ "UPS Today Standard","UPS Heute Standard"
347
+ "UPS Tube","UPS Untergrundbahn"
348
+ "UPS Type","UPS Typ"
349
+ "UPS Worldwide 10 kilo","UPS Weltweit 10 Kilogramm"
350
+ "UPS Worldwide 25 kilo","UPS Weltweit 25 Kilogramm"
351
+ "UPS Worldwide Expedited","UPS Weltweit Epeditiert"
352
+ "UPS Worldwide Express","UPS Weltweit Express"
353
+ "UPS Worldwide Express Plus","UPS Weltweit Express Plus"
354
+ "UPS Worldwide Express PlusSM","UPS Weltweit Express PlusSM"
355
+ "UPS Worldwide Saver","UPS Weltweit Spar"
356
+ "USPS","USPS"
357
+ "USPS GXG Envelopes","USPS GXG Envelopes"
358
+ "Unable to retrieve tracking","Nachverfolgung kann nicht abgerufen werden"
359
+ "United Parcel Service","United Parcel Service"
360
+ "United Parcel Service XML","United Parcel Service XML"
361
+ "Unknown error","Unbekannter Fehler"
362
+ "Used only when ""Additional Protection Value"" is set to ""Configuration"". Can contain only numeric amount.","Nur wenn ""Wert des zusätzlichen Schutzes"" auf ""Konfigurieren"" eingestellt ist. Darf nur Zahlenwert enthalten."
363
+ "User ID","Benutzerkennung"
364
+ "Variable","Variable"
365
+ "Waybill barcode information is missing","Frachtbrief Barcodeinformation fehlt"
366
+ "Weight Unit","Gewichtseinheit"
367
+ "Weight unit is invalid","Gewichtseinheit ist ungültig"
368
+ "Width","Breite"
369
+ "Worldwide Expedited","Weltweit Expediert"
370
+ "Worldwide Express","Weltweit Express"
371
+ "Worldwide Express Letter","Weltweit Expressbrief"
372
+ "Worldwide Express Plus","Weltweit Express Plus"
373
+ "Worldwide Express Plus Letter","Weltweit Express Plus Brief"
374
+ "Worldwide Express Saver","Weltweit Express Absicherung"
375
+ "Wrong Content Type.","Falscher Inhaltstyp."
376
+ "Wrong Region.","Falsche Region."
377
+ "Yes","Ja"
378
+ "Your Packaging","Ihre Verpackung"
379
+ "Zero shipping charge for '%s'","Null Versandkosten für '%s'"
380
+ "cm","cm"
381
+ "inch","Inch"
app/locale/de_DE/Mage_Weee.csv ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "All Websites","Alle Webseiten"
2
+ "Apply Discounts To FPT","Rabatte auf FPT anwenden"
3
+ "Apply Tax To FPT","Steuer auf FPT anwenden"
4
+ "Display Prices In Emails","Preise in E-Mails anzeigen"
5
+ "Display Prices In Product Lists","Preise in Produktlisten anzeigen"
6
+ "Display Prices In Sales Modules","Preise in Verkaufsmdulen anzeigen"
7
+ "Display Prices On Product View Page","Preise auf der Produktansichtseite anzeigen"
8
+ "Enable FPT","FPT aktivieren"
9
+ "Excluding FPT","Ausschließlich FPT"
10
+ "Excluding FPT, FPT description, final price","Ausschließlich FPT, FPT-Beschreibung, Endpreis"
11
+ "FPT Tax Configuration","Steuer-Konfiguration für Festpreis-Offerten"
12
+ "Fixed Product Tax","Feste Produktsteuer"
13
+ "Fixed Product Taxes","Feste Produktsteuern"
14
+ "Include FPT In Subtotal","FPT in Zwischensumme einschließen"
15
+ "Including FPT and FPT description","Einschließlich FPT und FPT-Beschreibung"
16
+ "Including FPT and FPT description [incl. FPT VAT]","Einschließlich FPT und FPT-Beschreibung [inkl. FPT-MwSt]"
17
+ "Including FPT only","Lediglich einschließlich FPT"
18
+ "Loaded and Displayed with Tax","Geladen und mit Steuer angezeigt"
19
+ "Not Taxed","Nicht besteuert"
20
+ "Taxed","Besteuert"
21
+ "Total","Gesamtbetrag"
22
+ "Total Incl. Tax","Gesamtbetrag inkl. Steuer"
23
+ "Total excl. tax","Gesamtbetrag exkl. Steuern"
24
+ "Total incl. tax","Gesamtbetrag inkl. Mehrwertsteuer"
25
+ "Total:","Gesamt:"
app/locale/de_DE/Mage_Widget.csv ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s","%s"
2
+ "-- Please Select --","-- Bitte auswählen --"
3
+ "Actions","Aktionen"
4
+ "Add Layout Update","Layout-Update hinzufügen"
5
+ "Add New Widget Instance","Neue Widget-Instanz hinzufügen"
6
+ "All","Alle"
7
+ "All Pages","Alle Seiten"
8
+ "All Product Types","Alle Produkttypen"
9
+ "An error occurred during saving a widget: %s","Ein Fehler ist beim Speichern eines Widgets aufgetreten: %s."
10
+ "Anchor Categories","Grundkategorien"
11
+ "Apply","Anwenden"
12
+ "Assign to Store Views","Zu Shopansichten zuweisen"
13
+ "Big Image","Größeres Bild"
14
+ "Block Reference","Blockreferenz"
15
+ "CMS","CMS"
16
+ "Categories","Kategorien"
17
+ "Choose...","Auswählen..."
18
+ "Close","Schließen"
19
+ "Continue","Fortsetzen"
20
+ "Default Template","Standardvorlage"
21
+ "Delete","Löschen"
22
+ "Design Package/Theme","Design-Paket/Theme"
23
+ "Export to:","Exportieren nach:"
24
+ "Frontend Properties","Oberflächeneigenschaften"
25
+ "Generic Pages","Generische Seiten"
26
+ "Images","Bilder"
27
+ "Insert Widget","Widgt einfügen"
28
+ "Insert Widget...","Widget einfügen..."
29
+ "Layout Updates","Layout-Updates"
30
+ "Manage Widget Instances","Widget-Instanzen verwalten"
31
+ "New Instance","Neue Instanz"
32
+ "New Widget Instance","Neue Widget-Instanz"
33
+ "Next page","Nächste Seite"
34
+ "Non-Anchor Categories","nicht grundlegende Kategorien"
35
+ "Not Selected","Nicht ausgewählt"
36
+ "Open Chooser","Chooser öffnen (Auswählfunktion öffnen)"
37
+ "Page","Seite"
38
+ "Please Select Block Reference First","Bitte erst Blockreferenz auswählen"
39
+ "Previous page","Vorhergehende Seite"
40
+ "Products","Produkte"
41
+ "Remove Layout Update","Layout-Update entfernen"
42
+ "Save and Continue Edit","Speichern und Bearbeitung fortsetzen"
43
+ "Select All","Alle auswählen"
44
+ "Select Visible","Sichtbare auswählen"
45
+ "Settings","Einstellungen"
46
+ "Sort Order","Sortierreihenfolge"
47
+ "Sort Order of widget instances in the same block reference","Sortierreihenfolge der Widget-Instanzen in der gleichen Blockreferenz"
48
+ "Specific %s","Spezifische %s"
49
+ "Specified Page","Bestimmte Seite"
50
+ "Template","Vorlage"
51
+ "The information in this tab has been changed.","Die Informationen in diesem Tab wurden geändert."
52
+ "The widget instance has been deleted.","Die Widget-Instanz wurde gelöscht."
53
+ "The widget instance has been saved.","Die Widget-Instanz wurde gespeichert."
54
+ "This tab contains invalid data. Please solve the problem before saving.","Der Tab enthält ungültige Daten. Bitte das Problem vor dem Speichern beheben."
55
+ "Thumbnail","Miniaturansicht"
56
+ "Total %d records found","Gesamtzahl von %d Einträgen gefunden"
57
+ "Type","Typ"
58
+ "Unselect All","Alle abwählen"
59
+ "Unselect Visible","Sichtbare abwählen"
60
+ "View","Anzeigen"
61
+ "Widget","Widget"
62
+ "Widget ""%s""","Grafikobjekt ""%s"" "
63
+ "Widget ID","Widget-ID"
64
+ "Widget Insertion","Widget-Einbindung"
65
+ "Widget Instance","Widget-Instanz"
66
+ "Widget Instance Title","Widget-Instanz-Titel"
67
+ "Widget Options","Widget-Optionen"
68
+ "Widget Type","Widget-Typ"
69
+ "Widget Type is not specified","Widget-Typ nicht festgelegt"
70
+ "Widget instance is not full complete to create.","Widget-Instanz nicht zur Erstellung vollständig."
71
+ "Widgets","Widgets"
72
+ "Wrong widget instance specified.","Falsche Widget Instanz angegeben."
73
+ "items selected","Objekte ausgewählt"
74
+ "of %s pages","von %s Seiten"
75
+ "per page","pro Seite"
app/locale/de_DE/Mage_Wishlist.csv ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%1$s has been updated in your wishlist.","%1$s wurde in Ihrer Wunschliste aktualisiert."
2
+ "%d product(s) have been added to shopping cart: %s.","%d Produkt(e) wurden zum Warenkorb hinzugefügt: %s."
3
+ "%s for ""%s"".","%s für ""%s""."
4
+ "%s has been moved to wishlist %s","%s befindet sich nun auf der Wunschliste %s."
5
+ "%s's Wishlist","%ss Wunschzettel"
6
+ "* Required Fields","* Notwendige Felder"
7
+ "Add All to Cart","Alle zum Warenkorb hinzufügen"
8
+ "Add to Cart","Zum Warenkobrn hinzufügen"
9
+ "Add to Compare","Zum Vergleich hinzufügen"
10
+ "Add to Wishlist","Zum Wunschzettel hinzufügen"
11
+ "Added From","Hinzugefügt von"
12
+ "An error occurred while adding item to wishlist.","Ein Fehler trat auf beim Hinzufügen des Objekts zum Wunschzettel."
13
+ "An error occurred while adding item to wishlist: %s","Ein Fehler trat auf beim Hinzufügen des Objekts zum Wunschzettel: %s"
14
+ "An error occurred while deleting the item from wishlist.","Ein Fehler trat auf beim Löschen des Objekts vom Wunschzettel."
15
+ "An error occurred while deleting the item from wishlist: %s","Ein Fehler trat auf beim Löschen des Objekts vom Wunschzettel: %s"
16
+ "An error occurred while updating wishlist.","Beim Aktualisieren der Wunschliste ist ein Fehler aufgetreten."
17
+ "Are you sure you want to remove this product from your wishlist?","Sind Sie sicher, dass Sie dieses Produkt von Ihrem Wunschzettel entfernen möchten?"
18
+ "Are you sure you would like to remove this item from the wishlist?","Sind Sie sicher, dass Sie dieses Objekt von Ihrem Wunschzettel entfernen möchten?"
19
+ "Back","Zurück"
20
+ "Can\'t delete item from wishlist","Artikel kann nicht aus Wunschliste gelöscht werden"
21
+ "Can\'t save description %s","Kann Beschreibung nicht sichern %s"
22
+ "Can\'t update wishlist","Kann Wunschzettel nicht aktualisieren"
23
+ "Cannot add item to shopping cart","Kann Objekt nicht zum Warenkorb hinzufügen"
24
+ "Cannot add the following product(s) to shopping cart: %s.","Der Warenkorb kann nicht um das/die folgende(n) Produkt(e) erweitert werden: %s."
25
+ "Cannot add the item to shopping cart.","Kann das Objekt nicht zum Warenkorb hinzufügen."
26
+ "Cannot configure product","Produkt kann nicht konfiguriert werden"
27
+ "Cannot load wishlist item","Artikel aus Wunschliste kann nicht geladen werden"
28
+ "Cannot move item to wishlist","Artikel kann nicht auf die Wunschliste gesetzt werden."
29
+ "Cannot specify product.","Kann Produkt nicht bestimmen."
30
+ "Cannot specify wishlist item.","Artikel aus Wunschliste kann nicht spezifiziert werden."
31
+ "Cannot specify wishlist.","Kann Wunschzettel nicht bestimmen."
32
+ "Cannot update wishlist","Kann Wunschzettel nicht aktualisieren"
33
+ "Check this checkbox if you want to add a link to an rss feed to your wishlist.","Dieses Kästchen aktivieren, wenn Sie einen RSS-Feed-Link zu Ihrem Wunschzettel hinzufügen möchten."
34
+ "Click for price","Klicken für den Preis"
35
+ "Comment","Kommentar"
36
+ "Comment:","Kommentar"
37
+ "Configure Wishlist Item","Wunschlistenartikel konfigurieren"
38
+ "Configured Price:","Konfigurierter Preis:"
39
+ "Could not find such wishlist","Eine derartige Wunschliste konnte nicht aufgefunden werden."
40
+ "Could not find wishlist","Wunschliste konnte nicht aufgefunden werden."
41
+ "Customer My Account My Wishlist","Kunde Mein Konto Mein Wunschzettel"
42
+ "Customer My Account Wishlist Sharing Form","Kunde Mein Konto Wunschzettel Sharing-Formular"
43
+ "Customer Shared Wishlist View","Kunde Geteilter Wunschzettel Anzeigen"
44
+ "Date Added","Datum hinzugefügt"
45
+ "Days in Wishlist","Tage in Wunschliste"
46
+ "Display Wishlist Summary","Zusammenfassung der Wunschliste anzeigen"
47
+ "Edit","Bearbeiten"
48
+ "Email Sender","E-Mail-Absender"
49
+ "Email Template","E-Mail-Vorlage"
50
+ "Email address can\'t be empty.","E-Mail-Adressfeld darf nicht leer sein."
51
+ "Email addresses, separated by commas","E-Mail-Adressen, durch Komma getrennt"
52
+ "Enabled","Aktiviert"
53
+ "General Options","Allgemeine Optionen"
54
+ "Go to Wishlist","Zum Wunschzettel gehen"
55
+ "Helper for wishlist options rendering doesn't implement required interface.","Hilfsprogramm für die Darstellung der Wunschlistenoptionen implementiert die erforderliche Schnittstelle nicht."
56
+ "In stock","Auf Lager"
57
+ "Last Added Items","Zuletzt hinzugefügte Objekte"
58
+ "Message","Nachricht"
59
+ "My Wishlist","Mein Wunschzettel"
60
+ "My Wishlist (%d item)","Mein Wunschzettel (%d Objekt)"
61
+ "My Wishlist (%d items)","Mein Wunschzettel (%d Objekte)"
62
+ "My Wishlist <small>(%d)</small>","Mein Wunschzettel <small>(%d)</small>"
63
+ "My Wishlist Link","Link ""Meine Wunschliste"""
64
+ "Options Details","Optionen Details"
65
+ "Out of stock","Nicht lieferbar"
66
+ "Please enter a valid email addresses, separated by commas. For example johndoe@domain.com, johnsmith@domain.com.","Bitte geben Sie gültige E-Mail-Adressen ein, durch Komma getrennt, wie z.B. johndoe@domain.com, johnsmith@domain.com."
67
+ "Please input a valid email address.","Bitte geben Sie eine gültige E-Mail-Adresse ein."
68
+ "Please, enter your comments...","Bitte geben Sie Ihre Kommentare ein..."
69
+ "Price","Preis"
70
+ "Product","Produkt"
71
+ "Product Details and Comment","Produktangaben und Kommentare"
72
+ "Product(s) %s have required options. Each of them can be added to cart separately only.","Produkt(e) %s haben notwendige Optionen. Jedes kann nur einzeln zum Warenkob hinzugefügt werden."
73
+ "Product(s) %s have required options. Each product can only be added individually.","Produkt(e) %s verfügt/en über die gewünschten Optionen. Jedes Produkt kann nur einzeln hinzugefügt werden."
74
+ "Quantity","Menge"
75
+ "RSS Feed","RSS-Feed"
76
+ "RSS link to %s's wishlist","RSS-Link zu %ss Wunschzettel"
77
+ "Remove Item","Objekt entfernen"
78
+ "Remove This Item","Dieses Objekt entfernen"
79
+ "Remove item","Artikel löschen"
80
+ "Requested cart item doesn't exist","Der gewünschte Warenkorbartikel existiert nicht."
81
+ "Requested wishlist doesn't exist","Die gewünschte Wunschliste existiert nicht."
82
+ "Share Options","Optionen teilen"
83
+ "Share Wishlist","Wunschzettel teilen"
84
+ "Share Your Wishlist","Ihren Wunschzettel teilen"
85
+ "Sharing Information","Sharing-Information"
86
+ "This Wishlist has no Items","Diese Wunschliste enthält keine Artikel"
87
+ "This product(s) is currently out of stock","Diese(s) Produkt(e) ist/sind gerade nicht lieferbar."
88
+ "Unable to add the following product(s) to shopping cart: %s.","Das/die folgende(n) Produkt(e) kann/können nicht zum Warenkorb hinzugefügt werden: %s."
89
+ "Update Wishlist","Wunschzettel aktualisieren"
90
+ "User Description","Benutzerbeschreibung"
91
+ "View Details","Details anzeigen"
92
+ "View Product","Produkt anzeigen"
93
+ "What's this?","Was ist das?"
94
+ "Wishlist","Wunschzettel"
95
+ "Wishlist Section","Wunschzettelauswahl"
96
+ "Wishlist Sharing","Teilen des Wunschzettels"
97
+ "Wishlist could not be created.","Wunschliste konnte nicht erstellt werden."
98
+ "Wishlist is empty now.","Der Wunschzettel ist jetzt leer."
99
+ "You have no items in your wishlist.","Sie haben keine Objekte auf Ihrem Wunschzettel."
100
+ "Your Wishlist has been shared.","Ihr Wunschzettel wurde geteilt."
app/locale/de_DE/Mage_XmlConnect.csv ADDED
@@ -0,0 +1,1200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " But cart has some errors.","Der Einkaufswagen jedoch weist Fehler auf."
2
+ " Note: Image size affects the performance of your app."," Note: Image size affects the performance of your app."
3
+ """Description"" is more than %d characters long","""Beschreibung"" überschreitet die erlaubten %d Zeichen"
4
+ """Title"" is more than %d characters long","""Titel"" überschreitet die erlaubten %d Zeichen"
5
+ """id"" attribute is required for a ""%s"" field.","Das ""id""-Attribut ist erforderlich für ein ""%s""-Feld."
6
+ """line_count"" attribute is required for ""multiline"" element.","Das ""line_count""-Attribut ist erforderlich für ein ""multiline""-Element."
7
+ """message"" attribute is required for ""%s"" validator rule.","Das ""message""-Attribut ist erforderlich für die ""%s""-Bestätigungsregel."
8
+ "%1$s has been added to your wishlist.","%1$s wurde auf Ihren Wunschzettel geschrieben."
9
+ "%1$s incl tax.","%1$s inkl. MwSt."
10
+ "%@ is not correct","%@ is not correct"
11
+ "%s API Key required.","%s API-Key benötigt."
12
+ "%s Application ID required.","%s Anwendungsidentifikation benötigt."
13
+ "%s Secret Key required.","%s Geheimschlüssel benötigt."
14
+ "%s attribute is required.","Das Attribut %s ist erforderlich."
15
+ "%s fields is required","%s fields is required"
16
+ "%s has been added to your cart.","%s wurde in Ihren Einkaufswagen gelegt."
17
+ "%s id:","%s id:"
18
+ "%s was updated in your shopping cart.","%s was updated in your shopping cart."
19
+ "(Includes more countries than those listed below. As the application owner, you are responsible for complying with country-specific laws related to the distribution or sale of your application into that country, including your home country.)","(Dazu gehören weitere Ländern außer den genannten. Als Eigentümer der Anwendung sind sie für die Einhaltung der Rechtsvorschriften ihres Landes hinsichtlich der Verbreitung oder dem Verkauf ihrer Anwendung in jeweiligem Land, einschließlich ihrem Heimatland, selbst verantwortlich.)"
20
+ "* - field is required","* - field is required"
21
+ "*Subject to change","*Änderung vorbehalten"
22
+ "1. Please select type of the action:","1. Please select type of the action:"
23
+ "10:40 AM","10:40 Uhr"
24
+ "2. Please select a page","2. Please select a page"
25
+ "2. Type Category Name","2. Type Category Name"
26
+ "2. Type Product Name","2. Type Product Name"
27
+ "80px x 80px","80px x 80px"
28
+ "80x80 px","80x80 px"
29
+ "<a href=""%s"" target=""_blank"">Login</a> to Urabn Airship.","Bei Urban Airship <a href=""%s"" target=""_blank"">anmelden</a>."
30
+ "<a href=""%s"" target=""_blank"">Login</a> to Urban Airship.","<a href=""%s"" target=""_blank"">Login</a> to Urban Airship."
31
+ "A Catalog Only App will not support functions such as add to cart, add to wishlist, or login.","Eine Catalog Only App unterstützt Funktionen wie Zum Warenkorb Hinzufügen, Auf den Wunschzettel oder Login nicht."
32
+ "A new password has been sent.","Ein neues Passwort wurde gesendet."
33
+ "About","About"
34
+ "Access forbidden","Access forbidden"
35
+ "Account","Konto"
36
+ "Account Information","Account Information"
37
+ "Account Settings","Account Settings"
38
+ "Account confirmation is required. Please check your email for the confirmation link.","Kontoinformation benötigt. Überprüfen Sie bitte für den Bestätigungslink Ihren Posteingang."
39
+ "Account information has been saved.","Kontoinformation wurde gespeichert."
40
+ "Action","Aktion"
41
+ "Action type does\'t recognized","Action type does\'t recognized"
42
+ "Action type does\'t recognized.","Action type does\'t recognized."
43
+ "Action type doesn\'t recognized.","Action type doesn\'t recognized."
44
+ "Activate","Aktivieren"
45
+ "Activate PayPal Checkout","PayPal Checkout aktivieren"
46
+ "Activate PayPal MECL","PayPal-MECL aktivieren"
47
+ "Activation Key","Aktivierungsschlüssel"
48
+ "Add","Add"
49
+ "Add Action","Add Action"
50
+ "Add Address from Contacts","Add Address from Contacts"
51
+ "Add App","Neue App"
52
+ "Add Custom","Add Custom"
53
+ "Add New Address","Add New Address"
54
+ "Add New Template","Neue Vorlage"
55
+ "Add Page","Neue Seite"
56
+ "Add To Wishlist","Add To Wishlist"
57
+ "Add a billing address","Add a billing address"
58
+ "Add a shipping address","Add a shipping address"
59
+ "Add to Cart","Zum Warenkorb hinzufügen"
60
+ "Add to Wishlist","Zur Wunschliste hinzufügen"
61
+ "Adding Product to Cart...","Adding Product to Cart..."
62
+ "Adding Product to WishList...","Adding Product to WishList..."
63
+ "Additional Address","Zusätzliche Anschrift"
64
+ "Additional Info","Additional Info"
65
+ "Address","Adresse"
66
+ "Address 2","Anschrift 2"
67
+ "Address Book","Address Book"
68
+ "Address Book Updated","Address Book Updated"
69
+ "Address Info","Address Info"
70
+ "Address book is empty","Address book is empty"
71
+ "Address data not specified.","Keine Anschriftsdaten angegeben."
72
+ "Address does not belong to this customer.","Die Anschrift gehört nicht zu diesem Kunden."
73
+ "Address has been deleted.","Anschrift wurde gelöscht."
74
+ "Address has been saved.","Anschrift wurde gespeichert."
75
+ "Admin Application Settings","Admin Application Settings"
76
+ "Admin Mobile Application","Admin Mobile Application"
77
+ "Admin application has not been enabled","Admin application has not been enabled"
78
+ "Administrative contact for this app and for app submission issues.","Administrativer Ansprechpartner für diese App und für Probleme mit dem App-Angebot."
79
+ "Advanced Settings","Erweiterte Einstellungen"
80
+ "After submitting the App to Magento, please contact <a href=""mailto:%1$s"">%1$s</a> to receive the Application Key, Application Secret and Application Master Secret.","Nachdem Sie die App zu Magento gesendet haben, kontaktieren Sie bitte <a href=""mailto:%1$s"">%1$s</a>, um Ihren Anwendungsschlüssel, den Geheimcode und den Mastergeheimcode zu erhalten."
81
+ "AirMail Message Queue","AirMail Nachrichtenschlange"
82
+ "AirMail Messages Queue","AirMail Nachrichtenschlange"
83
+ "AirMail Template Preview","AirMail Template Vorschau"
84
+ "AirMail message","AirMail Nachricht"
85
+ "AirMail templates","AirMail Vorlagen"
86
+ "All Allowed Countries","Alle zugelassenen Länder"
87
+ "All Images","All Images"
88
+ "All locations","Alle Orte"
89
+ "Amount","Amount"
90
+ "Amount in %@","Amount in %@"
91
+ "Amounts","Amounts"
92
+ "An account with this email address already exists.","Ein Account mit dieser E-Mail Adresse ist bereits vorhanden."
93
+ "An error occurred while adding item to wishlist.","Beim Hinzufügen dieses Artikels zur Wunschliste ist ein Fehler aufgetreten."
94
+ "An error occurred while deleting the address.","Beim Löschen der Anschrift ist ein Fehler aufgetreten."
95
+ "An error occurred while loading categories.","Beim Laden der Kategorien ist ein Fehler aufgetreten."
96
+ "An error occurred while loading category filters.","Beim Laden der Kategoriefilter ist ein Fehler aufgetreten."
97
+ "An error occurred while loading configuration.","An error occurred while loading configuration."
98
+ "An error occurred while loading localization.","An error occurred while loading localization."
99
+ "An error occurred while loading login form.","An error occurred while loading login form."
100
+ "An error occurred while loading wishlist.","Beim Laden der Wunschliste ist ein Fehler aufgetreten."
101
+ "An error occurred while processing your order. Please contact us or try again later.","Beim Bearbeiten Ihrer Bestellung ist ein Fehler aufgetreten. Bitte kontaktieren Sie uns oder versuchen Sie es später noch einmal."
102
+ "An error occurred while processing your request.","Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten."
103
+ "An error occurred while removing item from wishlist.","Beim Löschen des Artikels von der Wunschliste ist ein Fehler aufgetreten."
104
+ "An error occurred while removing items from wishlist.","Beim Löschen der Artikel aus der Wunschliste ist ein Fehler aufgetreten."
105
+ "Analytics","Analytik"
106
+ "Android","Android"
107
+ "Android doesn\'t support AirMail message type.","Der AirMail-Nachrichtentyp wird von Android nicht unterstützt."
108
+ "App Background","App Hintergrund"
109
+ "App Background (landscape mode)","App Background (landscape mode)"
110
+ "App Background (landscape mode).","App Hintergrund (Querformat)."
111
+ "App Background (portrait mode)","App Background (portrait mode)"
112
+ "App Background (portrait mode).","App Hintergrund (Hochformat)."
113
+ "App Background <br />(landscape mode)","App Hintergrund <br/> (Querformat)"
114
+ "App Background <br />(portrait mode)","App Hintergrund <br/> (Hochformat)"
115
+ "App Background image missing.","App Hintergrundbild fehlt."
116
+ "App Code","App Code"
117
+ "App Information","App Information"
118
+ "App Name","App Name"
119
+ "App Stores","App Stores"
120
+ "App Submission History","App Einsendungshistorie"
121
+ "App Title","App Titel"
122
+ "App code","App code"
123
+ "App code required.","App Code erforderlich"
124
+ "App does not exist.","App existiert nicht."
125
+ "App has been deleted.","App wurde gelöscht."
126
+ "App has been saved.","App wurde gespeichert."
127
+ "App has been submitted.","App wurde abgesendet."
128
+ "App model not loaded.","App-Modell nicht geladen."
129
+ "App with specified code does not exist.","Eine App mit dem eingegebenen Code existiert nicht."
130
+ "Appears in the info section of your app (example: Copyright 2010 – Your Company, Inc.)","Wird im Info-Abschnitt Ihrer App angezeigt (Beispiel: Copyright 2010 - Ihr Unternehmen, Inc.)"
131
+ "Application","Anwendung"
132
+ "Application Key","Anwendungsschlüssel"
133
+ "Application Master Secret","Application Master Secret"
134
+ "Application Name","Applikationsname"
135
+ "Application Secret","Application Secret"
136
+ "Application doesn\'t exist.","Application doesn\'t exist."
137
+ "Apply","Apply"
138
+ "Applying Coupon Code","Applying Coupon Code"
139
+ "Applying Gift Card %@","Applying Gift Card %@"
140
+ "Are you sure you want to cancel a message?","Are you sure you want to cancel a message?"
141
+ "Are you sure you want to cancel selected records?","Are you sure you want to cancel selected records?"
142
+ "Are you sure you want to delete a message?","Are you sure you want to delete a message?"
143
+ "Are you sure you want to delete selected records?","Are you sure you want to delete selected records?"
144
+ "Are you sure you want to delete this theme? This change will affect all applications.","Sind Sie sicher, dass Sie dieses Design löschen möchten? Diese Änderung wird alle Anwendungen betreffen."
145
+ "Are you sure you want to do this?","Sind Sie sicher, dass Sie dies tun möchten?"
146
+ "Are you sure you want to remove this item?","Are you sure you want to remove this item?"
147
+ "Are you sure you whant to cancel a message?","Sind Sie sicher, dass Sie die Nachricht abbrechen möchten?"
148
+ "Are you sure you whant to delete a message?","Sind Sie sicher, dass Sie die Nachricht löschen möchten?"
149
+ "Are you sure you what to cancel selected records?","Sind Sie sicher, dass Sie die ausgewählten Einträge löschen möchten?"
150
+ "Are you sure you what to delete selected records?","Sind Sie sicher, dass Sie die ausgewählten Einträge löschen möchten?"
151
+ "As Low As","As Low As"
152
+ "As Low Excl. Tax","As Low Excl. Tax"
153
+ "As Low Incl. Tax","As Low Incl. Tax"
154
+ "As a Magento customer, Urban Airship is offering you unlimited Push Notifications and Rich Push for $100/year* along with a 60 day free trial.","Als Magento-Kunde bietet Ihnen Urban Airship unbegrenzte Push-Benachrichtigungen an sowie Rich-Push für 100 Dollar pro Jahr* zusammen mit einem 60-tägigen Test."
155
+ "As low as","As low as"
156
+ "As low as excl. tax","As low as excl. tax"
157
+ "As low as incl. tax","As low as incl. tax"
158
+ "At last one application has to be created.","Es muss zumindest eine Anwendung erstellt werden."
159
+ "At least one option should be selected","At least one option should be selected"
160
+ "Authentication complete.","Authentifikation abgeschlossen."
161
+ "Authentication to %@ did failed...","Authentication to %@ did failed..."
162
+ "Average Order Amount","Average Order Amount"
163
+ "Average Orders","Average Orders"
164
+ "Average Rating","Average Rating"
165
+ "Back","Zurück"
166
+ "Back to App Edit","Zurück zur App-Bearbeitung"
167
+ "Background Color","Hintergrundfarbe"
168
+ "Balance","Saldo"
169
+ "Balance Change","Saldoänderung"
170
+ "Balance History","Saldoverlauf"
171
+ "Banner on Home Screen","Banner auf dem Startbildschirm"
172
+ "Banner on Home Screen (landscape mode)","Banner on Home Screen (landscape mode)"
173
+ "Banner on Home Screen (landscape mode) image missing.","Banner-Bilddatei für den Startbildschirm (Landschaftsmodus) fehlt."
174
+ "Banner on Home Screen (portrait mode)","Banner on Home Screen (portrait mode)"
175
+ "Banner on Home Screen (portrait mode) image missing.","Banner-Bilddatei für den Startbildschirm (Porträtmodus) fehlt."
176
+ "Banner on Home Screen <br />(landscape mode)","Banner für Startbildschirm <br />(Landschaftsmodus)"
177
+ "Banner on Home Screen <br />(portrait mode)","Banner für Startbildschirm <br />(Porträtmodus)"
178
+ "Banner on Home Screen image missing.","Banner für Startbildschirm fehlt."
179
+ "Banners on Home Screen","Banners on Home Screen"
180
+ "Best Sellers","Best Sellers"
181
+ "Billing","Billing"
182
+ "Billing Address","Rechnungsadresse"
183
+ "Billing address","Billing address"
184
+ "Billing address has been set.","Rechnungsadresse wurde festgelegt."
185
+ "Bundle Products","Bundle Products"
186
+ "Buy %1$s for %2$s","Kaufen Sie %1$s für %2$s"
187
+ "Buy %1$s for %2$s (%3$s incl. tax) each","Kaufen Sie %1$s für jeweils %2$s (%3$s inkl. Steuern)"
188
+ "Buy %1$s for %2$s each","Kaufen Sie %1$s für jeweils %2$s"
189
+ "Buy %1$s with %2$s discount each","Kaufen sie %1$s mit jeweils %2$s Nachlass"
190
+ "Buy More & Save","Buy More & Save"
191
+ "Buyer country is not allowed by store.","Sie können aus diesem Land nicht einkaufen."
192
+ "CMS Page","CMS Page"
193
+ "CMS Pages haven\'t been found.","CMS Pages haven\'t been found."
194
+ "Cache Lifetime (seconds)","Cache-Lebenszeit (Sekunden)"
195
+ "Cache Management","Cache-Verwaltung"
196
+ "Can\'t add item to shopping cart.","Artikel kann nicht zum Einkaufswagen hinzugefügt werden."
197
+ "Can\'t apply the coupon code.","Couponcode kann nicht verwendet werden."
198
+ "Can\'t copy file ""%s"" to ""%s"".","Datei ""%s"" kann nicht nach ""%s"" kopiert werden."
199
+ "Can\'t create wishlist.","Wunschzettel kann nicht erstellt werden."
200
+ "Can\'t delete ""%s"" theme.","Das Design ""%s"" kann nicht gelöscht werden."
201
+ "Can\'t load XML.","XML kann nicht geladen werden."
202
+ "Can\'t load admin application settings.","Can\'t load admin application settings."
203
+ "Can\'t load application with id ""%s""","Die Anwendung mit der ID ""%s"" kann nicht geladen werden"
204
+ "Can\'t load cart info.","Einkaufswagen-Information kann nicht geladen werden."
205
+ "Can\'t load cart.","Der Einkaufswagen kann nicht geladen werden."
206
+ "Can\'t load customer form.","Kundenformular kann nicht geladen werden."
207
+ "Can\'t load default themes.","Die Standard-Designs können nicht geladen werden."
208
+ "Can\'t load selected theme. Please check your media folder permissions.","Das ausgewählte Design kann nicht geladen werden. Bitte überprüfen Sie die Zugriffsberechtigung für den Medienordner."
209
+ "Can\'t load template with id ""%s""","Can\'t load template with id ""%s"""
210
+ "Can\'t open submission form.","Anmeldeformular kann nicht geöffnet werden."
211
+ "Can\'t read file ""%s"".","Datei ""%s"" kann nicht gelesen werden."
212
+ "Can\'t remove the item.","Artikel kann nicht entfernt werden."
213
+ "Can\'t reset theme.","Thema kann nicht zurückgesetzt werden."
214
+ "Can\'t save address.","Adresse kann nicht gespeichert werden."
215
+ "Can\'t save the customer.","Kunde kann nicht gespeichert werden."
216
+ "Can\'t save theme.","Thema kann nicht gespeichert werden."
217
+ "Can\'t show configuration.","Konfiguration kann nicht angezeigt werden."
218
+ "Can\'t specify product.","Produkt kann nicht spezifiziert werden."
219
+ "Can\'t submit application.","Anwendung kann nicht aktiviert werden."
220
+ "Can\'t update cart.","Warenkorb kann nicht aktualisiert werden."
221
+ "Can\'t write to file ""%s"".","In die Datei ""%s"" kann nicht geschrieben werden."
222
+ "Cancel","Abbrechen"
223
+ "Canceled","Gelöscht"
224
+ "Canceling PayPal ...","Canceling PayPal ..."
225
+ "Cancelled","Gelöscht"
226
+ "Cannot apply gift card.","Der Geschenkgutschein kann nicht angewandt werden."
227
+ "Cannot configure product.","Cannot configure product."
228
+ "Cannot load theme ""%s"".","Thema ""%s"" kann nicht geladen werden."
229
+ "Cannot redeem Gift Card.","Der Geschenkgutschein kann nicht eingelöst werden."
230
+ "Cannot remove gift card.","Der Geschenkgutschein kann nicht gelöscht werden."
231
+ "Cannot save theme ""%s"". Incorrect data received","Thema ""%s"" kann nicht gespeichert werden. Falsche Dateneingabe"
232
+ "Cannot update the item.","Cannot update the item."
233
+ "Card Verification Number","Kreditkartenprüfnummer"
234
+ "Card verification number is wrong","Verifizierungsnummer der Karte ist falsch"
235
+ "Carrier","Carrier"
236
+ "Cart","Einkaufswagen"
237
+ "Cart Updated","Cart Updated"
238
+ "Cart has been updated.","Warenkorb wurde aktualisiert."
239
+ "Cart has some errors.","Warenkorb enthält einige Fehler."
240
+ "Cart is empty.","Warenkorb ist leer."
241
+ "Catalog Only App?","Nur Katalog-App?"
242
+ "Category","Category"
243
+ "Category Button Color","Farbe des Kategoriebuttons"
244
+ "Category Item Background Color","Hintergrundfarbe des Kategorieartikels"
245
+ "Cc:","Cc:"
246
+ "Chairs","Stühle"
247
+ "Change Orientation","Ausrichtung ändern"
248
+ "Change Password","Passwort ändern"
249
+ "Changes have been saved to theme.","Änderungen zum Thema wurden gespeichert."
250
+ "Check","Check"
251
+ "Check Gift Card","Check Gift Card"
252
+ "Check Gift Card Promo Redeemed","Check Gift Card Promo Redeemed"
253
+ "Checking Gift Card %@","Checking Gift Card %@"
254
+ "Checkout","Checkout"
255
+ "Checkout Page Registration","Checkout Page Registration"
256
+ "Checkout as Guest","Checkout as Guest"
257
+ "Checkout as Guest or Register","Checkout as Guest or Register"
258
+ "Checkout has been initialized.","Zahlungsvorgang wurde eingeleitet."
259
+ "Checkout initialization...","Checkout initialization..."
260
+ "Checkout initialized!","Checkout initialized!"
261
+ "Choose Store View","Choose Store View"
262
+ "Choose amount","Choose amount"
263
+ "Choose file","Choose file"
264
+ "City","Stadt"
265
+ "Clear","Clear"
266
+ "Close","Close"
267
+ "Color Themes","Farbschemata"
268
+ "Colors","Farben"
269
+ "Commiting updates...","Commiting updates..."
270
+ "Company","Unternehmen"
271
+ "Completed","Fertiggestellt"
272
+ "Configuration data have been saved","Configuration data have been saved"
273
+ "Configure Cart Item","Configure Cart Item"
274
+ "Confirm New Password","Neues Passwort bestätigen"
275
+ "Confirm Password","Passwort bestätigen"
276
+ "Connecting","Connecting"
277
+ "Connection Error\nWe\'re sorry. The app is experiencing connection problems. The app requires a network connection to operate.","Connection Error\nWe\'re sorry. The app is experiencing connection problems. The app requires a network connection to operate."
278
+ "Contact Email","Kontakt-E-Mail-Adresse"
279
+ "Contact Information","Kontaktinformationen"
280
+ "ContactsAreEmpty","ContactsAreEmpty"
281
+ "Container is not defined.","Der Container ist nicht definiert."
282
+ "Content","Inhalt"
283
+ "Continue","Continue"
284
+ "Copyright","Copyright"
285
+ "Copyright Page Logo","Logo auf der Copyright-Seite"
286
+ "Copyright Page Logo (iPhone 4 retina)","Copyright Page Logo (iPhone 4 retina)"
287
+ "Copyright Page Logo <br />(iPhone 4 retina)","Logo auf der Copyright-Seite<br/>(iPhone 4 Retina)"
288
+ "Copyright: Magento (c) 2010","Copyright: Magento (c) 2010"
289
+ "Countries","Countries"
290
+ "Countries Payment Applicable From","Länder Woher Zahlung Möglich"
291
+ "Country","Land"
292
+ "Country options don\'t recognized for ""%s"".","Länderoptionen nicht erkannt für ""%s""."
293
+ "Coupon code %s is not valid.","Couponcode %s ist nicht gültig."
294
+ "Coupon code %s was applied.","Couponcode %s wurde hinzugefügt."
295
+ "Coupon code is empty.","Gutscheincode ist leer."
296
+ "Coupon code was canceled.","Gutscheincode wurde annuliert."
297
+ "Create Account","Create Account"
298
+ "Create an Account","Create an Account"
299
+ "Creating a Template is allowed only for applications which have device type iPhone.","Das Erstellen einer Vorlage ist nur für Anwendungen mit dem Gerätetyp iPhone erlaubt."
300
+ "Credit Card","Kreditkarte"
301
+ "Credit Card %s","Kreditkarten"
302
+ "Credit Card Number","Kreditkartennummer"
303
+ "Credit Card Type","Kreditkartentyp"
304
+ "Credit card number does not match credit card type.","Kreditkartennummer entspricht nicht dem Kreditkartentyp."
305
+ "Cross Sells","Cross Sells"
306
+ "Current Balance: %s","Aktuelles Saldo: %s"
307
+ "Current Password","Derzeitiges Passwort"
308
+ "Currently, PayPal MEP is not available for the Android application","Im Augenblick ist PayPal MEP nicht für die Android-Anwendung verfügbar"
309
+ "Currently, the system does not support the viewing of the order detail.","Currently, the system does not support the viewing of the order detail."
310
+ "Custom App Icon","Benutzerspezifisches App-Symbol"
311
+ "Custom App Icon (iPhone 4 retina)","Custom App Icon (iPhone 4 retina)"
312
+ "Custom App Icon <br />(iPhone 4 retina)","Benutzerspezifisches App-Symbol <br />(iPhone 4 retina)"
313
+ "Custom Colors","Benutzerdefinierte Farben"
314
+ "Custom amount","Custom amount"
315
+ "Customer","Customer"
316
+ "Customer Name","Customer Name"
317
+ "Customer authentication problem.","Problem bei der Benutzerauthentifizierung."
318
+ "Customer balance available in enterprise version of Magento only.","Das Kundensaldo ist nur in der Enterprise-Version von Magento verfügbar."
319
+ "Customer balance is disabled for current store","Das Kundensaldo ist für den aktuellen Shop deaktiviert."
320
+ "Customer email not specified.","Keine E-Mail-Adresse des Benutzers festgelegt."
321
+ "Customer logout problem.","Abmeldeproblem des Benutzers."
322
+ "Customer not logged in.","Benutzer nicht angemeldet."
323
+ "Customers","Customers"
324
+ "DD","TT"
325
+ "Date","Datum"
326
+ "Date Created","Erstellungsdatum"
327
+ "Date Submitted","Abschickdatum"
328
+ "Date Updated","Aktualisierungsdatum"
329
+ "Date:","Date:"
330
+ "Day","Tag"
331
+ "Deeper Messaging and Engagement with Rich Push.","Tieferes Nachrichten-Schreiben und Engagement mit Rich Push."
332
+ "Default Billing Address","Standardrechnungsadresse"
333
+ "Default Shipping Address","Standardlieferungsadresse"
334
+ "Default Theme","Standardthema"
335
+ "Default themes are missed.","Default themes are missed."
336
+ "Delete","Löschen"
337
+ "Delete Action","Delete Action"
338
+ "Delete theme","Theme entfernen"
339
+ "Deleted","Gelöscht"
340
+ "Description","Beschreibung"
341
+ "Description that appears in Android Market. %s chars maximum. ","Beschreibung, die im Android Market erscheint. %s Zeichen-Maximum."
342
+ "Description that appears in the iTunes App Store. %s chars maximum. ","Beschreibung, wie sie im iTUnes App Store erscheint. Maximal %s Zeichen."
343
+ "Deselect All","Alle abwählen"
344
+ "Design","Design"
345
+ "Device","Gerät"
346
+ "Device Information","Geräteangaben"
347
+ "Device Type","Geräteart"
348
+ "Device doesn\'t recognized","Device doesn\'t recognized"
349
+ "Device doesn\'t recognized. Unable to load a template.","Gerät wird nicht erkannt. Vorlage kann nicht geladen werden."
350
+ "Device doesn\'t recognized: ""%s"". Unable to load a helper.","Gerät wird nicht erkannt: ""%s"". Hilfe kann nicht geladen werden."
351
+ "Device doesn\'t recognized: ""%s"". Unable to load preview model.","Gerät wird nicht erkannt: ""%s"". Vorschaumodell kann nicht geladen werden."
352
+ "Device type doesn\'t recognized.","Device type doesn\'t recognized."
353
+ "Discount code is empty","Discount code is empty"
354
+ "Discount:","Discount:"
355
+ "Done","Done"
356
+ "Downloadable Products Updated","Downloadable Products Updated"
357
+ "Downloads limit:","Downloads limit:"
358
+ "E-mail","E-mail"
359
+ "Edit","Bearbeiten"
360
+ "Edit Action","Edit Action"
361
+ "Edit Address","Edit Address"
362
+ "Edit AirMail Message","AirMail-Nachricht bearbeiten."
363
+ "Edit AirMail Message Queue #%s","AirMail-Nachrichtschlange #%s bearbeiten."
364
+ "Edit App ""%s""","App %s bearbeiten"
365
+ "Edit Filter","Filter bearbeiten"
366
+ "Edit Image","Edit Image"
367
+ "Edit Mail List","Edit Mail List"
368
+ "Edit Template ""%s""","Vorlage ""%s"" bearbeiten"
369
+ "Edit filter","Edit filter"
370
+ "Edit note","Edit note"
371
+ "Either remote URL or application code was not set. Please make sure you filled all the values and try again.","Either remote URL or application code was not set. Please make sure you filled all the values and try again."
372
+ "Element with id %s already exists","Element mit ID %s ist bereits vorhanden"
373
+ "Email","E-Mail"
374
+ "Email Address","E-Mail-Adresse"
375
+ "Email address you provided is not valid. Please provide a valid one.","Email address you provided is not valid. Please provide a valid one."
376
+ "Email is not correct","Email is not correct"
377
+ "Email is not specified","Email is not specified"
378
+ "Enable Admin Application","Enable Admin Application"
379
+ "Enable AirMail Message Push notification","AirMail Browser-Nachrichten aktivieren"
380
+ "Enable Facebook","Facebook aktivieren"
381
+ "Enable Flurry Analytics","Flurry Analytics aktivieren"
382
+ "Enable Flurry Analytics for the merchant.","Flurry Analytics aktivieren für Händler"
383
+ "Enable LinkedIn","LinkedIn aktivieren"
384
+ "Enable Standard Checkout","Übliche Zahlungsweise aktivieren"
385
+ "Enable Twitter","Twitter aktivieren"
386
+ "Enter Name","Enter Name"
387
+ "Enter discount code first.","Enter discount code first."
388
+ "Enter discount code if any","Enter discount code if any"
389
+ "Enter e-mail","Enter e-mail"
390
+ "Enter giftcard promo code here","Enter giftcard promo code here"
391
+ "Enter text","Enter text"
392
+ "Enter the gift card code","Enter the gift card code"
393
+ "Error","Error"
394
+ "Error Loading Configuration Format","Error Loading Configuration Format"
395
+ "Error during shortening url","Error during shortening url"
396
+ "Error message text is missed.","Error message text is missed."
397
+ "Error while processing file ""%s"".","Fehler beim Verarbeiten von Datei ""%s""."
398
+ "Error while reading data from Payment Bridge. Please, try again.","Fehler beim Einlesen der Daten von Payment Bridge. Bitte versuchen sie es später noch einmal."
399
+ "Error while reading remote data","Error while reading remote data"
400
+ "Error while uploading file ""%s"".","Fehler beim Laden der Datei ""%s""."
401
+ "Error while uploading file ""%s"". Disallowed file type. Only ""jpg"", ""jpeg"", ""gif"", ""png"" are allowed.","Beim Upload der Datei ""%s"" ist ein Fehler aufgetreten. Unerlaubter Dateityp. Nur ""jpg"", ""jpeg"", ""gif"", ""png"" sind erlaubt."
402
+ "Error.","Fehler."
403
+ "Excl. Tax","Excl. Tax"
404
+ "Expiration Date - Month","Gültig bis - Monat"
405
+ "Expiration Date - Year","Gültig bis - Jahr"
406
+ "Expires: %s","Gültig bis: %s"
407
+ "Extend the life of your app with Urban Airship Push Notifications.","Verlängern Sie das Leben Ihrer App mit den Push-Benachrichtigungen von Urban Airship."
408
+ "Extensions","Erweiterungen"
409
+ "FILTERS APPLIED","FILTER ANGEWENDET"
410
+ "Facebook","Facebook"
411
+ "Facebook API","Facbook API"
412
+ "Facebook Application ID","Facebook Application ID"
413
+ "Facebook post failed...","Facebook post failed..."
414
+ "Fax","Fax"
415
+ "File can\'t be uploaded.","Datei kann nicht hochgeladen werden."
416
+ "File doesn\'t exist ""%s"".","Datei existiert nicht ""%s""."
417
+ "Filter","Filter"
418
+ "Filters","Filters"
419
+ "First Name","Vorname"
420
+ "Fixed amounts","Fixed amounts"
421
+ "Flurry API Code","Flurry API Code"
422
+ "Flurry Analytics","Flurry Analytics"
423
+ "Flurry Analytics Site","Flurry Analytics Seite"
424
+ "Fonts","Schriftarten"
425
+ "Forgot Password","Forgot Password"
426
+ "Forgot Password?","Forgot Password?"
427
+ "Forgot your password?","Forgot your password?"
428
+ "Form","Form"
429
+ "Free","Kostenlos"
430
+ "From","From"
431
+ "From Excl. Tax","From Excl. Tax"
432
+ "From Incl. Tax","From Incl. Tax"
433
+ "From excl. tax","From excl. tax"
434
+ "From incl. tax","From incl. tax"
435
+ "Full Description","Full Description"
436
+ "Funk Leaf","Funk Leaf"
437
+ "Gallery","Gallery"
438
+ "General","Allgemein"
439
+ "Generate Offline Catalog","Generate Offline Catalog"
440
+ "Get Content from CMS Page","Holen sie sich Inhalte von der CMS-Seite."
441
+ "Gift Card ""%s"" was added.","Geschenkgutschein ""%s"" wurde hinzugefügt."
442
+ "Gift Card ""%s"" was redeemed.","Geschenkgutschein ""%s"" wurde eingelöst."
443
+ "Gift Card ""%s"" was removed.","Geschenkgutschein ""%s"" wurde entfernt."
444
+ "Gift Card (%s)","Geschenkgutschein (%s)"
445
+ "Gift Card amount applied to order: %s","Die Summe des Geschenkgutscheins wird auf die Bestellung angewandt: %s"
446
+ "Gift Card code is empty.","Der Geschenkgutschein-Code ist leer."
447
+ "Gift Card: %s","Geschenkgutschein: %s"
448
+ "Gift card account available in enterprise version of Magento only.","Das Geschenkgutschein-Konto ist nur in der Enterprise-Version von Magento verfügbar."
449
+ "Giftcard promo code","Giftcard promo code"
450
+ "Grand Total","Grand Total"
451
+ "Grand Total (Excl. Tax)","Endsumme (ohne Mwst.)"
452
+ "Grand Total (Incl. Tax)","Endsumme (mit Mwst.)"
453
+ "Guest","Gast"
454
+ "Header Background Color","Hintergrundfarbe der Kopfzeile"
455
+ "Header Font Color","Schriftfarbe der Kopfzeile"
456
+ "High Resolution Application Icon","Hochauflösendes Applikations-Icon"
457
+ "Home","Startseite"
458
+ "Hot Red","Knallrot"
459
+ "How do you rate this product?","Wie bewerten Sie dieses Produkt?"
460
+ "How to incorporate Urban Airship within your application:","Wie Sie Urban Airship in Ihre Anwendung einbinden:"
461
+ "I Agree","I Agree"
462
+ "I agree to the Terms and Conditions","I agree to the Terms and Conditions"
463
+ "ID","ID"
464
+ "Icon that will appear on the user\'s device after they download your app.","Icon that will appear on the user\'s device after they download your app."
465
+ "Icon that will appear on the user\'s device after they download your app. Recommended size: 48px x 48px.","Icon, das nach dem Download Ihrer App auf dem Gerät des Benutzers erscheinen wird. Empfohlene Größe: 48px x 48px."
466
+ "Icon that will appear on the user\'s device after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple).","Icon that will appear on the user\'s device after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple)."
467
+ "Icon that will appear on the user\'s device after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple). Recommended size: 72px x 72px.","Das Icon wird auf dem Gerät des Nutzers erscheinen, nachdem sie die App heruntergeladen haben. Sie müssen keinen Verlauf oder runde Ecken einfügen (dies wird automatisch von Apple gemacht). Empfohlene Größe: 72px x 72px."
468
+ "Icon that will appear on the user\'s phone after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple).","Icon that will appear on the user\'s phone after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple)."
469
+ "Icon that will appear on the user\'s phone after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple).","Icon that will appear on the user\'s phone after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple)."
470
+ "Icon that will appear on the user\'s phone after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple). Recommended size: 114px x 114px.","Icon, das nach dem Download Ihrer App auf dem Handy des Benutzers erscheinen wird. Sie brauchen keinen Farbverlauf oder weiche Kanten anwenden (dies wird automatisch von Apple erledigt). Empfohlene Größe: 114px x 114px."
471
+ "Icon that will appear on the user’s phone after they download your app. You do not need to apply a gradient or soft edges (this is done automatically by Apple). Recommended size: 57px x 57px at 72 dpi.","Das Icon wird auf dem Gerät des Nutzers erscheinen, nachdem die App heruntergeladen wurde. Sie müssen keinen Verlauf oder runde Ecken einfügen (dies wird automatisch von Apple gemacht). Empfohlene Größe: 57px x 57px bei 72 dpi."
472
+ "Icons","Icons"
473
+ "If leave this field empty, the message will be sent immediately","Wenn dieses Feld frei bleibt, wird die Nachricht sofort gesendet."
474
+ "If you want to disable the cache on the application side, leave the field empty. Warning! When disabling cache, the application will take time to load each page.","Wenn Sie den Cache auf Seiten der Applikation deaktivieren möchten, müssen Sie dieses Feld frei lassen. Vorsicht! Wenn Sie den Cache deaktivieren, benötigt die Applikation mehr Zeit, um jede Seite zu laden."
475
+ "Image %s is required.","Image %s is required."
476
+ "Image action has been saved.","Image action has been saved."
477
+ "Image does not exist. Please reload this page.","Image does not exist. Please reload this page."
478
+ "Image file was not found.","Bilddatei wurde nicht gefunden."
479
+ "Image has been deleted.","Image has been deleted."
480
+ "Image id is required.","Image id is required."
481
+ "Image limits don\'t recognized for ""%s"" image type","Image limits don\'t recognized for ""%s"" image type"
482
+ "Image that appears on first screen while your app is loading.","Image that appears on first screen while your app is loading."
483
+ "Image that appears on first screen while your app is loading. Required size: 1024px x 768px.","Bild, das zuerst auf dem Bildschirm erscheint, wenn die App lädt. Benötigte Größe: 1024px x 768px."
484
+ "Image that appears on first screen while your app is loading. Required size: 320px x 455px.","Bild, das zuerst auf dem Bildschirm erscheint, wenn die App lädt. Benötigte Größe: 320px x 455px."
485
+ "Image that appears on first screen while your app is loading. Required size: 320px x 460px.","Bild, das zuerst auf dem Bildschirm erscheint, wenn die App lädt. Benötigte Größe: 320px x 460px."
486
+ "Image that appears on first screen while your app is loading. Required size: 640px x 920px.","Bild, das zuerst auf dem Bildschirm erscheint, wenn die App lädt. Benötigte Größe: 640px x 920px."
487
+ "Image that appears on first screen while your app is loading. Required size: 768px x 1024px.","Bild, das zuerst auf dem Bildschirm erscheint, wenn die App lädt. Benötigte Größe: 768px x 1024px."
488
+ "Image type doesn\'t recognized: ""%s"".","Image type doesn\'t recognized: ""%s""."
489
+ "Image type is required.","Image type is required."
490
+ "Images","Bilder"
491
+ "Images order has been updated.","Images order has been updated."
492
+ "In Queue","In der Warteschlange"
493
+ "In Stock","Vorrätig"
494
+ "In addition, click here to review Urban Airship\'s Terms of Service: <a href=""%s"" target=""_blank"">click here</a>.","Klicken Sie auch hier, um Nutzungsbedingungen von Urban Airship zu sehen: <a href=""%s"" target=""_blank"">click here</a>."
495
+ "In order to resubmit your app, you need to first purchase a <a href=""%s"" target=""_blank"">%s</a> from MagentoCommerce","Um Ihre App erneut senden zu können, müssen Sie zunächst einen <a href=""%s"" target=""_blank"">%s</a> von MagentoCommerce kaufen."
496
+ "In order to submit your app, you need to first purchase a <a href=""%s"" target=""_blank"">%s</a> from MagentoCommerce","Um Ihre App einreichen zu können, müssen Sie zunächst einen <a href=""%s"" target=""_blank"">%s</a> von MagentoCommerce kaufen."
497
+ "Inactive Tabs","Inaktive Tabs"
498
+ "Incl. Tax","Incl. Tax"
499
+ "Incl. tax","Incl. tax"
500
+ "Initialization PayPal ...","Initialization PayPal ..."
501
+ "Initialization of the PayPal checkout failed!","Initialization of the PayPal checkout failed!"
502
+ "Invalid XML.","Ungültiges XML."
503
+ "Invalid current password.","Ungültiges aktuelles Passwort."
504
+ "Invalid customer data.","Ungültige Kundendaten."
505
+ "Invalid data.","Ungültige Daten."
506
+ "Invalid email address.","Ungültige E-Mail-Adresse."
507
+ "Invalid item or wishlist.","Ungültige(r) Artikel oder Wunschzettel."
508
+ "Invalid login or password.","Ungültiger Login oder ungültiges Passwort"
509
+ "Invalid shipping method.","Ungültige Versandart."
510
+ "Issue Number","Ausstellnummer"
511
+ "It\'s not allowed to delete submitted application.","Das Löschen einer eingereichten Applikation ist nicht möglich."
512
+ "Item","Item"
513
+ "Item Options","Item Options"
514
+ "Item has been added to cart.","Artikel wurde zum Einkaufswagen hinzugefügt."
515
+ "Item has been deleted from cart.","Artikel wurde aus dem Einkaufswagen gelöscht."
516
+ "Item has been removed from wishlist.","Artikel wurde vom Wunschzettel gelöscht."
517
+ "Items","Items"
518
+ "Items were updated. But can\'t update wishlist.","Artikel aktualisiert. Wunschzettel konnte jedoch nicht aktualisiert werden."
519
+ "Keep your image size below %s KB for optimal performance.","Keep your image size below %s KB for optimal performance."
520
+ "Key","Schlüssel"
521
+ "Keywords","Schlüsselwörter"
522
+ "Label","Label"
523
+ "Landscape app Background","Landscape app Background"
524
+ "Landscape banners on Home Screen","Landscape banners on Home Screen"
525
+ "Large iTunes Icon","Großes iTunes-Icon"
526
+ "Large icon that appears in the iTunes App Store. You do not need to apply a gradient or soft edges (this is done automatically by Apple).","Large icon that appears in the iTunes App Store. You do not need to apply a gradient or soft edges (this is done automatically by Apple)."
527
+ "Large icon that appears in the iTunes App Store. You do not need to apply a gradient or soft edges (this is done automatically by Apple). Required size: 512px x 512px.","Großes Icon, das im iTunes App-Store erscheint. Sie müssen keinen Verlauf oder runde Ecken einfügen (dies wird automatisch von Apple gemacht). Benötigte Größe: 512px x 512px."
528
+ "Last 5 Orders","Last 5 Orders"
529
+ "Last 5 Search Terms","Last 5 Search Terms"
530
+ "Last Name","Letzter Name"
531
+ "Last update: %@","Last update: %@"
532
+ "Lifetime Sales","Lifetime Sales"
533
+ "LindedIn","LindedIn"
534
+ "Link:","Link:"
535
+ "LinkedIn","LinkedIn"
536
+ "LinkedIn API","LinkedIn-API"
537
+ "LinkedIn API Key","LinkedIn-API-Schlüssel"
538
+ "LinkedIn Authorization","LinkedIn Authorization"
539
+ "LinkedIn Autorization","LinkedIn Autorization"
540
+ "LinkedIn Secret Key","Geheimschlüssel für LinkedIn"
541
+ "Linkedin post failed...","Linkedin post failed..."
542
+ "List of downloadable products is empty","List of downloadable products is empty"
543
+ "Load more items","Load more items"
544
+ "Loader Splash Screen","Ladeprogramm für Splash Screen"
545
+ "Loader Splash Screen (iPhone 4 retina)","Loader Splash Screen (iPhone 4 retina)"
546
+ "Loader Splash Screen (landscape mode)","Loader Splash Screen (landscape mode)"
547
+ "Loader Splash Screen (portrait mode)","Loader Splash Screen (portrait mode)"
548
+ "Loader Splash Screen <br />(iPhone 4 retina)","Ladeprogramm für Splash Screen <br />(iPhone 4 Retina Display)"
549
+ "Loader Splash Screen <br />(landscape mode)","Ladeprogramm für Splash Screen <br />(Querformat)"
550
+ "Loader Splash Screen <br />(portrait mode)","Ladeprogramm für Splash Screen <br />(Hochformat)"
551
+ "Loading %@...","Loading %@..."
552
+ "Loading Account Form...","Loading Account Form..."
553
+ "Loading Address Book...","Loading Address Book..."
554
+ "Loading Address Form...","Loading Address Form..."
555
+ "Loading CMS page ...","Loading CMS page ..."
556
+ "Loading Cart...","Loading Cart..."
557
+ "Loading Gallery...","Loading Gallery..."
558
+ "Loading Login Form...","Loading Login Form..."
559
+ "Loading My Downloadable Products...","Loading My Downloadable Products..."
560
+ "Loading Order Details","Loading Order Details"
561
+ "Loading Orders List...","Loading Orders List..."
562
+ "Loading Preview...","Lade Vorschau..."
563
+ "Loading Product Options...","Loading Product Options..."
564
+ "Loading Products...","Loading Products..."
565
+ "Loading Registration Form...","Loading Registration Form..."
566
+ "Loading Restore Password Form...","Loading Restore Password Form..."
567
+ "Loading Store Credit...","Loading Store Credit..."
568
+ "Loading WishList...","Loading WishList..."
569
+ "Loading Write Review Form...","Loading Write Review Form..."
570
+ "Loading category ...","Loading category ..."
571
+ "Loading more items...","Loading more items..."
572
+ "Loading product ...","Loading product ..."
573
+ "Loading shipping methods ...","Loading shipping methods ..."
574
+ "Loading...","Loading..."
575
+ "Locations","Standorte"
576
+ "Log In","Login"
577
+ "Log Out","Log Out"
578
+ "Log in to Admin Panel","Log in to Admin Panel"
579
+ "Log into Account","Log into Account"
580
+ "Log into your account","Log into your account"
581
+ "Log out Account","Log out Account"
582
+ "LogInMessageTitle","LogInMessageTitle"
583
+ "Login and password are required.","Login und Passwort werden benötigt."
584
+ "Logo in Header","Logo in der Kopfzeile"
585
+ "Logo in Header image missing.","Logo in der Kopfzeile fehlt."
586
+ "Logout complete.","Logout abgeschlossen."
587
+ "M.I.","A.Z.V."
588
+ "MEP is PayPal\'s native checkout experience for the iPhone. You can choose to use MEP alongside standard checkout, or use it as your only checkout method for Magento mobile. PayPal MEP requires a <a href=""%s"">PayPal business account</a>","MEP ist die ursprüngliche PayPal-Kasse für das iPhone. Sie können MEP neben der Standard-Kaufabwicklung, oder als Ihre einzige Bezahlmethode für Magento Mobile verwenden. Für Paypal MEP benötigen Sie ein <a href=""%s"">PayPal-Geschäftskonto</a>"
589
+ "MM","MM"
590
+ "Mailbox title","Titel für das Postfach"
591
+ "Main Tabs","Haupt-Tabs"
592
+ "Make Inactive","Inaktiv machen"
593
+ "Make this app available in the following territories","Die App in den folgenden Gebieten zur Verfügung stellen"
594
+ "Manage Apps","Apps verwalten"
595
+ "Manage Mobile App","Mobile App verwalten"
596
+ "Maximum length is 140","Maximale Länge beträgt 140"
597
+ "Maximum length is 255","Maximale Länge beträgt 255"
598
+ "Maximum size: %s KB.","Maximum size: %s KB."
599
+ "Maximum: %.2f","Maximum: %.2f"
600
+ "Merchant Label","Händlermarke"
601
+ "Merge","Merge"
602
+ "Message","Message"
603
+ "Message Queue","Nachrichten-Warteschlange"
604
+ "Message Settings","Nachrichten-Einstellungen"
605
+ "Message Templates","Nachrichtenvorlagen"
606
+ "Message Title","Nachrichtentitel"
607
+ "Message Type","Nachrichtentyp"
608
+ "Message can be edited when status of the message is ""In Queue"" only.","Die Nachricht kann nur bearbeitet werden, wenn der Status der Nachricht auf ""In der Warteschlange"" steht."
609
+ "Message content","Nachricht Inhalt"
610
+ "Message text is missed.","Message text is missed."
611
+ "Message title","Nachricht Titel"
612
+ "Message too long, please use 140 symbols","Message too long, please use 140 symbols"
613
+ "Message type doesn\'t recognized","Message type doesn\'t recognized"
614
+ "Minimize","Minimize"
615
+ "Minimum %@, maximum %@","Minimum %@, maximum %@"
616
+ "Minimum: %.2f","Minimum: %.2f"
617
+ "Mobile","Mobil"
618
+ "Mobile Express Checkout has been canceled.","Der Mobile Express Bezahlvorgang wurde abgebrochen."
619
+ "Mobile Express Checkout processed successfully.","Der Mobile Express-Bezahlvorgang wurde erfolgreich bearbeitet."
620
+ "Month","Monat"
621
+ "More","Mehr"
622
+ "More Info","Weitere Informationen"
623
+ "More Tabs","Mehr Tabs"
624
+ "Most Viewed Products","Most Viewed Products"
625
+ "My Account","My Account"
626
+ "My Downloadable Products","My Downloadable Products"
627
+ "My Orders","My Orders"
628
+ "My Wishlist","My Wishlist"
629
+ "Name","Name"
630
+ "Name on Card","Name des Inhabers"
631
+ "Name that appears beneath your app when users install it to their device. We recommend choosing a name that is 10-12 characters and that your customers will recognize. %s chars max.","Name, der unter Ihrer App angezeigt werden, wenn der Anwender diese auf sein Gerät installiert. Wir empfehlen, einen 10-12 stelligen Namen zu wählen, den Ihre Kunden wiedererkennen. Max. %s Zeichen."
632
+ "New AirMail Message","Neue AirMail Nachricht"
633
+ "New AirMail Message Queue","Neue AirMail Nachricht in Warteschlange"
634
+ "New App","Neue App"
635
+ "New Customers","New Customers"
636
+ "New Password","Neues Passwort"
637
+ "New Template","Neue Vorlage"
638
+ "New to Our Store?","New to Our Store?"
639
+ "Nickname","Nickname"
640
+ "No","No"
641
+ "No Payment Information Required","Keine Zahlungsinformation notwendig"
642
+ "No Ratings","No Ratings"
643
+ "No internet connection. Retry later ...","No internet connection. Retry later ..."
644
+ "No items were specifed to update.","Es wurden keine zu aktualisierenden Elemente angegeben."
645
+ "No items were updated.","Es wurden keine Elemente aktualisiert."
646
+ "No product selected.","Es wurde kein Produkt ausgewählt."
647
+ "No products found. Please retry with other term","No products found. Please retry with other term"
648
+ "No shipping method required.","Keine Versandart erforderlich."
649
+ "No such file ""%s"".","Datei ""%s"" existiert nicht."
650
+ "Not Submitted","Nicht abgesendet"
651
+ "Note: Image size affects the performance of your app.","Note: Image size affects the performance of your app."
652
+ "Notice","Hinweis"
653
+ "Number of Orders","Number of Orders"
654
+ "Number of Uses","Number of Uses"
655
+ "OK","OK"
656
+ "OR, Pay with Standard Checkout","OR, Pay with Standard Checkout"
657
+ "Offline Catalog","Offline Catalog"
658
+ "Offline cart stored on server","Offline cart stored on server"
659
+ "Offline catalog export complete.","Offline catalog export complete."
660
+ "Offline catalog export failed.","Offline catalog export failed."
661
+ "One or more keywords that describe your app. Keywords are matched to users\' searches in the App Store and help return accurate search results. Separate multiple keywords with commas. 100 chars is maximum.","Ein oder mehrere Keywords, die Ihre App beschreiben. Keyword werden mit den Suchanfragen der Anwender im App Store verglichen und helfen dabei, genauere Suchergebnisse zu erzielen. Trennen Sie die einzelnen Keywords durch Kommata. Max. 100 Zeichen."
662
+ "Onepage checkout is disabled.","""Checkout-Übersicht auf einer Seite"" ist deaktiviert."
663
+ "Only custom theme can be deleted","Nur benutzerdefinierte Designs können gelöscht werden."
664
+ "Only default theme can be reset","Nur Standard-Theme kann zurückgesetzt werden"
665
+ "Only free apps are allowed in this version.","In dieser Version sind nur kostenlose Apps zulässig."
666
+ "Only registered users can write reviews. Please, log in or register.","Nur registrierte Anwender können Bewertungen verfassen. Bitte melden Sie sich an oder registrieren Sie sich."
667
+ "Open","Open"
668
+ "Options","Options"
669
+ "Options menu items","Optionsmenü-Elemente"
670
+ "Order","Order"
671
+ "Order #","Order #"
672
+ "Order #%s - %s","Bestell-Nr.%s - %s"
673
+ "Order Date: %s","Bestelldatum: %s"
674
+ "Order Details Updated","Order Details Updated"
675
+ "Order ID","Order ID"
676
+ "Order ID:","Order ID:"
677
+ "Order Info","Order Info"
678
+ "Order List Updated","Order List Updated"
679
+ "Order Number","Order Number"
680
+ "Order Review","Order Review"
681
+ "Order canceled","Order canceled"
682
+ "Order failed","Order failed"
683
+ "Order id is not specified.","Bestellungs-ID wurde nicht angegeben."
684
+ "Order is not available.","Die Bestellung ist nicht verfügbar."
685
+ "Ordered","Bestellt"
686
+ "Ordered Items","Ordered Items"
687
+ "Orders","Orders"
688
+ "Other amount","Other amount"
689
+ "Out of Stock","Out of Stock"
690
+ "Output format is not specified. Please, specify ""format"" key in constructor, or set it using setFormat().","Ausgabe-Format ist nicht angegeben. Bitte geben Sie den ""Format""-Schlüssel im Konstruktor an, oder legen Sie es mit setFormat() fest."
691
+ "Overall Activity","Overall Activity"
692
+ "POST data is not valid.","POST-Daten sind nicht gültig."
693
+ "Pages","Seiten"
694
+ "Password","Passwort"
695
+ "Password fields cannot be empty.","Passwortfelder dürfen nicht leer sein."
696
+ "Password is not specified","Password is not specified"
697
+ "Password:","Password:"
698
+ "PayPal","PayPal"
699
+ "PayPal Checkout","PayPal Checkout"
700
+ "PayPal MECL is the mobile version of PayPal\'s Express Checkout service. You can choose to use MECL alongside standard checkout, or use it as your only checkout method for Magento Mobile.","PayPal MECL ist die mobile Version von PayPal Express Checkout-Service. Sie können MECL neben der Standard-Kaufabwicklung oder als einzige Bezahlmethode für Magento Mobile verwenden."
701
+ "PayPal MEP","PayPal MEP"
702
+ "PayPal Mobile Embedded Payment (MEP)","PayPal Mobile Embedded Payment (MEP)"
703
+ "PayPal Mobile Express Checkout","PayPal Mobile Express Checkout"
704
+ "PayPal Mobile Express Checkout Library (MECL)","PayPal Mobile Express Checkout Library (MECL)"
705
+ "PayPal Mobile Express Checkout Token does not exist.","Der PayPal Mobile Express Checkout Token existert nicht."
706
+ "Payer Email: %s","Zahler E-Mail: %s"
707
+ "Payment Applicable From","Zahlung Möglich Von"
708
+ "Payment Bridge module unavailable.","Das Modul zur Zahlungsüberbrückung ist nicht verfügbar."
709
+ "Payment Information","Payment Information"
710
+ "Payment Method","Zahlungsart"
711
+ "Payment Method has been set.","Bezahlungsmethode wurde festgelegt."
712
+ "Payment Methods","Bezahlungsmethoden"
713
+ "Payment method","Payment method"
714
+ "Payment method was successfully set.","Bezahlungsmethode wurde erfolgreich festgelegt."
715
+ "Paypal MEP doesn\'t support checkout with any discount.","Paypal MEP unterstützt keine Zahlungsvorgänge mit Rabatten."
716
+ "Place Order","Place Order"
717
+ "Placing order ...","Placing order ..."
718
+ "Please <a href=""%s"" target=""_blank"">click here</a> to see how to setup and retrieve API credentials.","Bitte <a href=""%s"" target=""_blank"">klicken Sie hier</a>, um Ihre API-Zugangsdaten einzurichten und zu erhalten."
719
+ "Please Select Application","Bitte Applikation auswählen"
720
+ "Please Select Device Type","Bitte Gerätetyp auswählen"
721
+ "Please agree to all the terms and conditions before placing the order.","Bitte stimmen Sie den Allgemeinen Geschäftsbedingungen zu, bevor Sie die Bestellung aufgeben."
722
+ "Please create and save an application first.","Bitte erstellen und speichern Sie zunächst eine Anwendung."
723
+ "Please enter ""App Title"".","Bitte geben Sie den ""App-Titel"" ein."
724
+ "Please enter a valid URL. Protocol is required (http://, https:// or ftp://)","Bitte geben Sie eine gültige URL mit dem dazugehörigen Protokoll (http://, https:// oder ftp://) an."
725
+ "Please enter a valid date.","Bitte geben Sie eine gültige Angabe ein."
726
+ "Please enter a valid email address. For example johndoe@domain.com.","Bitte geben Sie eine gültige E-Mail-Adresse ein. Zum Beispiel maxmustermann@domain.de."
727
+ "Please enter at least one email recipient","Please enter at least one email recipient"
728
+ "Please enter issue number or start date for switch/solo card type.","Bitte geben Sie Ihre Ausgabenummer oder das Erstellungsdatum Ihrer EC-/Debitkarte an."
729
+ "Please enter the Activation Key.","Bitte geben Sie den Aktivierungsschlüssel ein."
730
+ "Please enter the Copyright.","Bitte geben Sie den Copyright-Text ein."
731
+ "Please enter the Description.","Bitte geben Sie die Beschreibung ein."
732
+ "Please enter the Price.","Bitte geben Sie den Preis ein."
733
+ "Please enter the Resubmission Key.","Bitte geben Sie den Wiedervorlageschlüssel ein."
734
+ "Please enter the Title.","Bitte geben Sie den Titel ein."
735
+ "Please make sure your passwords match.","Bitte stellen Sie sicher, dass die Passwörter übereinstimmen."
736
+ "Please save application first.","Please save application first."
737
+ "Please select an option.","Bitte wählen Sie eine Option."
738
+ "Please select at least one country.","Bitte wählen Sie mindestens ein Land aus."
739
+ "Please select payment method to cover a quote","Please select payment method to cover a quote"
740
+ "Please set email","Please set email"
741
+ "Please specify payment method","Please specify payment method"
742
+ "Please specify shipping method","Please specify shipping method"
743
+ "Please upload an image for ""App Background (landscape mode)"" field from Design Tab.","Bitte laden Sie ein Bild für das Feld ""App-Hintergrund (Landschaftsmodus)"" im Design-Tab hoch."
744
+ "Please upload an image for ""App Background (portrait mode)"" field from Design Tab.","Bitte laden Sie ein Bild für das Feld ""App-Hintergrund (Porträtmodus)"" im Design-Tab hoch."
745
+ "Please upload an image for ""App Background"" field from Design Tab.","Bitte laden Sie ein Bild für das Feld ""App-Hintergrund"" im Design-Tab hoch."
746
+ "Please upload an image for ""Banner on Home Screen (landscape mode)"" field from Design Tab.","Bitte laden Sie aus dem Design-Tab ein Bild für das Feld ""Banner auf dem Startbildschirm (Landschaftsmodus)"" hoch"
747
+ "Please upload an image for ""Banner on Home Screen (portrait mode)"" field from Design Tab.","Bitte laden Sie aus dem Design-Tab ein Bild für das Feld ""Banner auf dem Startbildschirm (Porträtmodus)"" hoch"
748
+ "Please upload an image for ""Banner on Home Screen"" field from Design Tab.","Bitte laden Sie ein Bild für das Feld ""Banner auf der Startseite"" aus dem Design Tab hoch."
749
+ "Please upload an image for ""Logo in Header"" field from Design Tab.","Bitte laden Sie ein Bild für das Feld ""Logo im Kopffeld"" aus dem Design Tab hoch."
750
+ "Please use letters only (a-z or A-Z) in this field.","Bitte verwenden Sie ausschließlich Buchstaben (a-z oder A-Z) in diesem Feld."
751
+ "Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas.","Bitte verwenden Sie in diesem Feld nur Zahlen. Vermeiden Sie bitte Leerzeichen und andere Zeichen, wie Punkt oder Komma."
752
+ "Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed.","Bitte verwenden Sie nur Buchstaben (a-z oder A-Z) oder Zahlen (0-9) in diesem Feld. Leerzeichen oder andere Zeichen sind nicht erlaubt."
753
+ "Please wait...","Please wait..."
754
+ "Please, specify gift card amount!","Please, specify gift card amount!"
755
+ "Portrait app Background","Portrait app Background"
756
+ "Portrait banners on Home Screen","Portrait banners on Home Screen"
757
+ "Post data is empty.","Post data is empty."
758
+ "Post this product to your wall","Post this product to your wall"
759
+ "Posting to e-mails","Posting to e-mails"
760
+ "Preferred size: %spx x %spx.","Preferred size: %spx x %spx."
761
+ "Prefix","Präfix"
762
+ "Preset Theme","Aktuelles Theme"
763
+ "Preview","Vorschau"
764
+ "Price","Preis"
765
+ "Price Font Color","Preis-Schriftfarbe"
766
+ "Price excluding tax","Price excluding tax"
767
+ "Price including tax","Price including tax"
768
+ "Primary Color","Primärfarbe"
769
+ "Primary Font Color","Primärschriftfarbe"
770
+ "Problem changing or sending password.","Problem beim Ändern oder Senden des Passworts."
771
+ "Proceed to Checkout","Proceed to Checkout"
772
+ "Product","Product"
773
+ "Product Added to Cart","Product Added to Cart"
774
+ "Product Added to Wishlist","Product Added to Wishlist"
775
+ "Product Gallery Updated","Product Gallery Updated"
776
+ "Product Name3 ","Produktname3"
777
+ "Product Name3 1","Produktname3 1"
778
+ "Product Name3 2","Produktname3 2"
779
+ "Product Options Updated","Product Options Updated"
780
+ "Product Removed From Wishlist","Product Removed From Wishlist"
781
+ "Product Reviews Updated","Product Reviews Updated"
782
+ "Product SKU","Product SKU"
783
+ "Product Updated","Product Updated"
784
+ "Product added","Product added"
785
+ "Product is out of stock","Product is out of stock"
786
+ "Product is unavailable.","Produkt nicht verfürbar."
787
+ "Product only available on the website.","Product only available on the website."
788
+ "Product succesfully added to cart","Product succesfully added to cart"
789
+ "Product was not specified.","Produkt wurde nicht angegeben."
790
+ "Product(s) currently out of stock.","Produkt(e) momentan nicht lagernd."
791
+ "Products","Products"
792
+ "Pull Down To Update..","Pull Down To Update.."
793
+ "Purchase Order Number","Bestellungsnummer des Kaufs."
794
+ "Push Notification","Push-Benachrichtigung"
795
+ "Push Notifications allow you to send messages directly to the people who have installed your app on their device. Send messages to your full audience even when your app is closed. Push Notifications are one of the best ways to keep your app active by delivering valuable content directly to your customers. Learn more about Push Notifications - <a href=""%1$s"" target=""_blank"">%1$s</a>","Push-Benachrichtigungen ermöglichen es Ihnen, Nachrichten direkt an die Kunden zu schicken, die Ihre App auf ihrem Gerät installiert haben. Sie können Nachrichten an Ihre gesamte Kundschaft senden, auch wenn die App geschlossen ist. Push-Benachrichtigungen sind eine der besten Möglichkeiten, um Ihre App aktuell zu halten, indem Sie wertvollen Content direkt an Ihre Kunden senden. Erfahren Sie mehr über Push-Benachrichtigungen - <a href=""%1$s"" target=""_blank"">%1$s</a>"
796
+ "Push Title","Push-Titel"
797
+ "Push message","Push-Nachricht"
798
+ "Push title","Push-Titel"
799
+ "Qty","Qty"
800
+ "Qty:","Qty:"
801
+ "Quantity","Quantity"
802
+ "Quantity:","Quantity:"
803
+ "Queue Date","Datum der Schlange"
804
+ "Queue Message","Schlangennachricht"
805
+ "Queue does not exist.","Schlange existiert nicht."
806
+ "Queue is allowed only for applications with enabled Push Notification.","Die Warteschlange ist nur für Anwendungen mit aktivierter Push-Benachrichtigung aktiviert."
807
+ "Quote instance is required.","Quotenexemplar nötig."
808
+ "Quote item is not found.","Quote item is not found."
809
+ "Range param doesn\'t recognized","Range param doesn\'t recognized"
810
+ "Ratings and Reviews","Ratings and Reviews"
811
+ "Read the Terms and Conditions","Read the Terms and Conditions"
812
+ "Recent Activity","Recent Activity"
813
+ "Recipient Information","Empfängerinformation"
814
+ "Recommended size %spx x %spx.","Recommended size %spx x %spx."
815
+ "Recommended size 1024px x 344px. Note: Image size affects the performance of your app.","Empfohlene Größe: 1024 px x 344 px. Beachten Sie bitte, dass die Bildgröße die Performance Ihrer App beeinflusst."
816
+ "Recommended size 1024px x 704px. Note: Image size affects the performance of your app.","Empfohlene Größe: 1024 x 704 Pixel. Hinweis: Die Bildgröße hat Einfluss auf die Leistung ihrer App."
817
+ "Recommended size 320px x 230px. Note: Image size affects the performance of your app. Keep your image size below 50 KB for optimal performance.","Empfohlene Größe: 320 x 230 Pixel. Hinweis: Die Bildgröße hat Einfluss auf die Leistung ihrer App. Für eine optimale Anzeige sollte ihr Bild kleiner als 50 KB sein."
818
+ "Recommended size 320px x 258px. Note: Image size affects the performance of your app. Keep your image size below 50 KB for optimal performance.","Empfohlene Größe: 320 x 258 Pixel. Hinweis: Die Bildgröße hat Einfluss auf die Leistung ihrer App. Für eine optimale Anzeige sollte ihr Bild kleiner als 50 KB sein."
819
+ "Recommended size 320px x 367px. Note: Image size affects the performance of your app. Keep your image size below 75 KB for optimal performance.","Empfohlene Größe: 320 x 367 Pixel. Hinweis: Die Bildgröße hat Einfluss auf die Leistung ihrer App. Für eine optimale Anzeige sollte ihr Bild kleiner als 75 KB sein."
820
+ "Recommended size 35px x 35px.","Empfohlene Größe: 35 x 35 Pixel."
821
+ "Recommended size 768px x 294px. Note: Image size affects the performance of your app.","Empfohlene Größe: 768 x 294 Pixel. Hinweis: Die Bildgröße hat Einfluss auf die Leistung ihrer App."
822
+ "Recommended size 768px x 960px. Note: Image size affects the performance of your app.","Empfohlene Größe: 768 x 960 Pixel. Hinweis: Die Bildgröße hat Einfluss auf die Leistung ihrer App."
823
+ "Recommended size: %spx x %spx at %s dpi.","Recommended size: %spx x %spx at %s dpi."
824
+ "Recommended size: %spx x %spx.","Recommended size: %spx x %spx."
825
+ "Recover","Recover"
826
+ "Redeem","Redeem"
827
+ "Redeeming Gift Card %@","Redeeming Gift Card %@"
828
+ "Redemption functionality is disabled.","Die Rücknahme-Funktionalität ist deaktiviert."
829
+ "Refunded","Zurückerstattet"
830
+ "Regions","Regions"
831
+ "Register","Register"
832
+ "Registering cart ...","Registering cart ..."
833
+ "Registering user ...","Registering user ..."
834
+ "Regular","Regular"
835
+ "Regular and confirmation passwords must be equal","Alter Passwort und Passwortbestätigung müssen identisch sein"
836
+ "Related Product Background Color","Hintergrundfarbe Verwandtes Produkt"
837
+ "Release To Update...","Release To Update..."
838
+ "Relevance","Relevance"
839
+ "Remaining downloads","Remaining downloads"
840
+ "Remove","Remove"
841
+ "Remove Address...","Remove Address..."
842
+ "Removing %@...","Removing %@..."
843
+ "Removing Coupon...","Removing Coupon..."
844
+ "Removing Gift Card...","Removing Gift Card..."
845
+ "Removing Product from WishList...","Removing Product from WishList..."
846
+ "Removing Store Credit...","Removing Store Credit..."
847
+ "Request internal error.","Interner Fehler bei Anfrage."
848
+ "Request param %s is missed","Request param %s is missed"
849
+ "Required size: %spx x %spx.","Required size: %spx x %spx."
850
+ "Reset theme to default","Auf Standard-Theme zurücksetzen"
851
+ "Resubmission Key","Wiedervorlageschlüssel"
852
+ "Resubmit App","App erneut abschicken"
853
+ "Resubmit App failure. %s","Resubmit App failure. %s"
854
+ "Results","Results"
855
+ "Revenue","Revenue"
856
+ "Revert","Revert"
857
+ "Revert Discount","Revert Discount"
858
+ "Review","Überprüfen"
859
+ "Rich Push allows you to create and send engaging experiences by adding HTML and other rich media components to your push notifications. Moving beyond alerts and badge updates, Rich Push takes users into the app while displaying content in a customizable WebKit view. Create branded messages that engage your users with new content and information, all without having to update your app. Learn more about Rich Push - <a href=""%1$s"" target=""_blank"">%1$s</a>","Rich-Push ermöglicht es Ihnen, mit HTML und anderen Rich-Media-Komponenten aufregende Nutzererlebnisse zu erzeugen und diese über Ihre Push-Benachrichtigungen zu versenden. Alerts und Badge-Updates waren erst der Anfang. Rich-Push nimmt die User mit in die App, während es die Inhalte in einer anpassbaren WebKit-Ansicht anzeigt. Erstellen Sie auf Ihre Marke abgestimmte Nachrichten, die Ihre User mit neuen Inhalten und Informationen versorgen, ohne dass sie Ihre App aktualisieren müssen. Erfahren Sie mehr über Rich-Push - <a href=""%1$s"" target=""_blank"">%1$s</a>"
860
+ "SORT BY:","SORTIEREN NACH:"
861
+ "Sample","Sample"
862
+ "Samples","Samples"
863
+ "Save","Speichern"
864
+ "Save As","Speichern als"
865
+ "Save Theme","Theme Speichern"
866
+ "Save and Continue Edit","Speichern und weiter bearbeiten"
867
+ "Save and Submit App","Speichern und abschicken"
868
+ "Save in address book","Im Adressbuch speichern"
869
+ "Saving Address...","Saving Address..."
870
+ "Saving changes ...","Saving changes ..."
871
+ "Saving shipping address ...","Saving shipping address ..."
872
+ "Saving shipping methods ...","Saving shipping methods ..."
873
+ "Screen resolution is not supported","Screen resolution is not supported"
874
+ "Screens:","Bildschirme:"
875
+ "Scroll Background Color","Hintergrundfarbe durchblättern"
876
+ "Search","Suche"
877
+ "Search Term","Search Term"
878
+ "Search Updated","Search Updated"
879
+ "Searching for %@...","Searching for %@..."
880
+ "Secondary Color","Zweitfarbe"
881
+ "Secondary Font Color","Zweitfarbe für Schrift"
882
+ "See all","See all"
883
+ "Select %@","Select %@"
884
+ "Select All","Alle auswählen"
885
+ "Select Chart","Select Chart"
886
+ "Select Links","Select Links"
887
+ "Select Options","Select Options"
888
+ "Select Payment Method","Select Payment Method"
889
+ "Select Range","Select Range"
890
+ "Select a","Select a"
891
+ "Select a Billing Address","Select a Billing Address"
892
+ "Select a Shipping Address","Select a Shipping Address"
893
+ "Select from Address Book","Select from Address Book"
894
+ "Select shipping method","Select shipping method"
895
+ "Selected product is unavailable.","Das ausgewählte Produkt ist nicht verfügbar."
896
+ "Send","Send"
897
+ "Sender Information","Absenderangaben"
898
+ "Sending e-mail failed...","Sending e-mail failed..."
899
+ "Set","Set"
900
+ "Settings","Einstellungen"
901
+ "Shake device to reset the filter","Shake device to reset the filter"
902
+ "Share","Share"
903
+ "Share on LinkedIn","Share on LinkedIn"
904
+ "Share on Twitter","Share on Twitter"
905
+ "Ship method","Ship method"
906
+ "Shipped","Versendet"
907
+ "Shipping","Shipping"
908
+ "Shipping Address","Lieferadresse"
909
+ "Shipping Method","Liefermethode"
910
+ "Shipping address","Shipping address"
911
+ "Shipping address has been set.","Die Versandadresse wurde gespeichert."
912
+ "Shipping method","Shipping method"
913
+ "Shipping method has been set.","Die Versandart wurde gespeichert."
914
+ "Shipping method is required","Es wird eine Versandmethode benötigt"
915
+ "Shipping method successfully updated","Versandart erfolgreich aktualisiert"
916
+ "Shipping to this address is not possible.","Ein Versand an diese Adresse ist nicht möglich."
917
+ "Shop","Shop"
918
+ "Shop All","Shop All"
919
+ "Shop Updated","Shop Updated"
920
+ "Shopping Cart","Shopping Cart"
921
+ "Shopping cart is empty.","Der Einkaufswagen ist leer."
922
+ "Show Password","Show Password"
923
+ "Sign In","Sign In"
924
+ "Signing In...","Signing In..."
925
+ "Signing Out ...","Signing Out ..."
926
+ "Sky Blue","Sky Blue"
927
+ "Social Networking","Social Networking"
928
+ "Some emails were not sent.","Einige Mails wurden nicht gesendet."
929
+ "Sorry, no payment options are available for this order at this time.","Tut uns leid, aber momentan sind einige Zahlungsarten für diese Bestellung nicht verfügbar."
930
+ "Sorry, no quotes are available for this order at this time.","Tut uns leid, aber momentan sind für diese Bestellung keine Kostenvoranschläge verfügbar."
931
+ "Sorry, there are no items in this category.","Sorry, there are no items in this category."
932
+ "Special","Special"
933
+ "Special Excl. Tax","Special Excl. Tax"
934
+ "Special Incl. Tax","Special Incl. Tax"
935
+ "Specific Countries","Bestimmte Länder"
936
+ "Specified address does not exist.","Die eingegebene Anschrift existiert nicht."
937
+ "Specified invalid app code.","Der eingegebene App-Code ist ungültig."
938
+ "Specified invalid data.","Die eingegebenen Daten sind ungültig."
939
+ "Specified item does not exist in wishlist.","Der angegebene Artikel steht nicht auf der Wunschliste."
940
+ "Standard Checkout","Übliche Zahlungsweise"
941
+ "Standard Checkout uses the checkout methods provided by Magento. Only inline payment methods are supported. (e.g PayPal Direct, Authorize.Net, etc.)","Die übliche Zahlungsweise funktioniert nur mit den Zahlungsarten von Magento. Es werden nur Online-Zahlungen akzeptiert (z.B. PayPal Direct, Authorize.Net, etc.)"
942
+ "Start Date","Startdatum"
943
+ "Start Date - Month","Anfangsdatum - Monat"
944
+ "Start Date - Year","Anfangsdatum - Jahr"
945
+ "Starting At","Starting At"
946
+ "Starting At Excl. Tax","Starting At Excl. Tax"
947
+ "Starting At Incl. Tax","Starting At Incl. Tax"
948
+ "Starting at excl. tax","Starting at excl. tax"
949
+ "Starting at incl. tax","Starting at incl. tax"
950
+ "State/Province","Staat/Bezirk"
951
+ "Status","Status"
952
+ "Storage of offline cart on server failed. Please retry later","Storage of offline cart on server failed. Please retry later"
953
+ "Store Credit Info Updated","Store Credit Info Updated"
954
+ "Store Credit payment is not being used in your shopping cart.","Die Guthabenbezahlungen wird in Ihrem Einkaufswagen nicht verwendet."
955
+ "Store View","Ladenansicht"
956
+ "Store credit","Store credit"
957
+ "Store logo that is displayed on copyright page of app.","Store logo that is displayed on copyright page of app."
958
+ "Store logo that is displayed on copyright page of app. Preferred size: 100px x 100px.","Das Ladenzeichen wird auf der Copyright-Seite der App angezeigt. Beste Auflösung: 100 x 100 Pixel."
959
+ "Store logo that is displayed on copyright page of app. Preferred size: 200px x 200px.","Das Ladenloge wird auf der Copyright-Seite der App angezeigt. Beste Auflösung: 200x200 Pixel."
960
+ "Store switcher hasn\'t been defined","Store switcher hasn\'t been defined"
961
+ "Street Address","Anschrift (Straße, Hausnummer, PLZ)"
962
+ "Street Address 2","Anschrift 2"
963
+ "Subject:","Subject:"
964
+ "Submission","Abschicken"
965
+ "Submission Fields","Eingabefelder"
966
+ "Submission History","Bisherige Eingaben"
967
+ "Submit App","App abschicken"
968
+ "Submit App ""%s""","App abschicken ""%s"""
969
+ "Submit App failure. %s","App wurde nicht übermittelt. %s"
970
+ "Submit App failure. Invalid activation key provided","App wurde nicht übermittelt. Ungültiger Aktivierungsschlüssel angegeben."
971
+ "Submit Review","Submit Review"
972
+ "Submitted","Eingereicht"
973
+ "Submitting Review...","Submitting Review..."
974
+ "Subtotal","Subtotal"
975
+ "Subtotal (Excl. Tax)","Zwischensumme (ohne Mwst.)"
976
+ "Subtotal (Incl. Tax)","Zwischensumme (mit Mwst.)"
977
+ "Subtotal Excl. Tax","Subtotal Excl. Tax"
978
+ "Subtotal Incl. Tax","Subtotal Incl. Tax"
979
+ "Subtotal excluding tax","Subtotal excluding tax"
980
+ "Subtotal incl. tax:","Subtotal incl. tax:"
981
+ "Subtotal including tax","Subtotal including tax"
982
+ "Subtotal:","Subtotal:"
983
+ "Success","Success"
984
+ "Successfully posted to Facebook","Successfully posted to Facebook"
985
+ "Successfully posted to Linkedin","Successfully posted to Linkedin"
986
+ "Suffix","Suffix"
987
+ "Summary of Your Review","Übersicht ihrer Bewertung"
988
+ "Swipe a product to reveal more options","Swipe a product to reveal more options"
989
+ "T-Shirts","T-Shirts"
990
+ "Tabs","Registerkarten"
991
+ "Tax","Steuern"
992
+ "Telephone","Telefon"
993
+ "Tell a Friend","Weiterempfehlen"
994
+ "Tell a Friend is disabled.","Weiterempfehlen ist deaktiviert."
995
+ "Tell a Friend link has been sent.","Weiterempfehlen- Link wurde verschickt."
996
+ "Template","Vorlage"
997
+ "Template Content","Inhalt der Vorlage"
998
+ "Template Name","Name der Vorlage"
999
+ "Template does not exist.","Vorlage existiert nicht."
1000
+ "Template for new AirMail Message does not exist.","Vorlage für neue AirMail-Nachricht existiert nicht."
1001
+ "Template has been deleted.","Die Vorlage wurde gelöscht."
1002
+ "Terms And Conditions","Terms And Conditions"
1003
+ "Text length does not satisfy specified max text range.","Textlänge entspricht nicht dem angegebenen maximalen Textbereich."
1004
+ "Text length does not satisfy specified min text range.","Textlänge entspricht nicht dem angegebenen minimalen Textbereich."
1005
+ "Thank you for registering!","Danke für Ihre Registrierung!"
1006
+ "Thank you for your purchase! ","Vielen Dank für Ihren Einkauf!"
1007
+ "The %s field should be filled.","The %s field should be filled."
1008
+ "The Mailbox title will be shown in the More Info tab. To understand more about the title, please <a target=""_blank"" href=""http://www.magentocommerce.com/img/product/mobile/helpers/mail_box_title.png"">click here</a>","Der Titel des Postfachs wird in dem Tab ""Mehr Informationen"" angezeigt. Für mehr Informationen zum Titel, klicken Sie bitte <a target=""_blank"" href=""http://www.magentocommerce.com/img/product/mobile/helpers/mail_box_title.png"">hier</a>."
1009
+ "The application is currently inactive.\nPlease try again later.","The application is currently inactive.\nPlease try again later."
1010
+ "The cart is empty","The cart is empty"
1011
+ "The custom amount value should be higher than 0.","The custom amount value should be higher than 0."
1012
+ "The custom amount value should not be higher than %s.","The custom amount value should not be higher than %s."
1013
+ "The custom amount value should not be lower than %s.","The custom amount value should not be lower than %s."
1014
+ "The following email(s) are either mistyped or have incorrect format. Check them and try again:\n","The following email(s) are either mistyped or have incorrect format. Check them and try again:\n"
1015
+ "The icon that appears in the Android Market.","The icon that appears in the Android Market."
1016
+ "The icon that appears in the Android Market. Recommended size: 512px x 512px. Maximum size: 1024 KB.","Das Icon erscheint im Android Market. Empfohlene Größe: 512px x 512px. Maximale Größe: 1024 KB."
1017
+ "The length of the text in the %s field is too big. Please shorten the text.","The length of the text in the %s field is too big. Please shorten the text."
1018
+ "The max length of the field ""%@"" is %d!","The max length of the field ""%@"" is %d!"
1019
+ "The minimum password length is 6","The minimum password length is 6"
1020
+ "The server responded with invalid data.","The server responded with invalid data."
1021
+ "The shortening service returned status code %d indicating a client side error.","The shortening service returned status code %d indicating a client side error."
1022
+ "The shortening service returned status code %d indicating a server side error.","The shortening service returned status code %d indicating a server side error."
1023
+ "The store credit payment has been removed from shopping cart.","Die Guthabenbezahlung wurde aus Ihrem Einkaufswagen entfernt."
1024
+ "The value is too big!","The value is too big!"
1025
+ "The value should not be greater than %.2f!","The value should not be greater than %.2f!"
1026
+ "The value should not be less than %.2f!","The value should not be less than %.2f!"
1027
+ "Theme configurations are successfully reset.","Themenkonfigurationen wurden erfolgreich zurückgesetzt."
1028
+ "Theme has been created.","Das Design wurde erstellt."
1029
+ "Theme has been delete.","Theme wurde entfernt."
1030
+ "Theme label can\'t be empty","Das Design-Label darf nicht leer sein"
1031
+ "Theme label:","Design-Label:"
1032
+ "Theme name is not set.","Kein Themenname festgelegt."
1033
+ "There are files that were selected but not uploaded yet. After switching to another tab your selections may be lost. Do you wish to continue ?","There are files that were selected but not uploaded yet. After switching to another tab your selections may be lost. Do you wish to continue ?"
1034
+ "There are no items here","There are no items here"
1035
+ "There are no items in your cart","There are no items in your cart"
1036
+ "There is an error in loading an app\'s configuration","There is an error in loading an app\'s configuration"
1037
+ "There is an error in retrieving the data. Please try again later","There is an error in retrieving the data. Please try again later"
1038
+ "There is no addresses for this contact","There is no addresses for this contact"
1039
+ "There is no store credit history!","There is no store credit history!"
1040
+ "There were some problems with the data.","Es sind Probleme mit den Daten aufgetreten."
1041
+ "This email address was not found in our records.","Die E-Mail-Adresse konnte in unseren Aufzeichnungen nicht gefunden werden."
1042
+ "This functionality disabled in offline mode","This functionality disabled in offline mode"
1043
+ "This is a required field.","Dies ist ein Pflichtfeld."
1044
+ "This product has no images.","This product has no images."
1045
+ "Title","Titel"
1046
+ "Title bar","Titelleiste"
1047
+ "To","To"
1048
+ "To Excl. Tax","To Excl. Tax"
1049
+ "To Incl. Tax","To Incl. Tax"
1050
+ "To activate PayPal MEP payment method activate Express checkout first. ","Um die PayPal-MEP-Zahlungsmethode zu aktivieren, müssen Sie zunächst den Express-Zahlungsvorgang aktivieren."
1051
+ "To excl. tax","To excl. tax"
1052
+ "To incl. tax","To incl. tax"
1053
+ "To preview the newly uploaded images, please save your application first.","To preview the newly uploaded images, please save your application first."
1054
+ "To:","To:"
1055
+ "Token has not been set.","Es wurde kein Token festgelegt."
1056
+ "Too many recipients have been set. Max amount of recipients is:","Too many recipients have been set. Max amount of recipients is:"
1057
+ "Top Search Terms","Top Search Terms"
1058
+ "Total","Total"
1059
+ "Total Order Amount","Total Order Amount"
1060
+ "Total incl. Tax: %1$s","Gesamtsumme inkl. Steuern: %1$s"
1061
+ "Total incl. tax","Total incl. tax"
1062
+ "Totals","Totals"
1063
+ "Touch and hold a product to delete from shopping cart","Touch and hold a product to delete from shopping cart"
1064
+ "Touch and hold a product to reveal more options","Touch and hold a product to reveal more options"
1065
+ "Try Again","Try Again"
1066
+ "Twitter","Twitter"
1067
+ "Twitter API","Twitter-API"
1068
+ "Twitter API Key","Twitter-API-Schlüssel"
1069
+ "Twitter Authorization","Twitter Authorization"
1070
+ "Twitter Autorization","Twitter Autorization"
1071
+ "Twitter Secret Key","Twitter-Geheimschlüssel"
1072
+ "Twitter post failed...","Twitter post failed..."
1073
+ "Type","Type"
1074
+ "Type and data is required","Type and data is required"
1075
+ "URL","URL"
1076
+ "Unable to cancel Mobile Express Checkout.","Mobile Express Checkout kann nicht gelöscht werden."
1077
+ "Unable to cancel queue.","Schlange kann nicht abgebrochen werden."
1078
+ "Unable to collect cart totals.","Einkaufswagen-Gesamtmenge kann nicht berechnet werden."
1079
+ "Unable to delete queue.","Schlange kann nicht gelöscht werden."
1080
+ "Unable to find an app to delete.","Es kann keine löschbare App gefunden werden."
1081
+ "Unable to find template to delete.","Es kann keine löschbare Vorlage gefunden werden."
1082
+ "Unable to get shipping methods list.","Liste der Versandarten kann nicht zusammengestellt werden."
1083
+ "Unable to initialize MEP Checkout.","MEP-Checkout kann nicht initialisiert werden."
1084
+ "Unable to initialize PayPal Mobile Express Checkout.","PayPal Mobile Express Checkout kann nicht ausgeführt werden."
1085
+ "Unable to initialize express checkout review.","Die Überprüfuing des Express-Checkouts konnte nicht geladen werden."
1086
+ "Unable to initialize express checkout shipping method list.","Die Liste der Versandmethoden für den Express Checkout konnte nicht geladen werden."
1087
+ "Unable to initialize return action.","Rückkehrvorgang kann nicht ausgeführt werden."
1088
+ "Unable to load addresses.","Adressen können nicht geladen werden."
1089
+ "Unable to load application form.","Antragsformular kann nicht geladen werden."
1090
+ "Unable to load banners.","Unable to load banners."
1091
+ "Unable to load billing address form.","Formular der Rechnungsadresse kann nicht geladen werden."
1092
+ "Unable to load billing address.","Rechnungsadresse kann nicht geladen werden."
1093
+ "Unable to load categories.","Kategorien können nicht geladen werden."
1094
+ "Unable to load checkout.","Checkout kann nicht geladen werden."
1095
+ "Unable to load localization.","Unable to load localization."
1096
+ "Unable to load order list.","Die Bestellungsliste konnte nicht geladen werden."
1097
+ "Unable to load order review.","Die Überprüfung der Bestellung konnte nicht geladen werden."
1098
+ "Unable to load product gallery.","Produktgalerie kan nicht geladen werden."
1099
+ "Unable to load product info.","Produktinformationen konnten nicht geladen werden."
1100
+ "Unable to load product options.","Produktoptionen konnten nicht geladen werden."
1101
+ "Unable to load product review.","Produktübersicht kann nicht geladen werden."
1102
+ "Unable to load product reviews.","Produktübersichten können nicht geladen werden."
1103
+ "Unable to load review form.","Das Überprüfungsformular konnte nicht geladen werden."
1104
+ "Unable to load search.","Suche kann nicht geladen werden."
1105
+ "Unable to load shipping address form.","Das Adressformular für den Versand konnte nicht geladen werden."
1106
+ "Unable to place the order.","Bestellung konnte nicht aufgegeben werden."
1107
+ "Unable to post the review.","Bewertung konnte nicht abgesendet werden."
1108
+ "Unable to process preview.","Vorschau konnte nicht verarbeitet werden."
1109
+ "Unable to render a gift card account.","Es konnte kein Geschenkgutschein-Konto erstellt werden."
1110
+ "Unable to render an order.","Bestellung kann nicht zurückgenommen werden."
1111
+ "Unable to render downloadable products.","Unable to render downloadable products."
1112
+ "Unable to render the store credits.","Die Guthaben können nicht erstattet werden."
1113
+ "Unable to save app.","App konnte nicht gespeichert werden."
1114
+ "Unable to save message.","Nachricht konnte nicht gespeichert werden."
1115
+ "Unable to save shipping address.","Lieferadresse konnte nicht gespeichert werden."
1116
+ "Unable to save shipping method.","Versandmethode konnte nicht gespeichert werden."
1117
+ "Unable to save template.","Vorlage konnte nicht gespeichert werden."
1118
+ "Unable to start MEP Checkout.","MEP Checkout konnte nicht gestartet werden."
1119
+ "Unable to start Mobile Express Checkout.","Mobile Express Checkout kann nicht gestartet werden."
1120
+ "Unable to update shipping method.","Die Versandmethode konnte nicht aktualisiert werden."
1121
+ "Undefined","Undefiniert"
1122
+ "Unit Price","Unit Price"
1123
+ "Unit Price:","Unit Price:"
1124
+ "Unknown Error","Unbekannter Fehler"
1125
+ "Unknown Error.","Unbekannter Fehler."
1126
+ "Unknown Payment Bridge Error","Unknown Payment Bridge Error"
1127
+ "Unknown error ocured. Please retry later","Unknown error ocured. Please retry later"
1128
+ "Unsupported character in path: ""%s""","Nicht unterstütztes Zeichen im Pfad: ""%s"""
1129
+ "Unsupported value type received","Nicht unterstützter Werttyp erhalten"
1130
+ "Update Comment Error","Update Comment Error"
1131
+ "Update Preview","Update Vorschau"
1132
+ "Updating ...","Updating ..."
1133
+ "Updating Cart...","Updating Cart..."
1134
+ "Upon receiving these credentials, please fill in the corresponding fields.","Füllen Sie nach dem Empfang dieser Anmeldeinformationen bitte die entsprechenden Felder aus."
1135
+ "Urban Airship Push Notification","Urban Airship Push-Nachricht"
1136
+ "Use Billing Address","Use Billing Address"
1137
+ "Use Store Credit (%s available)","Verwenden Sie Store-Guthaben (%s verfügbar)"
1138
+ "Use as my default billing address","Als meine Standard-Rechnungsadresse verwenden"
1139
+ "Use as my default shipping address","Als meine Standardlieferadresse verwenden"
1140
+ "Use billing address for shipping","Use billing address for shipping"
1141
+ "User Name:","User Name:"
1142
+ "User session is expired","User session is expired"
1143
+ "Version","Version"
1144
+ "View Cart","View Cart"
1145
+ "View Details","Details anzeigen"
1146
+ "View Gallery","Galerie ansehen"
1147
+ "View Wishlist","View Wishlist"
1148
+ "Warning: All related AirMail messages will be deleted!","Warnung: Alle zugehörigen AirMail-Nachrichten werden gelöscht!"
1149
+ "Website is offline","Website is offline"
1150
+ "Website is offline.","Die Website ist offline."
1151
+ "WishList Updated","WishList Updated"
1152
+ "Wishlist has been cleared.","Wunschliste wurde gelöscht."
1153
+ "Wishlist has been updated.","Wunschliste wurde aktualisiert."
1154
+ "Wishlist has been updated. But there are accrued some errors while updating some items.","Wunschliste wurde aktualisiert. Bei der Aktualisierung einiger Artikel sind jedoch Fehler aufgetreten."
1155
+ "Wishlist is empty.","Wishlist is empty."
1156
+ "Write a Review","Write a Review"
1157
+ "Write a review","Write a review"
1158
+ "Wrong Ipad background image orientation has been specified: ""%s"".","Falsche Ausrichtung für Ipad-Hintergrundbild angegeben: ""%s""."
1159
+ "Wrong PayPal Mobile Express Checkout Token specified.","Falsches PayPal Mobile Express Checkout-Zeichen angegeben."
1160
+ "Wrong device type.","Falscher Gerätetyp."
1161
+ "Wrong email format","Falsches E-Mail-Format"
1162
+ "Wrong or expired Gift Card Code.","Falscher oder abgelaufener Geschenkgutscheincode."
1163
+ "Wrong theme format.","Falsches Themen-Format."
1164
+ "YYYY","YYYY"
1165
+ "Year","Jahr"
1166
+ "Yes","Yes"
1167
+ "You are already logged in.","Sie sind bereits eingeloggt."
1168
+ "You are not logged in","You are not logged in"
1169
+ "You can watch statistics here.","Sie können sich hier die Statistiken anschauen."
1170
+ "You canceled your order. Touch ""Pay with PayPal"" to try again.","You canceled your order. Touch ""Pay with PayPal"" to try again."
1171
+ "You have entered an incorrect decimal value in the custom amount field. Provide a valid value.","You have entered an incorrect decimal value in the custom amount field. Provide a valid value."
1172
+ "You have placed no orders.","You have placed no orders."
1173
+ "You have uncommitted actions. Commit?","You have uncommitted actions. Commit?"
1174
+ "You may also like","You may also like"
1175
+ "You must login first","You must login first"
1176
+ "You must read and agree to the Terms and Conditions before placing your order.","You must read and agree to the Terms and Conditions before placing your order."
1177
+ "You need to enable PayPal Express Checkout first from the Payment configuration before enabling PayPal MECL.","Sie müssen zunächst PayPal Express Checkout aus der Konfiguration der Zahlung aktivieren, bevor Sie PayPal MECL aktivieren."
1178
+ "You will receive an order confirmation email with details of your order and a link to track its progress.","Sie erhalten eine Bestellbestätigungs-E-Mail mit den Details zu Ihrer Bestellung und einem Link, um den Verlauf zu verfolgen."
1179
+ "Your current balance is:","Ihr aktueller Kontostand beträgt:"
1180
+ "Your order # is: %s. ","Ihre Bestell # ist: %s."
1181
+ "Your order cannot be completed at this time as there is no payment methods available for it.","Your order cannot be completed at this time as there is no payment methods available for it."
1182
+ "Your order failed. Touch ""Pay with PayPal"" to try again.","Your order failed. Touch ""Pay with PayPal"" to try again."
1183
+ "Your review has been accepted for moderation.","Ihre Bewertung wurde für die Moderation akzeptiert."
1184
+ "Your tweet has been sent. Thanks for sharing this product on Twitter","Your tweet has been sent. Thanks for sharing this product on Twitter"
1185
+ "Zip/Postal Code","Postleitzahl"
1186
+ "\'%s\' exceeds the allowed file size: %d (bytes)","\'%s\' überschreitet die zulässige Dateigröße: %d (Bytes)"
1187
+ "\'%s\' height exceeds allowed value of %d px","\'%s\' Höhe übertrifft den erlaubten Wert von %d Pixeln."
1188
+ "\'%s\' is not a valid file extension. Allowed extensions: %s","\'%s\' ist keine gültige Dateiendung. Erlaubte Dateiendungen: %s"
1189
+ "\'%s\' width exceeds allowed value of %d px","\'%s\' Breite überschreitet den zulässigen Wert um %d px"
1190
+ "and","und"
1191
+ "as Guest","as Guest"
1192
+ "each","jede"
1193
+ "field is required","field is required"
1194
+ "iPad","iPad"
1195
+ "iPhone","iPhone"
1196
+ "image_id is required","image_id is required"
1197
+ "not set","not set"
1198
+ "required","required"
1199
+ "save","Speichern"
1200
+ "ver. %s","ver. %s"
app/locale/de_DE/Phoenix_Moneybookers.csv ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "All Credit Cards / Visa, Mastercard, AMEX, JCB, Diners (powered by Moneybookers) - International","Alle Kreditkarten / Visa, Mastercard, AMEX, JCB, Diners (mittels Moneybookers) – International"
2
+ "CartaSi (powered by Moneybookers) - Italy","CartaSi (mittels Moneybookers) – Italien"
3
+ "Carte Bleue (powered by Moneybookers) - France","Carte Bleue (mittels Moneybookers) – Frankreich"
4
+ "Customer ID","Kundenidentifikationsbezeichnung"
5
+ "Dankort (powered by Moneybookers) - Denmark","Dankort (mittels Moneybookers) – Dänemark"
6
+ "EPS Online-Überweisung (powered by Moneybookers) - Austria","eps Online-Überweisung (mittels Moneybookers) – Österreich"
7
+ "Enabled","Aktiviert"
8
+ "Find out more about Online Bank Transfer","Erfahren Sie mehr über Online Banküberweisung"
9
+ "Giropay (powered by Moneybookers) - Germany","Giropay (mittels Moneybookers) – Deutschland"
10
+ "Laser (powered by Moneybookers) - Ireland","Laser (mittels Moneybookers) – Irland"
11
+ "Lastschrift (ELV) (powered by Moneybookers) - Germany","Lastschrift (ELV) (mittels Moneybookers) – Deutschland"
12
+ "Loading secure payment page (SSL)","Sicherheitszahlungsseite (SSL) wird geladen"
13
+ "Maestro (powered by Moneybookers) - United Kingdom, Austria, Spain","Maestro (unterstützt von Moneybookers) - Vereinigtes Königreich, Österreich, Spanien"
14
+ "Moneybookers","Moneybookers"
15
+ "Moneybookers Settings","Moneybookers-Einstellungen"
16
+ "Moneybookers Transaction ID: %s","Moneybookers-Transaktionsidentifizierung: %s"
17
+ "Moneybookers eWallet","Moneybookers eWallet"
18
+ "More information about Moneybookers","Weitere Information über Moneybookers"
19
+ "Nordea Solo (powered by Moneybookers) - Finland","Nordea Solo (mittels Moneybookers) – Finnland"
20
+ "Nordea Solo (powered by Moneybookers) - Sweden","Nordea Solo (mittels Moneybookers) – Schweden"
21
+ "Online Bank Transfer (powered by Moneybookers)","Online Banküberweisung (unterstützt von Moneybookers)"
22
+ "Order ID","Bestellungsidentifizierung"
23
+ "POLi (powered by Moneybookers) - Australia","POLi (mittels Moneybookers) – Australien"
24
+ "Payment failed.","Zahlung fehlgeschlagen."
25
+ "Payment from Applicable Countries","Zahlung aus geeigneten Ländern"
26
+ "Payment from Specific Countries","Zahlung aus spezifischen Ländern"
27
+ "Payment has not been processed yet.","Zahlung wurde noch nicht durchgeführt."
28
+ "Payment was canceled.","Die Zahlung wurde storniert."
29
+ "Pending bank transfer created.","Ausstehende Banküberweisung erstellt."
30
+ "Please pay your order now","Bitte bezahlen Sie Ihre Bestellung jetzt"
31
+ "Postepay (powered by Moneybookers) - Italy","Postepay (betrieben durch Moneybookers) - Italien"
32
+ "Powered by Moneybookers","Unterstützt durch Moneybookers"
33
+ "Przelewy24 (powered by Moneybookers) - Poland","Przelewy24 (betrieben durch Moneybookers) - Polen"
34
+ "Sofortüberweisung (powered by Moneybookers) - Germany","Sofortüberweisung (betrieben durch Moneybookers) - Deutschland"
35
+ "Sort Order","Sortierfolge"
36
+ "The amount has been authorized and captured by Moneybookers.","Der Betrag wurde genehmigt und von Moneybookers erfasst."
37
+ "The customer was redirected to Moneybookers.","Der Kunde wurde zu Moneybookers zurückverwiesen."
38
+ "The order has been canceled.","Die Bestellung wurde storniert."
39
+ "Title","Titel"
40
+ "You will be redirected to our secure payment page when you place an order.","Sie werden zu unserer sicheren Zahlungsseite weitergeleitet, wenn Sie eine Bestellung aufgeben."
41
+ "eNETS (powered by Moneybookers) - Singapore","eNETS (betrieben durch Moneybookers) - Singapur"
42
+ "iDeal (powered by Moneybookers) - Netherlands","iDEAL (betrieben durch Moneybookers) - Niederlande"
app/locale/de_DE/Rockforweb_Instocksubscribe.csv ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ "You can subscribe for that product only once","Sie können für das Produkt nur einmal abonnieren"
2
+ "Please check your email","Bitte überprüfen Sie Ihre E-Mail"
3
+ "Thank You !","Danke!"
4
+ "Notify me when product is in stock","Benachrichtigen Sie mich, wenn das Produkt auf Lager"
5
+ "type email here","Geben Sie E-Mail hier"
6
+ "Notify me","Benachrichtigen Sie mich"
7
+ "Please enter valid email address. For example example@example.com","
8
+ Bitte geben Sie eine gültige E-Mail-Adresse. Zum Beispiel example@example.com"
app/locale/de_DE/Rockforweb_Instocksubscribe_Admin.csv ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "In Stock Notifications","Auf Lager Benachrichtigungen"
2
+ "General Options","Allgemeine Optionen"
3
+ "Allow not logged in customers","
4
+ Lassen Sie nicht eingeloggte Kunden"
5
+ "Notification Email Template","Benachrichtigung per E-Mail-Vorlage"
6
+ "Customer Id","Kundennummer"
7
+ "Product SKU","Artikelnummer"
8
+ "Customer Email","Kunde E-Mail"
9
+ "Date/Time","Datum/Uhrzeit"
10
+ "Notification Status","Registrierstatus"
11
+ "CSV","CSV"
12
+ "Excel XML","Excel XML"
13
+ "Delete","löschen"
14
+ "Are you sure?","Sind Sie sicher?"
15
+ "Please select notification(s)","Bitte wählen Sie Benachrichtigung"
16
+ "Total of %d record(s) were deleted","Insgesamt %d Datensätze gelöscht wurden"
app/locale/de_DE/template/email/account_new.html ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Welcome, {{var customer.name}}! @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "htmlescape var=$customer.name":"Customer Name",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "var customer.email":"Customer Email",
8
+ "htmlescape var=$customer.password":"Customer Password"}
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Sehr geehrte(r) {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Herzlich willkommen beim {{var store.getFrontendName()}}. Für die&#8201;Anmeldung bei Ihrem&#8201;Besuch auf unserer Website klicken Sie einfach oben auf einer beliebigen Seite auf <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Anmelden</a> oder auf <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Mein Konto</a> und geben Sie dann Ihre E-Mail-Adresse und Ihr Passwort ein.</p>
31
+ <p style="border:1px solid #E0E0E0; font-size:12px; line-height:16px; margin:0; padding:13px 18px; background:#f9f9f9;">
32
+ Geben&#8201;Sie die folgenden Werte ein, wenn Sie zur Anmeldung aufgefordert werden:<br/>
33
+ <strong>E-Mail-Adresse</strong>: {{var customer.email}}<br/>
34
+ <strong>Passwort</strong>: {{htmlescape var=$customer.password}}<p>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 8px 0;">Wenn&#8201;Sie sich bei Ihrem Konto anmelden, können Sie:</p>
36
+ <ul style="font-size:12px; line-height:16px; margin:0 0 16px 0; padding:0;">
37
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Ihren Einkauf schneller an der Kasse abwickeln</li>
38
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Den Status Ihrer Bestellungen überprüfen</li>
39
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Frühere Bestellungen anzeigen</li>
40
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Ihre Kontodaten ändern</li>
41
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Ihr Passwort ändern</li>
42
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Zusätzliche Adressen speichern (für die Lieferung an verschiedene Familienangehörige und Freunde!)</li>
43
+ </ul>
44
+ <p style="font-size:12px; line-height:16px; margin:0;">Bei Fragen zu Ihrem Konto oder sonstigen Anliegen dürfen Sie sich jederzeit gerne an uns wenden unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.</p>
45
+ </td>
46
+ </tr>
47
+ <tr>
48
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
49
+ </tr>
50
+ </table>
51
+ </td>
52
+ </tr>
53
+ </table>
54
+ </div>
55
+ </body>
app/locale/de_DE/template/email/account_new_confirmation.html ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Account confirmation for {{var customer.name}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "htmlescape var=$customer.name":"Customer Name",
8
+ "var customer.email":"Customer Email",
9
+ "store url=\"customer/account/confirm/\" _query_id=$customer.id _query_key=$customer.confirmation _query_back_url=$back_url":"Confirmation Url",
10
+ "htmlescape var=$customer.password":"Customer password"}
11
+ @-->
12
+
13
+ <!--@styles
14
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
15
+ @-->
16
+
17
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
19
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
20
+ <tr>
21
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
22
+ <!-- [ header starts here] -->
23
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
24
+ <tr>
25
+ <td valign="top">
26
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a>
27
+ </td>
28
+ </tr>
29
+ <!-- [ middle starts here] -->
30
+ <tr>
31
+ <td valign="top">
32
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$customer.name}},</h1>
33
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Sie müssen Ihre E-Mail-Adresse {{var customer.email}} erst bestätigen, bevor Sie sich damit bei unserem Laden anmelden können.</p>
34
+ <p style="font-size:12px; line-height:16px; margin:0 0 8px 0;">Wenn&#8201;Sie Ihre E-Mail-Adresse bestätigen und sich gleich danach anmelden möchten, rufen sie bitte <a href="{{store url="customer/account/confirm/" _query_id=$customer.id _query_key=$customer.confirmation _query_back_url=$back_url}}" style="color:#1E7EC8;">diesen Bestätigungslink auf</a>. Dieser Link ist nur zur einmaligen Verwendung gültig.</p>
35
+ <p style="border:1px solid #E0E0E0; font-size:12px; line-height:16px; margin:0 0 16px 0; padding:13px 18px; background:#f9f9f9;">
36
+ Geben&#8201;Sie die folgenden Werte ein, wenn Sie zur Anmeldung aufgefordert werden:<br/>
37
+ <strong>E-Mail-Adresse:</strong> {{var customer.email}}<br/>
38
+ <strong>Passwort:</strong> {{htmlescape var=$customer.password}}<p>
39
+ <p style="font-size:12px; line-height:16px; margin:0;">Bei Fragen zu Ihrem Konto oder sonstigen Anliegen dürfen Sie sich jederzeit gerne an uns wenden unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.</p>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
44
+ </tr>
45
+ </table>
46
+ </td>
47
+ </tr>
48
+ </table>
49
+ </div>
50
+ </body>
app/locale/de_DE/template/email/account_new_confirmed.html ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Welcome, {{var customer.name}}! @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$customer.name":"Customer Name",
7
+ "store url=\"customer/account/\"":"Customer Account Url"}
8
+ @-->
9
+
10
+ <!--@styles
11
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
12
+ @-->
13
+
14
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
15
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
17
+ <tr>
18
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
19
+ <!-- [ header starts here] -->
20
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
21
+ <tr>
22
+ <td valign="top">
23
+ <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a>
24
+ </td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Sehr geehrte(r) {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Herzlich willkommen beim Demo-Laden. Für die&#8201;Anmeldung bei Ihrem&#8201;Besuch auf unserer Website klicken Sie einfach oben auf einer beliebigen Seite auf <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Anmelden</a> oder auf <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Mein Konto</a> und geben Sie dann Ihre E-Mail-Adresse und Ihr Passwort ein.</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 8px 0;">Wenn&#8201;Sie sich bei Ihrem Konto anmelden, können Sie:</p>
32
+ <ul style="font-size:12px; line-height:16px; margin:0 0 16px 0; padding:0;">
33
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Ihren Einkauf schneller an der Kasse abwickeln</li>
34
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Den Status Ihrer Bestellungen überprüfen</li>
35
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Frühere Bestellungen anzeigen</li>
36
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Ihre Kontodaten ändern</li>
37
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Ihr Passwort ändern</li>
38
+ <li style="list-style:none inside; padding:0 0 0 10px;">&ndash; – Zusätzliche Adressen speichern (für die Lieferung an verschiedene Familienangehörige und Freunde!)</li>
39
+ </ul>
40
+ <p style="font-size:12px; line-height:16px; margin:0;">Bei Fragen zu Ihrem Konto oder sonstigen Anliegen dürfen Sie sich jederzeit gerne an uns wenden unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.</p>
41
+ </td>
42
+ </tr>
43
+ <tr>
44
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
45
+ </tr>
46
+ </table>
47
+ </td>
48
+ </tr>
49
+ </table>
50
+ </div>
51
+ </body>
app/locale/de_DE/template/email/account_password_reset_confirmation.html ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Password Reset Confirmation for {{var customer.name}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$customer.name":"Customer Name",
7
+ "store url=\"customer/account/resetpassword/\" _query_id=$customer.id _query_token=$customer.rp_token":"Reset Password URL"}
8
+ @-->
9
+
10
+ <!--@styles
11
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
12
+ @-->
13
+
14
+ <body style="background: #F6F6F6; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; margin: 0; padding: 0;">
15
+ <div style="background: #F6F6F6; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; margin: 0; padding: 0;">
16
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
17
+ <tr>
18
+ <td align="center" valign="top" style="padding: 20px 0 20px 0">
19
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
20
+ <tr>
21
+ <td valign="top">
22
+ <a href="{{store url=""}}" style="color:#1E7EC8;"><img src="{{var logo_url}}" alt="{{var logo_alt}}" border="0"/></a>
23
+ </td>
24
+ </tr>
25
+ <tr>
26
+ <td valign="top">
27
+ <h1 style="font-size: 22px; font-weight: normal; line-height: 22px; margin: 0 0 11px 0;">Hallo {{htmlescape var=$customer.name}},</h1>
28
+ <p style="font-size: 12px; line-height: 16px; margin: 0 0 8px 0;">Wir haben vor kurzem eine Bitte erhalten, das Kennwort zu Ihrem Konto zu ändern.</p>
29
+ <p style="font-size: 12px; line-height: 16px; margin: 0;">Wenn Sie diese Änderung verlangt haben, klicken Sie bitte auf den folgenden Link, um Ihr Kennwort neu einzustellen: <a href="{{store url="customer/account/resetpassword/" _query_id=$customer.id _query_token=$customer.rp_token}}" style="color:#1E7EC8;">{{store url="customer/account/resetpassword/" _query_id=$customer.id _query_token=$customer.rp_token}}</a></p>
30
+ <p style="font-size: 12px; line-height: 16px; margin: 0;">Wenn das nicht funktioniert, dann kopieren Sie bitte die URL-Adresse und fügen sie in der Adresszeile Ihres Browsers ein.</p>
31
+ <br />
32
+ <p style="font-size:12px; line-height:16px; margin:0;">Wenn Sie diese Änderung nicht verlangt haben, dann irgnorieren Sie bitte diese Nachricht und Ihr Kennwort wird unverändert bleiben.</p>
33
+ </td>
34
+ </tr>
35
+ <tr>
36
+ <td style="background-color: #EAEAEA; text-align: center;"><p style="font-size:12px; margin:0; text-align: center;">Danke!, <strong>{{var store.getFrontendName()}}</strong></p></td>
37
+ </tr>
38
+ </table>
39
+ </td>
40
+ </tr>
41
+ </table>
42
+ </div>
43
+ </body>
app/locale/de_DE/template/email/admin_password_new.html ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject New password for {{var user.name}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$user.name":"Admin Name",
7
+ "htmlescape var=$password":"Admin Password",
8
+ "store url=\"adminhtml/system_account/\"":"Admin Account Url"}
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
20
+ <!-- [ header starts here] -->
21
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
22
+ <tr>
23
+ <td valign="top">
24
+ <a href="{{store url=""}}" style="color:#1E7EC8;"><img src="{{var logo_url}}" alt="{{var logo_alt}}" border="0"/></a>
25
+ </td>
26
+ </tr>
27
+ <!-- [ middle starts here] -->
28
+ <tr>
29
+ <td valign="top">
30
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Sehr geehrte(r) {{htmlescape var=$user.name}},</h1>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 8px 0;"><strong>Ihr neues Passwort lautet:</strong> {{htmlescape var=$password}}</p>
32
+ <p style="font-size:12px; line-height:16px; margin:0;">Sie können Ihr Passwort jederzeit ändern.&#8201;Dazu müssen Sie sich bei <a href="{{store url="adminhtml/system_account/"}}" style="color:#1E7EC8;">Ihrem&#8201;Konto</a>.<p>
33
+ </td>
34
+ </tr>
35
+ <tr>
36
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">anmelden, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
37
+ </tr>
38
+ </table>
39
+ </td>
40
+ </tr>
41
+ </table>
42
+ </div>
43
+ </body>
app/locale/de_DE/template/email/admin_password_reset_confirmation.html ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Password Reset Confirmation for {{var user.name}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$user.name":"Admin Name",
7
+ "store url=\"adminhtml/index/resetpassword/\" _query_id=$user.id _query_token=$user.rp_token":"Reset Password URL",
8
+ "store url=\"adminhtml/system_account/\"":"Admin Account Url"}
9
+ @-->
10
+
11
+ <!--@styles
12
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
13
+ @-->
14
+
15
+ <body style="background: #F6F6F6; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; margin: 0; padding: 0;">
16
+ <div style="background: #F6F6F6; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; margin: 0; padding: 0;">
17
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
18
+ <tr>
19
+ <td align="center" valign="top" style="padding: 20px 0 20px 0">
20
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
21
+ <tr>
22
+ <td valign="top">
23
+ <a href="{{store url=""}}" style="color:#1E7EC8;"><img src="{{var logo_url}}" alt="{{var logo_alt}}" border="0"/></a>
24
+ </td>
25
+ </tr>
26
+ <tr>
27
+ <td valign="top">
28
+ <h1 style="font-size: 22px; font-weight: normal; line-height: 22px; margin: 0 0 11px 0;">Liebe/r {{htmlescape var=$user.name}},</h1>
29
+ <p style="font-size: 12px; line-height: 16px; margin: 0 0 8px 0;">Wir haben vor kurzem eine Bitte erhalten, das Kennwort zu Ihrem Konto zu ändern.</p>
30
+ <p style="font-size: 12px; line-height: 16px; margin: 0;">Wenn Sie diese Änderung verlangt haben, klicken Sie bitte auf den folgenden Link, um Ihr Kennwort neu einzustellen: <a href="{{store url="adminhtml/index/resetpassword/" _query_id=$user.id _query_token=$user.rp_token}}" style="color:#1E7EC8;">{{store url="adminhtml/index/resetpassword/" _query_id=$user.id _query_token=$user.rp_token}}</a></p>
31
+ <p style="font-size: 12px; line-height: 16px; margin: 0;">Wenn das nicht funktioniert, dann kopieren Sie bitte die URL-Adresse und fügen sie in der Adresszeile Ihres Browsers ein.</p>
32
+ <br />
33
+ <p style="font-size:12px; line-height:16px; margin:0;">Wenn Sie diese Änderung nicht verlangt haben, dann irgnorieren Sie bitte diese Nachricht und Ihr Kennwort wird unverändert bleiben.</p>
34
+ </td>
35
+ </tr>
36
+ <tr>
37
+ <td style="background-color: #EAEAEA; text-align: center;"><p style="font-size:12px; margin:0; text-align: center;">Danke!, <strong>{{var store.getFrontendName()}}</strong></p></td>
38
+ </tr>
39
+ </table>
40
+ </td>
41
+ </tr>
42
+ </table>
43
+ </div>
44
+ </body>
app/locale/de_DE/template/email/amazonpayments_asp_notification_error.html ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Amazonpayments ASP notification error @-->
2
+ <!--@vars
3
+ {"var request":"Amazon ASP Request",
4
+ "var error":"Amazon ASP Error"}
5
+ @-->
6
+ <div>
7
+ <div><b>__('Amazon Simple Pay notification message')__</b></div>
8
+ <div>__('Request')__:</div>
9
+ <div style="border:1px solid #000;">{{var request}}</div>
10
+ <div>__('Error')__:</div>
11
+ <div style="border:1px solid #000;">{{var error}}</div>
12
+ </div>
app/locale/de_DE/template/email/contact_form.html ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Contact Form@-->
2
+ <!--@vars
3
+ {"var data.name":"Sender Name",
4
+ "var data.email":"Sender Email",
5
+ "var data.telephone":"Sender Telephone",
6
+ "var data.comment":"Comment"}
7
+ @-->
8
+ Name: {{var data.name}}
9
+ E-Mail-Adresse: {{var data.email}}
10
+ Telefon: {{var data.telephone}}
11
+
12
+ Bemerkungen: {{var data.comment}}
app/locale/de_DE/template/email/currency_update_warning.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <!--@subject Currency Update Warnings @-->
2
+ <!--@vars
3
+ {"var warnings":"Currency Update Warnings"}
4
+ @-->
5
+ Hinweise zur Aktualisierung von Währungen: {{var warnings}}:
6
+
7
+
8
+ {{var warnings}}
app/locale/de_DE/template/email/log_clean_warning.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <!--@subject Log Cleanup Warnings @-->
2
+ <!--@vars
3
+ {"var warnings":"Log Cleanup Warnings"}
4
+ @-->
5
+ Warnmeldungen über die Löschung von Protokolleinträgen: {{var warnings}}:
6
+
7
+ {{var warnings}}
app/locale/de_DE/template/email/moneybookers_activateemail.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <!--@subject {{var subject}} @-->
2
+ {{var store.getFrontendName()}}<br>
3
+ Moneybookers E-Mail-Adresse: {{var email_addr}}<br>
4
+ Moneybookers Kunden-ID: {{var customer_id}}<br>
5
+ URL: {{var url}}<br>
6
+ Sprache: {{var language}}<br>
app/locale/de_DE/template/email/newsletter_subscr_confirm.html ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Newsletter subscription confirmation @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$customer.name":"Customer Name",
7
+ "var subscriber.getConfirmationLink()":"Subscriber Confirmation Url"}
8
+ @-->
9
+ <!--@styles
10
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
11
+ @-->
12
+
13
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
14
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
15
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
16
+ <tr>
17
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
18
+ <!-- [ header starts here] -->
19
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
20
+ <tr>
21
+ <td valign="top">
22
+ <a href="{{store url=""}}" style="color:#1E7EC8;"><img src="{{var logo_url}}" alt="{{var logo_alt}}" border="0"/></a>
23
+ </td>
24
+ </tr>
25
+ <!-- [ middle starts here] -->
26
+ <tr>
27
+ <td valign="top">
28
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Vielen&#8201;Dank, dass Sie unseren Newsletter abonniert haben.</h1>
29
+ <p style="border:1px solid #E0E0E0; font-size:12px; line-height:16px; margin:0; padding:13px 18px; background:#F9F9F9;">Damit Ihnen der Newsletter zugestellt wird, müssen Sie Ihr&#8201;Abonnement erst noch bestätigen. Klicken&#8201;Sie dazu auf den folgenden Link:<br />
30
+ <a href="{{var subscriber.getConfirmationLink()}}" style="color:#1E7EC8;">{{var subscriber.getConfirmationLink()}}</a><p>
31
+ </td>
32
+ </tr>
33
+ <tr>
34
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
35
+ </tr>
36
+ </table>
37
+ </td>
38
+ </tr>
39
+ </table>
40
+ </div>
41
+ </body>
app/locale/de_DE/template/email/newsletter_subscr_success.html ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <!--@subject Newsletter subscription success @-->
2
+ Newsletter-Abonnement erfolgreich
app/locale/de_DE/template/email/newsletter_unsub_success.html ADDED
@@ -0,0 +1,2 @@
 
 
1
+ <!--@subject Newsletter unsubscription success @-->
2
+ Newsletter-Abbestellung erfolgreich
app/locale/de_DE/template/email/password_new.html ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject New password for {{var customer.name}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "store url=\"customer/account/\"":"Customer Account Url",
7
+ "htmlescape var=$customer.name":"Customer Name",
8
+ "htmlescape var=$customer.password":"Customer New Password"}
9
+ @-->
10
+ <!--@styles
11
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
12
+ @-->
13
+
14
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
15
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
16
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
17
+ <tr>
18
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
19
+ <!-- [ header starts here] -->
20
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
21
+ <tr>
22
+ <td valign="top">
23
+ <a href="{{store url=""}}" style="color:#1E7EC8;"><img src="{{var logo_url}}" alt="{{var logo_alt}}" border="0"/></a>
24
+ </td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$customer.name}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 8px 0;"><strong>Ihr neues Passwort lautet:</strong> {{htmlescape var=$customer.password}}</p>
31
+ <p style="font-size:12px; line-height:16px; margin:0;">Sie können Ihr Passwort jederzeit ändern.&#8201;Dazu müssen Sie sich bei <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Ihrem&#8201;Konto</a>.<p>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">anmelden, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
36
+ </tr>
37
+ </table>
38
+ </td>
39
+ </tr>
40
+ </table>
41
+ </div>
42
+ </body>
app/locale/de_DE/template/email/payment_failed.html ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Payment Transaction Failed Reminder @-->
2
+ <!--@vars
3
+ {"var reason":"Transaction Failed Reason",
4
+ "var checkoutType":"Checkout Type",
5
+ "var customerEmail":"Customer Email",
6
+ "var customer":"Customer Name",
7
+ "var items":"Shopping Cart Items",
8
+ "var total":"Total",
9
+ "var billingAddress.format('html')":"Billing Address",
10
+ "var shippingAddress.format('html')":"Shipping Address",
11
+ "var shippingMethod":"Shipping Method",
12
+ "var paymentMethod":"Payment Method",
13
+ "var dateAndTime":"Date and Time of Transaction"}
14
+ @-->
15
+
16
+ <table>
17
+ <thead>
18
+ <tr>
19
+ <th>Zahlungstransaktion fehlgeschlagen.</th>
20
+ </tr>
21
+ </thead>
22
+ <tbody>
23
+ <tr>
24
+ <td>
25
+ <p>
26
+ <b>Grund</b><br />
27
+ {{var reason}}
28
+ </p>
29
+ <p>
30
+ <b>Kassentyp</b><br />
31
+ {{var checkoutType}}
32
+ </p>
33
+ <p>
34
+ <b>Kunde:</b><br />
35
+ <a href="mailto:{{var customerEmail}}">{{var customer}}</a> &lt;{{var customerEmail}}&gt;
36
+ </p>
37
+ <p>
38
+ <b>Artikel</b><br />
39
+ {{var items}}
40
+ </p>
41
+ <p>
42
+ <b>Summe:</b><br />
43
+ {{var total}}
44
+ </p>
45
+ <p>
46
+ <b>Rechnungsanschrift:</b><br />
47
+ {{var billingAddress.format('html')}}
48
+ </p>
49
+ <p>
50
+ <b>Lieferadresse:</b><br />
51
+ {{var shippingAddress.format('html')}}
52
+ </p>
53
+ <p>
54
+ <b>Liefermethode:</b><br />
55
+ {{var shippingMethod}}
56
+ </p>
57
+ <p>
58
+ <b>Zahlungsform:</b><br />
59
+ {{var paymentMethod}}
60
+ </p>
61
+ <p>
62
+ <b>Datum/Uhrzeit:</b><br />
63
+ {{var dateAndTime}}
64
+ </p>
65
+ </td>
66
+ </tr>
67
+ </tbody>
68
+ </table>
app/locale/de_DE/template/email/product_alert_cron_error.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <!--@subject Product alerts Cron error @-->
2
+ <!--@vars
3
+ {"var warnings":"Warnings"}
4
+ @-->
5
+ Produktmeldungen Cron-Warnmeldungen: {{var warnings}}:
6
+
7
+ {{var warnings}}
app/locale/de_DE/template/email/product_price_alert.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <!--@subject Products price changed alert @-->
2
+ <!--@vars
3
+ {"var customerName":"Customer Name",
4
+ "var alertGrid":"Alert Data Grid"}
5
+ @-->
6
+ Hallo {{var customerName}},
7
+
8
+ {{var alertGrid}}
app/locale/de_DE/template/email/product_share.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Welcome, {{var name}} @-->
2
+ <!--@vars
3
+ {"htmlescape var=$name":"Recipient Name",
4
+ "var email":"Recipient Email address",
5
+ "var product_url":"Url for Product",
6
+ "var product_name":"Product Name",
7
+ "var product_image":"Url for product small image (75 px)",
8
+ "var sender_name":"Sender name",
9
+ "var sender_email":"Sender email",
10
+ "var message":"Sender Message"}
11
+ @-->
12
+
13
+ Herzlich willkommen, {{htmlescape var=$name}}<br /><br />Bitte schauen&#8201;Sie sich <a href="{{var product_url}}">{{var product_name}}</a><br /><br />an: <br />{{var message}}<br /><br />
app/locale/de_DE/template/email/product_stock_alert.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <!--@subject Products back in stock alert @-->
2
+ <!--@vars
3
+ {"var customerName":"Customer Name",
4
+ "var alertGrid":"Alert Data Grid"}
5
+ @-->
6
+ Hallo {{var customerName}},
7
+
8
+ {{var alertGrid}}
app/locale/de_DE/template/email/sales/creditmemo_new.html ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Credit Memo # {{var creditmemo.increment_id}} for Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "store url=\"customer/account/\"":"Customer Account Url",
9
+ "var creditmemo.increment_id":"Credit Memo Id",
10
+ "var order.increment_id":"Order Id",
11
+ "var order.billing_address.format('html')":"Billing Address",
12
+ "payment_html":"Payment Details",
13
+ "var order.shipping_address.format('html')":"Shipping Address",
14
+ "var order.shipping_description":"Shipping Description",
15
+ "layout handle=\"sales_email_order_creditmemo_items\" creditmemo=$creditmemo order=$order":"Credit Memo Items Grid",
16
+ "var comment":"Credit Memo Comment"}
17
+ @-->
18
+ <!--@styles
19
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
20
+ @-->
21
+
22
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
24
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
25
+ <tr>
26
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
27
+ <!-- [ header starts here] -->
28
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
29
+ <tr>
30
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
31
+ </tr>
32
+ <!-- [ middle starts here] -->
33
+ <tr>
34
+ <td valign="top">
35
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$order.getCustomerName()}}</h1>
36
+ <p>
37
+ Vielen Dank für Ihre Bestellung bei {{var store.getFrontendName()}}.
38
+ Sie können den Status Ihrer Bestellung überprüfen, indem Sie sich <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">bei Ihrem Konto anmelden</a>.
39
+ Bei Fragen zu Ihrer Bestellung wenden Sie sich bitte an uns unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder rufen Sie uns an unter <span class="nobr">{{config path='general/store_information/phone'}}</span> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time.
40
+ </p>
41
+ </td>
42
+ </tr>
43
+ <tr>
44
+ <td>
45
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Ihre Gutschrift Nr. {{var creditmemo.increment_id}} für die Bestellung Nr. {{var order.increment_id}}</h2>
46
+ </td>
47
+ </tr>
48
+ <tr>
49
+ <td>
50
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
51
+ <thead>
52
+ <tr>
53
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Rechnungsdaten:</th>
54
+ <th width="10"></th>
55
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
56
+ </tr>
57
+ </thead>
58
+ <tbody>
59
+ <tr>
60
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
61
+ {{var order.billing_address.format('html')}}
62
+ </td>
63
+ <td>&nbsp;</td>
64
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
65
+ {{var payment_html}}
66
+ </td>
67
+ </tr>
68
+ </tbody>
69
+ </table>
70
+ <br/>
71
+ {{depend order.getIsNotVirtual()}}
72
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
73
+ <thead>
74
+ <tr>
75
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
76
+ <th width="10"></th>
77
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
78
+ </tr>
79
+ </thead>
80
+ <tbody>
81
+ <tr>
82
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
83
+ {{var order.shipping_address.format('html')}}
84
+ &nbsp;
85
+ </td>
86
+ <td>&nbsp;</td>
87
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
88
+ {{var order.shipping_description}}
89
+ &nbsp;
90
+ </td>
91
+ </tr>
92
+ </tbody>
93
+ </table>
94
+ <br/>
95
+ {{/depend}}
96
+ {{layout handle="sales_email_order_creditmemo_items" creditmemo=$creditmemo order=$order}}
97
+ <p style="font-size:12px; margin:0 10px 10px 0">{{var comment}}</p>
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
102
+ </tr>
103
+ </table>
104
+ </td>
105
+ </tr>
106
+ </table>
107
+ </div>
108
+ </body>
app/locale/de_DE/template/email/sales/creditmemo_new_guest.html ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Credit Memo # {{var creditmemo.increment_id}} for Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$billing.getName()":"Guest Customer Name (Billing)",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "var creditmemo.increment_id":"Credit Memo Id",
9
+ "var order.increment_id":"Order Id",
10
+ "var order.billing_address.format('html')":"Billing Address",
11
+ "var payment_html":"Payment Details",
12
+ "var order.shipping_address.format('html')":"Shipping Address",
13
+ "var order.shipping_description":"Shipping Description",
14
+ "layout handle=\"sales_email_order_creditmemo_items\" creditmemo=$creditmemo order=$order":"Credit Memo Items Grid",
15
+ "var comment":"Credit Memo Comment"}
16
+ @-->
17
+ <!--@styles
18
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
19
+ @-->
20
+
21
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
22
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
24
+ <tr>
25
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
26
+ <!-- [ header starts here] -->
27
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
28
+ <tr>
29
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
30
+ </tr>
31
+ <!-- [ middle starts here] -->
32
+ <tr>
33
+ <td valign="top">
34
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$billing.getName()}}</h1>
35
+ <p>
36
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}. Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter.
37
+ Wenn Sie eine Frage zu Ihrer Bestellung haben, kontaktieren Sie uns bitte unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> __('or call us at')__ <span class="nobr">{{config path='general/store_information/phone'}}</span> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time.
38
+ </p>
39
+ </td>
40
+ </tr>
41
+ <tr>
42
+ <td>
43
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Ihre Gutschrift Nr. {{var creditmemo.increment_id}} fГјr die Bestellung Nr. {{var order.increment_id}}</h2>
44
+ </td>
45
+ </tr>
46
+ <tr>
47
+ <td>
48
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
49
+ <thead>
50
+ <tr>
51
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Rechnungsdaten:</th>
52
+ <th width="10"></th>
53
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
54
+ </tr>
55
+ </thead>
56
+ <tbody>
57
+ <tr>
58
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
59
+ {{var order.billing_address.format('html')}}
60
+ </td>
61
+ <td>&nbsp;</td>
62
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
63
+ {{var payment_html}}
64
+ </td>
65
+ </tr>
66
+ </tbody>
67
+ </table>
68
+ <br/>
69
+ {{depend order.getIsNotVirtual()}}
70
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
71
+ <thead>
72
+ <tr>
73
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
74
+ <th width="10"></th>
75
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
76
+ </tr>
77
+ </thead>
78
+ <tbody>
79
+ <tr>
80
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
81
+ {{var order.shipping_address.format('html')}}
82
+ &nbsp;
83
+ </td>
84
+ <td>&nbsp;</td>
85
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
86
+ {{var order.shipping_description}}
87
+ &nbsp;
88
+ </td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ <br/>
93
+ {{/depend}}
94
+ {{layout handle="sales_email_order_creditmemo_items" creditmemo=$creditmemo order=$order}}
95
+ <p style="font-size:12px; margin:0 10px 10px 0">{{var comment}}</p>
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Danke!, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
100
+ </tr>
101
+ </table>
102
+ </td>
103
+ </tr>
104
+ </table>
105
+ </div>
106
+ </body>
app/locale/de_DE/template/email/sales/creditmemo_update.html ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Credit Memo # {{var creditmemo.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "store url=\"customer/account/\"":"Customer Account Url",
10
+ "var comment":"Credit Memo Comment",
11
+ "var store.getFrontendName()":"Store Name"}
12
+ @-->
13
+ <!--@styles
14
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
15
+ @-->
16
+
17
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
19
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
20
+ <tr>
21
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
22
+ <!-- [ header starts here] -->
23
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
24
+ <tr>
25
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
26
+ </tr>
27
+ <!-- [ middle starts here] -->
28
+ <tr>
29
+ <td valign="top">
30
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$order.getCustomerName()}},</h1>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
32
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
33
+ <strong>{{var order.getStatusLabel()}}</strong>.
34
+ </p>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">bei Ihrem Konto anmelden</a>.</p>
36
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
37
+ <p style="font-size:12px; line-height:16px; margin:0;">
38
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
39
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
40
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
41
+ </p>
42
+ </td>
43
+ </tr>
44
+ <tr>
45
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
46
+ </tr>
47
+ </table>
48
+ </td>
49
+ </tr>
50
+ </table>
51
+ </div>
52
+ </body>
app/locale/de_DE/template/email/sales/creditmemo_update_guest.html ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Credit Memo # {{var creditmemo.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+
7
+ "htmlescape var=$billing.getName()":"Guest Customer Name",
8
+ "var order.increment_id":"Order Id",
9
+ "var order.getStatusLabel()":"Order Status",
10
+ "var comment":"Credit Memo Comment",
11
+ "var store.getFrontendName()":"Store Name"}
12
+ @-->
13
+ <!--@styles
14
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
15
+ @-->
16
+
17
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
19
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
20
+ <tr>
21
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
22
+ <!-- [ header starts here] -->
23
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
24
+ <tr>
25
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
26
+ </tr>
27
+ <!-- [ middle starts here] -->
28
+ <tr>
29
+ <td valign="top">
30
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$billing.getName()}},</h1>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
32
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
33
+ <strong>{{var order.getStatusLabel()}}</strong>.
34
+ </p>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
36
+ <p style="font-size:12px; line-height:16px; margin:0;">
37
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
38
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
39
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
40
+ </p>
41
+ </td>
42
+ </tr>
43
+ <tr>
44
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
45
+ </tr>
46
+ </table>
47
+ </td>
48
+ </tr>
49
+ </table>
50
+ </div>
51
+ </body>
app/locale/de_DE/template/email/sales/invoice_new.html ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Invoice # {{var invoice.increment_id}} for Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "store url=\"customer/account/\"":"Customer Account Url",
9
+ "var invoice.increment_id":"Invoice Id",
10
+ "var order.increment_id":"Order Id",
11
+ "var order.billing_address.format('html')":"Billing Address",
12
+ "var payment_html":"Payment Details",
13
+ "var order.shipping_address.format('html')":"Shipping Address",
14
+ "var order.shipping_description":"Shipping Description",
15
+ "layout area=\"frontend\" handle=\"sales_email_order_invoice_items\" invoice=$invoice order=$order":"Invoice Items Grid",
16
+ "var comment":"Invoice Comment"}
17
+ @-->
18
+ <!--@styles
19
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
20
+ @-->
21
+
22
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
24
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
25
+ <tr>
26
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
27
+ <!-- [ header starts here] -->
28
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
29
+ <tr>
30
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
31
+ </tr>
32
+ <!-- [ middle starts here] -->
33
+ <tr>
34
+ <td valign="top">
35
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$order.getCustomerName()}}</h1>
36
+ <p style="font-size:12px; line-height:16px; margin:0;">
37
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}. Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich.
38
+ bei Ihrem Konto anmelden <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter</a>.
39
+ oder rufen Sie uns an unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time <span class="nobr">{{config path='general/store_information/phone'}}</span> Ihre Rechnung Nr. {{var invoice.increment_id}} für die Bestellung Nr. {{var order.increment_id}}.
40
+ </p>
41
+ </td>
42
+ </tr>
43
+ <tr>
44
+ <td>
45
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Rechnungsdaten</h2>
46
+ </td>
47
+ </tr>
48
+ <tr>
49
+ <td>
50
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
51
+ <thead>
52
+ <tr>
53
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
54
+ <th width="10"></th>
55
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
56
+ </tr>
57
+ </thead>
58
+ <tbody>
59
+ <tr>
60
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
61
+ {{var order.billing_address.format('html')}}
62
+ </td>
63
+ <td>&nbsp;</td>
64
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
65
+ {{var payment_html}}
66
+ </td>
67
+ </tr>
68
+ </tbody>
69
+ </table>
70
+ <br/>
71
+ {{depend order.getIsNotVirtual()}}
72
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
73
+ <thead>
74
+ <tr>
75
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
76
+ <th width="10"></th>
77
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Haben Sie nochmals recht herzlichen Dank:</th>
78
+ </tr>
79
+ </thead>
80
+ <tbody>
81
+ <tr>
82
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
83
+ {{var order.shipping_address.format('html')}}
84
+ &nbsp;
85
+ </td>
86
+ <td>&nbsp;</td>
87
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
88
+ {{var order.shipping_description}}&nbsp;
89
+ </td>
90
+ </tr>
91
+ </tbody>
92
+ </table>
93
+ <br/>
94
+ {{/depend}}
95
+ {{layout area="frontend" handle="sales_email_order_invoice_items" invoice=$invoice order=$order}}
96
+ <p style="font-size:12px; margin:0 10px 10px 0;">{{var comment}}</p>
97
+ </td>
98
+ </tr>
99
+ <tr>
100
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Nochmals vielen Dank, <strong>{{var store.getFrontendName()}}</strong></strong></p></center></td>
101
+ </tr>
102
+ </table>
103
+ </td>
104
+ </tr>
105
+ </table>
106
+ </div>
107
+ </body>
app/locale/de_DE/template/email/sales/invoice_new_guest.html ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Invoice # {{var invoice.increment_id}} for Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$billing.getName()":"Guest Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "var invoice.increment_id":"Invoice Id",
9
+ "var order.increment_id":"Order Id",
10
+ "var order.billing_address.format('html')":"Billing Address",
11
+ "var payment_html":"Payment Details",
12
+ "var order.shipping_address.format('html')":"Shipping Address",
13
+ "var order.shipping_description":"Shipping Description",
14
+ "layout handle=\"sales_email_order_invoice_items\" invoice=$invoice order=$order":"Invoice Items Grid",
15
+ "var comment":"Invoice Comment"}
16
+ @-->
17
+ <!--@styles
18
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
19
+ @-->
20
+
21
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
22
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
24
+ <tr>
25
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
26
+ <!-- [ header starts here] -->
27
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
28
+ <tr>
29
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
30
+ </tr>
31
+ <!-- [ middle starts here] -->
32
+ <tr>
33
+ <td valign="top">
34
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$billing.getName()}}</h1>
35
+ <p style="font-size:12px; line-height:16px; margin:0;">
36
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}.
37
+ Wenn Sie eine Frage zu Ihrer Bestellung haben, kontaktieren Sie uns bitte unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder rufen Sie uns an unter <span class="nobr">{{config path='general/store_information/phone'}}</span> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time.
38
+ </p>
39
+ </td>
40
+ </tr>
41
+ <tr>
42
+ <td>
43
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Ihre Rechnung Nr. {{var invoice.increment_id}} für die Bestellung Nr. {{var order.increment_id}}</h2>
44
+ </td>
45
+ </tr>
46
+ <tr>
47
+ <td>
48
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
49
+ <thead>
50
+ <tr>
51
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
52
+ <th width="10"></th>
53
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
54
+ </tr>
55
+ </thead>
56
+ <tbody>
57
+ <tr>
58
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
59
+ {{var order.billing_address.format('html')}}
60
+ </td>
61
+ <td>&nbsp;</td>
62
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
63
+ {{var payment_html}}
64
+ </td>
65
+ </tr>
66
+ </tbody>
67
+ </table>
68
+ <br/>
69
+ {{depend order.getIsNotVirtual()}}
70
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
71
+ <thead>
72
+ <tr>
73
+ <th align="left" width="650" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
74
+ <th width="10"></th>
75
+ <th align="left" width="650" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
76
+ </tr>
77
+ </thead>
78
+ <tbody>
79
+ <tr>
80
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
81
+ {{var order.shipping_address.format('html')}}
82
+ &nbsp;
83
+ </td>
84
+ <td>&nbsp;</td>
85
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
86
+ {{var order.shipping_description}}
87
+ &nbsp;
88
+ </td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ <br/>
93
+ {{/depend}}
94
+ {{layout handle="sales_email_order_invoice_items" invoice=$invoice order=$order}}
95
+ <p style="font-size:12px; margin:0 0 10px 0">{{var comment}}</p>
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></strong></p></center></td>
100
+ </tr>
101
+ </table>
102
+ </td>
103
+ </tr>
104
+ </table>
105
+ </div>
106
+ </body>
app/locale/de_DE/template/email/sales/invoice_update.html ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Invoice # {{var invoice.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "store url=\"customer/account/\"":"Customer Account Url",
10
+ "var comment":"Invoice Comment",
11
+ "var store.getFrontendName()":"Store Name"}
12
+ @-->
13
+ <!--@styles
14
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
15
+ @-->
16
+
17
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
19
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
20
+ <tr>
21
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
22
+ <!-- [ header starts here] -->
23
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
24
+ <tr>
25
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
26
+ </tr>
27
+ <!-- [ middle starts here] -->
28
+ <tr>
29
+ <td valign="top">
30
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$order.getCustomerName()}},</h1>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
32
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
33
+ <strong>{{var order.getStatusLabel()}}</strong>.
34
+ </p>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">bei Ihrem Konto anmelden</a>.</p>
36
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
37
+ <p style="font-size:12px; line-height:16px; margin:0;">
38
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
39
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
40
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
41
+ </p>
42
+ </td>
43
+ </tr>
44
+ <tr>
45
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
46
+ </tr>
47
+ </table>
48
+ </td>
49
+ </tr>
50
+ </table>
51
+ </div>
52
+ </body>
app/locale/de_DE/template/email/sales/invoice_update_guest.html ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Invoice # {{var invoice.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$billing.getName()":"Guest Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "var comment":"Invoice Comment",
10
+ "var store.getFrontendName()":"Store Name"}
11
+ @-->
12
+ <!--@styles
13
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
14
+ @-->
15
+
16
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
19
+ <tr>
20
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
21
+ <!-- [ header starts here] -->
22
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
23
+ <tr>
24
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$billing.getName()}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
31
+ __('Your order # {{var order.increment_id}} has been')__ <br/>
32
+ <strong>{{var order.getStatusLabel()}}</strong>.
33
+ </p>
34
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
35
+ <p style="font-size:12px; line-height:16px; margin:0;">
36
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
37
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
38
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
39
+ </p>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
44
+ </tr>
45
+ </table>
46
+ </td>
47
+ </tr>
48
+ </table>
49
+ </div>
app/locale/de_DE/template/email/sales/order_new.html ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: New Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "store url=\"customer/account/\"":"Customer Account Url",
9
+ "var order.increment_id":"Order Id",
10
+ "var order.getCreatedAtFormated('long')":"Order Created At (datetime)",
11
+ "var order.getBillingAddress().format('html')":"Billing Address",
12
+ "var payment_html":"Payment Details",
13
+ "var order.getShippingAddress().format('html')":"Shipping Address",
14
+ "var order.getShippingDescription()":"Shipping Description",
15
+ "layout handle=\"sales_email_order_items\" order=$order":"Order Items Grid",
16
+ "var order.getEmailCustomerNote()":"Email Order Note"}
17
+ @-->
18
+ <!--@styles
19
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
20
+ @-->
21
+
22
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
24
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
25
+ <tr>
26
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
27
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
28
+ <!-- [ header starts here] -->
29
+ <tr>
30
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
31
+ </tr>
32
+ <!-- [ middle starts here] -->
33
+ <tr>
34
+ <td valign="top">
35
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$order.getCustomerName()}}</h1>
36
+ <p style="font-size:12px; line-height:16px; margin:0;">
37
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}. Sobald Ihre Bestellung ausgeliefert wird, senden wir Ihnen eine E-Mail mit einem Link, über den Sie Ihre Bestellung verfolgen können. Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich.
38
+ bei Ihrem Konto anmelden.
39
+ Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">oder rufen Sie uns an unter</a>.
40
+ Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> Ihre Auftragsbestätigung ist unten aufgeführt. Haben Sie nochmals recht herzlichen Dank für Ihren Einkauf <span class="nobr">{{config path='general/store_information/phone'}}</span> Ihre Bestellung mit der Nummer {{var order.increment_id}}.
41
+ </p>
42
+ <p style="font-size:12px; line-height:16px; margin:0;">(aufgegeben am {{var order.getCreatedAtFormated('long')}}).</p>
43
+ </tr>
44
+ <tr>
45
+ <td>
46
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Rechnungsdaten <small>Zahlungsform</small></h2>
47
+ </td>
48
+ </tr>
49
+ <tr>
50
+ <td>
51
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
52
+ <thead>
53
+ <tr>
54
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
55
+ <th width="10"></th>
56
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
57
+ </tr>
58
+ </thead>
59
+ <tbody>
60
+ <tr>
61
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
62
+ {{var order.getBillingAddress().format('html')}}
63
+ </td>
64
+ <td>&nbsp;</td>
65
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
66
+ {{var payment_html}}
67
+ </td>
68
+ </tr>
69
+ </tbody>
70
+ </table>
71
+ <br/>
72
+ {{depend order.getIsNotVirtual()}}
73
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
74
+ <thead>
75
+ <tr>
76
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Haben Sie recht herzlichen Dank:</th>
77
+ <th width="10"></th>
78
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
79
+ </tr>
80
+ </thead>
81
+ <tbody>
82
+ <tr>
83
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
84
+ {{var order.getShippingAddress().format('html')}}
85
+ &nbsp;
86
+ </td>
87
+ <td>&nbsp;</td>
88
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
89
+ {{var order.getShippingDescription()}}
90
+ &nbsp;
91
+ </td>
92
+ </tr>
93
+ </tbody>
94
+ </table>
95
+ <br/>
96
+ {{/depend}}
97
+ {{layout handle="sales_email_order_items" order=$order}}
98
+ <p style="font-size:12px; margin:0 0 10px 0">{{var order.getEmailCustomerNote()}}</p>
99
+ </td>
100
+ </tr>
101
+ <tr>
102
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Danke!, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
103
+ </tr>
104
+ </table>
105
+ </td>
106
+ </tr>
107
+ </table>
108
+ </div>
109
+ </body>
app/locale/de_DE/template/email/sales/order_new_guest.html ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: New Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getBillingAddress().getName()":"Guest Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "var order.increment_id":"Order Id",
9
+ "var order.getCreatedAtFormated('long')":"Order Created At (datetime)",
10
+ "var order.getBillingAddress().format('html')":"Billing Address",
11
+ "var payment_html":"Payment Details",
12
+ "var order.getShippingAddress().format('html')":"Shipping Address",
13
+ "var order.getShippingDescription()":"Shipping Description",
14
+ "layout handle=\"sales_email_order_items\" order=$order":"Order Items Grid",
15
+ "var order.getEmailCustomerNote()":"Email Order Note"}
16
+ @-->
17
+ <!--@styles
18
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
19
+ @-->
20
+
21
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
22
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
24
+ <tr>
25
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
26
+ <!-- [ header starts here] -->
27
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
28
+ <tr>
29
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
30
+ </tr>
31
+ <!-- [ middle starts here] -->
32
+ <tr>
33
+ <td valign="top">
34
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Hallo, {{htmlescape var=$order.getBillingAddress().getName()}}</h1>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
36
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}. Sobald Ihre Bestellung ausgeliefert wird, senden wir Ihnen eine E-Mail mit einem Link, über den Sie Ihre Bestellung verfolgen können. Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter.
37
+ Sobald sich Ihr Paket auf dem Versandweg befindet, senden wir Ihnen eine E-Mail mit einem Link, über den Sie Ihre Bestellung verfolgen können.
38
+ Wenn Sie eine Frage zu Ihrer Bestellung haben, kontaktieren Sie uns bitte unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder rufen Sie uns an unter <span class="nobr">{{config path='general/store_information/phone'}}</span> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time.
39
+ </p>
40
+ <p style="font-size:12px; line-height:16px; margin:0;">Ihre Auftragsbestätigung ist unten aufgeführt. Haben Sie nochmals recht herzlichen Dank für Ihren Einkauf.</p>
41
+ </td>
42
+ </tr>
43
+ <tr>
44
+ <td>
45
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Ihre Bestellung mit der Nummer {{var order.increment_id}} <small>(aufgegeben am {{var order.getCreatedAtFormated('long')}})</small></h2>
46
+ </td>
47
+ </tr>
48
+ <tr>
49
+ <td>
50
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
51
+ <thead>
52
+ <tr>
53
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Rechnungsdaten:</th>
54
+ <th width="10"></th>
55
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
56
+ </tr>
57
+ </thead>
58
+ <tbody>
59
+ <tr>
60
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
61
+ {{var order.getBillingAddress().format('html')}}
62
+ </td>
63
+ <td>&nbsp;</td>
64
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
65
+ {{var payment_html}}
66
+ </td>
67
+ </tr>
68
+ </tbody>
69
+ </table>
70
+ <br/>
71
+ {{depend order.getIsNotVirtual()}}
72
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
73
+ <thead>
74
+ <tr>
75
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
76
+ <th width="10"></th>
77
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
78
+ </tr>
79
+ </thead>
80
+ <tbody>
81
+ <tr>
82
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
83
+ {{var order.getShippingAddress().format('html')}}
84
+ &nbsp;
85
+ </td>
86
+ <td>&nbsp;</td>
87
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
88
+ {{var order.getShippingDescription()}}
89
+ &nbsp;
90
+ </td>
91
+ </tr>
92
+ </tbody>
93
+ </table>
94
+ <br/>
95
+ {{/depend}}
96
+ {{layout handle="sales_email_order_items" order=$order}}
97
+ <p style="font-size:12px; margin:0 10px 10px 0">{{var order.getEmailCustomerNote()}}</p>
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
102
+ </tr>
103
+ </table>
104
+ </td>
105
+ </tr>
106
+ </table>
107
+ </div>
108
+ </body>
app/locale/de_DE/template/email/sales/order_update.html ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Order # {{var order.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "store url=\"customer/account/\"":"Customer Account Url",
10
+ "var comment":"Order Comment",
11
+ "var store.getFrontendName()":"Store Name"}
12
+ @-->
13
+ <!--@styles
14
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
15
+ @-->
16
+
17
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
19
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
20
+ <tr>
21
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
22
+ <!-- [ header starts here] -->
23
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
24
+ <tr>
25
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
26
+ </tr>
27
+ <!-- [ middle starts here] -->
28
+ <tr>
29
+ <td valign="top">
30
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$order.getCustomerName()}},</h1>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
32
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
33
+ <strong>{{var order.getStatusLabel()}}</strong>.
34
+ </p>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">bei Ihrem Konto anmelden</a>.</p>
36
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
37
+ <p style="font-size:12px; line-height:16px; margin:0;">
38
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
39
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
40
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
41
+ </p>
42
+ </td>
43
+ </tr>
44
+ <tr>
45
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
46
+ </tr>
47
+ </table>
48
+ </td>
49
+ </tr>
50
+ </table>
51
+ </div>
52
+ </body>
app/locale/de_DE/template/email/sales/order_update_guest.html ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Order # {{var order.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$billing.getName()":"Guest Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "var comment":"Order Comment",
10
+ "var store.getFrontendName()":"Store Name"}
11
+ @-->
12
+ <!--@styles
13
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
14
+ @-->
15
+
16
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
19
+ <tr>
20
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
21
+ <!-- [ header starts here] -->
22
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
23
+ <tr>
24
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$billing.getName()}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
31
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
32
+ <strong>{{var order.getStatusLabel()}}</strong>.
33
+ </p>
34
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
35
+ <p style="font-size:12px; line-height:16px; margin:0;">
36
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
37
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
38
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
39
+ </p>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
44
+ </tr>
45
+ </table>
46
+ </td>
47
+ </tr>
48
+ </table>
49
+ </div>
50
+ </body>
app/locale/de_DE/template/email/sales/shipment_new.html ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Shipment # {{var shipment.increment_id}} for Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "store url=\"customer/account/\"":"Customer Account Url",
9
+ "var shipment.increment_id":"Shipment Id",
10
+ "var order.increment_id":"Order Id",
11
+ "var order.billing_address.format('html')":"Billing Address",
12
+ "var payment_html":"Payment Details",
13
+ "var order.shipping_address.format('html')":"Shipping Address",
14
+ "var order.shipping_description":"Shipping Description",
15
+ "layout handle=\"sales_email_order_shipment_items\" shipment=$shipment order=$order":"Shipment Items Grid",
16
+ "block type='core/template' area='frontend' template='email/order/shipment/track.phtml' shipment=$shipment order=$order":"Shipment Track Details",
17
+ "var comment":"Shipment Comment"}
18
+ @-->
19
+ <!--@styles
20
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
21
+ @-->
22
+
23
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
24
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
25
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
26
+ <tr>
27
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
28
+ <!-- [ header starts here] -->
29
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
30
+ <tr>
31
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
32
+ </tr>
33
+ <!-- [ middle starts here] -->
34
+ <tr>
35
+ <td valign="top">
36
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$order.getCustomerName()}}</h1>
37
+ <p style="font-size:12px; line-height:16px; margin:0;">
38
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}. Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich.
39
+ bei Ihrem Konto anmelden <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter</a>.
40
+ oder rufen Sie uns an unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time <span class="nobr">{{config path='general/store_information/phone'}}</span> Ihre Lieferbestätigung ist unten aufgeführt. Haben Sie nochmals recht herzlichen Dank für Ihren Einkauf.
41
+ </p>
42
+ <p style="font-size:12px; line-height:16px; margin:0;">
43
+ Ihre Lieferung Nr. {{var shipment.increment_id}} für die Bestellung Nr. {{var order.increment_id}}.
44
+ </p>
45
+ </td>
46
+ </tr>
47
+ <tr>
48
+ <td>
49
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Rechnungsdaten</h2>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td>
54
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
55
+ <thead>
56
+ <tr>
57
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
58
+ <th width="10"></th>
59
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
60
+ </tr>
61
+ </thead>
62
+ <tbody>
63
+ <tr>
64
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
65
+ {{var order.billing_address.format('html')}}
66
+ </td>
67
+ <td>&nbsp;</td>
68
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
69
+ {{var payment_html}}
70
+ </td>
71
+ </tr>
72
+ </tbody>
73
+ </table>
74
+ <br/>
75
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
76
+ <thead>
77
+ <tr>
78
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
79
+ <th width="10"></th>
80
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Haben Sie recht herzlichen Dank:</th>
81
+ </tr>
82
+ </thead>
83
+ <tbody>
84
+ <tr>
85
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
86
+ {{var order.shipping_address.format('html')}}
87
+ &nbsp;
88
+ </td>
89
+ <td>&nbsp;</td>
90
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
91
+ {{var order.shipping_description}}
92
+ &nbsp;
93
+ </td>
94
+ </tr>
95
+ </tbody>
96
+ </table>
97
+ <br/>
98
+ {{layout handle="sales_email_order_shipment_items" shipment=$shipment order=$order}}
99
+ {{block type='core/template' area='frontend' template='email/order/shipment/track.phtml' shipment=$shipment order=$order}}
100
+ <p style="font-size:12px; margin:0 10px 10px 0">{{var comment}}</p>
101
+ </td>
102
+ </tr>
103
+ <tr>
104
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Danke!, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
105
+ </tr>
106
+ </table>
107
+ </td>
108
+ </tr>
109
+ </table>
110
+ </div>
111
+ </body>
app/locale/de_DE/template/email/sales/shipment_new_guest.html ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Shipment # {{var shipment.increment_id}} for Order # {{var order.increment_id}} @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$billing.getName()":"Guest Customer Name",
7
+ "var store.getFrontendName()":"Store Name",
8
+ "var shipment.increment_id":"Shipment Id",
9
+ "var order.increment_id":"Order Id",
10
+ "var order.billing_address.format('html')":"Billing Address",
11
+ "var payment_html":"Payment Details",
12
+ "var order.shipping_address.format('html')":"Shipping Address",
13
+ "var order.shipping_description":"Shipping Description",
14
+ "layout handle=\"sales_email_order_shipment_items\" shipment=$shipment order=$order":"Shipment Items Grid",
15
+ "block type='core/template' area='frontend' template='email/order/shipment/track.phtml' shipment=$shipment order=$order":"Shipment Track Details",
16
+ "var comment":"Shipment Comment"}
17
+ @-->
18
+ <!--@styles
19
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
20
+ @-->
21
+
22
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
23
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
24
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
25
+ <tr>
26
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
27
+ <!-- [ header starts here] -->
28
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
29
+ <tr>
30
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
31
+ </tr>
32
+ <!-- [ middle starts here] -->
33
+ <tr>
34
+ <td valign="top">
35
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;"">Hallo, {{htmlescape var=$billing.getName()}}</h1>
36
+ <p style="font-size:12px; line-height:16px; margin:0;">
37
+ Vielen&#8201;Dank für Ihre Bestellung bei {{var store.getFrontendName()}}. Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter.
38
+ Bei Fragen zu Ihrer&#8201;Bestellung wenden&#8201;Sie sich bitte an uns unter <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> oder rufen Sie uns an unter <span class="nobr">{{config path='general/store_information/phone'}}</span> Sie erreichen uns montags bis freitags von 8.00 bis 17.00 Uhr Pacific Standard Time.
39
+ </p>
40
+ <p style="font-size:12px; line-height:16px; margin:0;">
41
+ Ihre Lieferbestätigung ist unten aufgeführt. Haben Sie nochmals recht herzlichen Dank für Ihren Einkauf.
42
+ </p>
43
+ </td>
44
+ </tr>
45
+ <tr>
46
+ <td>
47
+ <h2 style="font-size:18px; font-weight:normal; margin:0;">Ihre Lieferung Nr. {{var shipment.increment_id}} für die Bestellung Nr. {{var order.increment_id}}</h2>
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td>
52
+ <table cellspacing="0" cellpadding="0" border="0" width="650">
53
+ <thead>
54
+ <tr>
55
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Rechnungsdaten:</th>
56
+ <th width="10"></th>
57
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Zahlungsform:</th>
58
+ </tr>
59
+ </thead>
60
+ <tbody>
61
+ <tr>
62
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
63
+ {{var order.billing_address.format('html')}}
64
+ </td>
65
+ <td>&nbsp;</td>
66
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
67
+ {{var payment_html}}
68
+ </td>
69
+ </tr>
70
+ </tbody>
71
+ </table>
72
+ <br/>
73
+ <table cellspacing="0" cellpadding="0" border="0" width="100%">
74
+ <thead>
75
+ <tr>
76
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Lieferdaten:</th>
77
+ <th width="10"></th>
78
+ <th align="left" width="325" bgcolor="#EAEAEA" style="font-size:13px; padding:5px 9px 6px 9px; line-height:1em;">Liefermethode:</th>
79
+ </tr>
80
+ </thead>
81
+ <tbody>
82
+ <tr>
83
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
84
+ {{var order.shipping_address.format('html')}}
85
+ &nbsp;
86
+ </td>
87
+ <td>&nbsp;</td>
88
+ <td valign="top" style="font-size:12px; padding:7px 9px 9px 9px; border-left:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; border-right:1px solid #EAEAEA;">
89
+ {{var order.shipping_description}}
90
+ &nbsp;
91
+ </td>
92
+ </tr>
93
+ </tbody>
94
+ </table>
95
+ <br/>
96
+ {{layout handle="sales_email_order_shipment_items" shipment=$shipment order=$order}}
97
+ {{block type='core/template' area='frontend' template='email/order/shipment/track.phtml' shipment=$shipment order=$order}}
98
+ <p style="font-size:12px; margin:0 10px 10px 0">{{var comment}}</p>
99
+ </td>
100
+ </tr>
101
+ <tr>
102
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Danke!, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
103
+ </tr>
104
+ </table>
105
+ </td>
106
+ </tr>
107
+ </table>
108
+ </div>
109
+ </body>
app/locale/de_DE/template/email/sales/shipment_update.html ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Shipment # {{var shipment.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$order.getCustomerName()":"Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "store url=\"customer/account/\"":"Customer Account Url",
10
+ "var comment":"Order Comment",
11
+ "var store.getFrontendName()":"Store Name"}
12
+ @-->
13
+ <!--@styles
14
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
15
+ @-->
16
+
17
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
19
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
20
+ <tr>
21
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
22
+ <!-- [ header starts here] -->
23
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
24
+ <tr>
25
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
26
+ </tr>
27
+ <!-- [ middle starts here] -->
28
+ <tr>
29
+ <td valign="top">
30
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$order.getCustomerName()}},</h1>
31
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
32
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
33
+ <strong>{{var order.getStatusLabel()}}</strong>.
34
+ </p>
35
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">Sie können den Status Ihrer Bestellung überprüfen, indem&#8201;Sie sich <a href="{{store url="customer/account/"}}" style="color:#1E7EC8;">bei Ihrem Konto anmelden</a>.</p>
36
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
37
+ <p style="font-size:12px; line-height:16px; margin:0;">
38
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
39
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
40
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
41
+ </p>
42
+ </td>
43
+ </tr>
44
+ <tr>
45
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
46
+ </tr>
47
+ </table>
48
+ </td>
49
+ </tr>
50
+ </table>
51
+ </div>
52
+ </body>
app/locale/de_DE/template/email/sales/shipment_update_guest.html ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject {{var store.getFrontendName()}}: Shipment # {{var shipment.increment_id}} update @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "htmlescape var=$billing.getName()":"Guest Customer Name",
7
+ "var order.increment_id":"Order Id",
8
+ "var order.getStatusLabel()":"Order Status",
9
+ "var comment":"Order Comment",
10
+ "var store.getFrontendName()":"Store Name"}
11
+ @-->
12
+ <!--@styles
13
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
14
+ @-->
15
+
16
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
17
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
18
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
19
+ <tr>
20
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
21
+ <!-- [ header starts here] -->
22
+ <table bgcolor="#FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
23
+ <tr>
24
+ <td valign="top"><a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
25
+ </tr>
26
+ <!-- [ middle starts here] -->
27
+ <tr>
28
+ <td valign="top">
29
+ <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Sehr geehrte(r) {{htmlescape var=$billing.getName()}},</h1>
30
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">
31
+ Ihre Bestellung mit der Nummer {{var order.increment_id}} wurde <br/>
32
+ <strong>{{var order.getStatusLabel()}}</strong>.
33
+ </p>
34
+ <p style="font-size:12px; line-height:16px; margin:0 0 10px 0;">{{var comment}}</p>
35
+ <p style="font-size:12px; line-height:16px; margin:0;">
36
+ Bei Fragen dürfen Sie sich jederzeit gerne an uns wenden unter
37
+ <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a>
38
+ oder telefonisch unter der Rufnummer {{config path='general/store_information/phone'}}.
39
+ </p>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Haben Sie nochmals recht herzlichen Dank, <strong>{{var store.getFrontendName()}}</strong></p></center></td>
44
+ </tr>
45
+ </table>
46
+ </td>
47
+ </tr>
48
+ </table>
49
+ </div>
50
+ </body>
app/locale/de_DE/template/email/sitemap_generate_warning.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <!--@subject Sitemap generate Warnings @-->
2
+ <!--@vars
3
+ {"var warnings":"Sitemap Generate Warnings"}
4
+ @-->
5
+ Von der Sitemap generierte Warnmeldungen: {{var warnings}}:
6
+
7
+
8
+ {{var warnings}}
app/locale/de_DE/template/email/token.html ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Welcome, {{var name}} @-->
2
+ <!--@vars
3
+ {"htmlescape var=$userName":"User name",
4
+ "var $applicationName":"Application name",
5
+ "var $status":"Token new status"}
6
+ @-->
7
+
8
+ Hallo, {{htmlescape var=$userName}}<br /><br />
9
+ Ihr Berechtigung für <b>{{htmlescape var=$applicationName}}</b> ist geändert worden auf <b>{{htmlescape var=$status}}</b> durch das Admin-Team.<br /><br />
app/locale/de_DE/template/email/wishlist_share.html ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--@subject Take a look at {{var customer.name}}'s wishlist @-->
2
+ <!--@vars
3
+ {"store url=\"\"":"Store Url",
4
+ "var logo_url":"Email Logo Image Url",
5
+ "var logo_alt":"Email Logo Image Alt",
6
+ "var message":"Wishlist Message",
7
+ "var items":"Wishlist Items"}
8
+ @-->
9
+ <!--@styles
10
+ body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; }
11
+ @-->
12
+
13
+ <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
14
+ <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;">
15
+ <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%">
16
+ <tr>
17
+ <td align="center" valign="top" style="padding:20px 0 20px 0">
18
+ <!-- [ header starts here] -->
19
+ <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
20
+ <tr>
21
+ <td valign="top">
22
+ <a href="{{store url=""}}" style="color:#1E7EC8;"><img src="{{var logo_url}}" alt="{{var logo_alt}}" border="0"/></a>
23
+ </td>
24
+ </tr>
25
+ <!-- [ middle starts here] -->
26
+ <tr>
27
+ <td valign="top">
28
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Hallo,<br/>schaut euch doch einmal meine Wunschliste beim&#8201;Demo-Laden an.</p>
29
+ <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">{{var message}}</p>
30
+ {{var items}}
31
+ <br/>
32
+ {{depend salable}}<p style="font-size:12px; line-height:16px; margin:0 0 8px 0;"><strong><a href="{{var addAllLink}}" style="color:#1E7EC8;">Alle Artikel in den Einkaufswagen legen</a></strong> |{{/depend}} <strong><a href="{{var viewOnSiteLink}}" style="color:#1E7EC8;">Alle Artikel auf der Wunschliste anzeigen</a></strong></p>
33
+ </td>
34
+ </tr>
35
+ <tr>
36
+ <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Herzlichen&#8201;Dank, <strong>{{htmlescape var=$customer.name}}</p></center></td>
37
+ </td>
38
+ </table>
39
+ </td>
40
+ </tr>
41
+ </table>
42
+ </div>
43
+ </body>
app/locale/en_US/Mage_AdminNotification.csv ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Actions","Actions"
2
+ "An error occurred while marking notification as read.","An error occurred while marking notification as read."
3
+ "An error occurred while marking the messages as read.","An error occurred while marking the messages as read."
4
+ "An error occurred while removing messages.","An error occurred while removing messages."
5
+ "An error occurred while removing the message.","An error occurred while removing the message."
6
+ "Are you sure?","Are you sure?"
7
+ "Date Added","Date Added"
8
+ "Last Update","Last Update"
9
+ "Mark as Read","Mark as Read"
10
+ "Mark as read","Mark as read"
11
+ "Message","Message"
12
+ "Messages Inbox","Messages Inbox"
13
+ "Notifications","Notifications"
14
+ "Please select messages.","Please select messages."
15
+ "Read Details","Read Details"
16
+ "Remove","Remove"
17
+ "Severity","Severity"
18
+ "Show List","Show List"
19
+ "Show Toolbar","Show Toolbar"
20
+ "The message has been marked as read.","The message has been marked as read."
21
+ "The message has been removed.","The message has been removed."
22
+ "Total of %d record(s) have been marked as read.","Total of %d record(s) have been marked as read."
23
+ "Total of %d record(s) have been removed.","Total of %d record(s) have been removed."
24
+ "Unable to proceed. Please, try again.","Unable to proceed. Please, try again."
25
+ "Update Frequency","Update Frequency"
26
+ "Use HTTPS to Get Feed","Use HTTPS to Get Feed"
27
+ "Wrong message type","Wrong message type"
28
+ "critical","critical"
29
+ "major","major"
30
+ "minor","minor"
31
+ "notice","notice"
app/locale/en_US/Mage_Adminhtml.csv ADDED
@@ -0,0 +1,1215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " The customer does not exist in the system anymore."," The customer does not exist in the system anymore."
2
+ " [deleted]"," [deleted]"
3
+ " and "," and "
4
+ "%s (Default Template from Locale)","%s (Default Template from Locale)"
5
+ "%s cache type(s) disabled.","%s cache type(s) disabled."
6
+ "%s cache type(s) enabled.","%s cache type(s) enabled."
7
+ "%s cache type(s) refreshed.","%s cache type(s) refreshed."
8
+ "(For Type ""Local Server"" need to use relative path to Magento install var/export or var/import, e.g. var/export, var/import, var/export/some/dir, var/import/some/dir)","(For Type ""Local Server"" need to use relative path to Magento install var/export or var/import, e.g. var/export, var/import, var/export/some/dir, var/import/some/dir)"
9
+ "(For US 2-letter state names)","(For US 2-letter state names)"
10
+ "(If left empty will be auto-generated)","(If left empty will be auto-generated)"
11
+ "(Leave empty for first spreadsheet)","(Leave empty for first spreadsheet)"
12
+ "(Products will be added/updated to this store if 'store' column is blank or missing in the import file.)","(Products will be added/updated to this store if 'store' column is blank or missing in the import file.)"
13
+ "(Shift-)Click or drag to change value","(Shift-)Click or drag to change value"
14
+ "(Starting with)","(Starting with)"
15
+ "(When 'No', only mapped fields will be imported. When mapping, use 'column1', 'column2', etc.)","(When 'No', only mapped fields will be imported. When mapping, use 'column1', 'column2', etc.)"
16
+ "(You have to increase php memory_limit before changing this value)","(You have to increase php memory_limit before changing this value)"
17
+ "(\\t for tab)","(\\t for tab)"
18
+ "* - If indexing is in progress, it will be killed and new indexing process will start.","* - If indexing is in progress, it will be killed and new indexing process will start."
19
+ "* Required Fields","* Required Fields"
20
+ "- Click on any of the time parts to increase it","- Click on any of the time parts to increase it"
21
+ "- Hold mouse button on any of the above buttons for faster selection.","- Hold mouse button on any of the above buttons for faster selection."
22
+ "- Use the %s buttons to select month","- Use the %s buttons to select month"
23
+ "- Use the %s, %s buttons to select year","- Use the %s, %s buttons to select year"
24
+ "- or Shift-click to decrease it","- or Shift-click to decrease it"
25
+ "- or click and drag for faster selection.","- or click and drag for faster selection."
26
+ "-- Not Selected --","-- Not Selected --"
27
+ "-- Please Select --","-- Please Select --"
28
+ "-- Please Select Billing Agreement--","-- Please Select Billing Agreement--"
29
+ "-- Please Select a Category --","-- Please Select a Category --"
30
+ "-- Please select --","-- Please select --"
31
+ "--Please Select--","--Please Select--"
32
+ "1 Hour","1 Hour"
33
+ "12 Hours","12 Hours"
34
+ "12h AM/PM","12h AM/PM"
35
+ "2 Hours","2 Hours"
36
+ "24 Hours","24 Hours"
37
+ "24h","24h"
38
+ "2YTD","2YTD"
39
+ "6 Hours","6 Hours"
40
+ "<h1 class=""page-heading"">404 Error</h1><p>Page not found.</p>","<h1 class=""page-heading"">404 Error</h1><p>Page not found.</p>"
41
+ "<strong>%s</strong> requests access to your account","<strong>%s</strong> requests access to your account"
42
+ "<strong>Attention</strong>: Captcha is case sensitive.","<strong>Attention</strong>: Captcha is case sensitive."
43
+ "A user with the same user name or email aleady exists.","A user with the same user name or email aleady exists."
44
+ "API Key","API Key"
45
+ "API Key Confirmation","API Key Confirmation"
46
+ "ASCII","ASCII"
47
+ "Abandoned Carts","Abandoned Carts"
48
+ "About the calendar","About the calendar"
49
+ "Access Denied","Access Denied"
50
+ "Access denied","Access denied"
51
+ "Access denied.","Access denied."
52
+ "Account Created in:","Account Created in:"
53
+ "Account Created on (%s):","Account Created on (%s):"
54
+ "Account Created on:","Account Created on:"
55
+ "Account Information","Account Information"
56
+ "Account Status","Account Status"
57
+ "Account status","Account status"
58
+ "Action","Action"
59
+ "Actions","Actions"
60
+ "Actions XML","Actions XML"
61
+ "Active","Active"
62
+ "Add","Add"
63
+ "Add Exception","Add Exception"
64
+ "Add Field Mapping","Add Field Mapping"
65
+ "Add Field with URL:","Add Field with URL:"
66
+ "Add New","Add New"
67
+ "Add New Image","Add New Image"
68
+ "Add New Profile","Add New Profile"
69
+ "Add New Role","Add New Role"
70
+ "Add New Template","Add New Template"
71
+ "Add New URL Rewrite","Add New URL Rewrite"
72
+ "Add New User","Add New User"
73
+ "Add New Variable","Add New Variable"
74
+ "Add Products","Add Products"
75
+ "Add URL Rewrite","Add URL Rewrite"
76
+ "Add URL Rewrite for a Category","Add URL Rewrite for a Category"
77
+ "Add URL Rewrite for a Product","Add URL Rewrite for a Product"
78
+ "Add after","Add after"
79
+ "Additional Cache Management","Additional Cache Management"
80
+ "Address Type:","Address Type:"
81
+ "Admin","Admin"
82
+ "Advanced Admin Section","Advanced Admin Section"
83
+ "Advanced Profiles","Advanced Profiles"
84
+ "Advanced Section","Advanced Section"
85
+ "After authorization application will have access to you account.","After authorization application will have access to you account."
86
+ "All","All"
87
+ "All Allowed Countries","All Allowed Countries"
88
+ "All Cache","All Cache"
89
+ "All Files","All Files"
90
+ "All Reviews","All Reviews"
91
+ "All Store Views","All Store Views"
92
+ "All Tags","All Tags"
93
+ "All Websites","All Websites"
94
+ "All countries","All countries"
95
+ "All fields","All fields"
96
+ "All possible rates were fetched, please click on ""Save"" to apply","All possible rates were fetched, please click on ""Save"" to apply"
97
+ "All rates were fetched, please click on ""Save"" to apply","All rates were fetched, please click on ""Save"" to apply"
98
+ "All valid rates have been saved.","All valid rates have been saved."
99
+ "Always (during development)","Always (during development)"
100
+ "Amounts","Amounts"
101
+ "An error has occured while syncronizing media storages.","An error has occured while syncronizing media storages."
102
+ "An error occurred while clearing the JavaScript/CSS cache.","An error occurred while clearing the JavaScript/CSS cache."
103
+ "An error occurred while clearing the image cache.","An error occurred while clearing the image cache."
104
+ "An error occurred while deleting URL Rewrite.","An error occurred while deleting URL Rewrite."
105
+ "An error occurred while deleting email template data. Please review log and try again.","An error occurred while deleting email template data. Please review log and try again."
106
+ "An error occurred while deleting record(s).","An error occurred while deleting record(s)."
107
+ "An error occurred while deleting this role.","An error occurred while deleting this role."
108
+ "An error occurred while deleting this set.","An error occurred while deleting this set."
109
+ "An error occurred while deleting this template.","An error occurred while deleting this template."
110
+ "An error occurred while finishing process. Please refresh the cache","An error occurred while finishing process. Please refresh the cache"
111
+ "An error occurred while rebuilding the CatalogInventory Stock Status.","An error occurred while rebuilding the CatalogInventory Stock Status."
112
+ "An error occurred while rebuilding the catalog index.","An error occurred while rebuilding the catalog index."
113
+ "An error occurred while rebuilding the flat catalog category.","An error occurred while rebuilding the flat catalog category."
114
+ "An error occurred while rebuilding the flat product catalog.","An error occurred while rebuilding the flat product catalog."
115
+ "An error occurred while rebuilding the search index.","An error occurred while rebuilding the search index."
116
+ "An error occurred while refreshing the Catalog Rewrites.","An error occurred while refreshing the Catalog Rewrites."
117
+ "An error occurred while refreshing the Layered Navigation indices.","An error occurred while refreshing the Layered Navigation indices."
118
+ "An error occurred while refreshing the catalog rewrites.","An error occurred while refreshing the catalog rewrites."
119
+ "An error occurred while refreshing the layered navigation indices.","An error occurred while refreshing the layered navigation indices."
120
+ "An error occurred while saving URL Rewrite.","An error occurred while saving URL Rewrite."
121
+ "An error occurred while saving account.","An error occurred while saving account."
122
+ "An error occurred while saving review.","An error occurred while saving review."
123
+ "An error occurred while saving the customer.","An error occurred while saving the customer."
124
+ "An error occurred while saving this configuration:","An error occurred while saving this configuration:"
125
+ "An error occurred while saving this role.","An error occurred while saving this role."
126
+ "An error occurred while saving this template.","An error occurred while saving this template."
127
+ "An error occurred while updating the selected review(s).","An error occurred while updating the selected review(s)."
128
+ "Any","Any"
129
+ "Any Attribute Set","Any Attribute Set"
130
+ "Any Group","Any Group"
131
+ "Any Status","Any Status"
132
+ "Any Store","Any Store"
133
+ "Any Type","Any Type"
134
+ "Any Visibility","Any Visibility"
135
+ "Any data created since the backup was made will be lost including admin users, customers and orders.","Any data created since the backup was made will be lost including admin users, customers and orders."
136
+ "Archive file name:","Archive file name:"
137
+ "Are you sure that you want to delete this template?","Are you sure that you want to delete this template?"
138
+ "Are you sure that you want to strip tags?","Are you sure that you want to strip tags?"
139
+ "Are you sure you want to do this?","Are you sure you want to do this?"
140
+ "Are you sure you want to proceed?","Are you sure you want to proceed?"
141
+ "Area","Area"
142
+ "As low as:","As low as:"
143
+ "Assigned","Assigned"
144
+ "Associated Tags","Associated Tags"
145
+ "Attribute Set Name:","Attribute Set Name:"
146
+ "Attributes","Attributes"
147
+ "Authorization confirmed","Authorization confirmed"
148
+ "Authorize","Authorize"
149
+ "Authorize application","Authorize application"
150
+ "Authorized OAuth Tokens","Authorized OAuth Tokens"
151
+ "Automatic (equalize price ranges)","Automatic (equalize price ranges)"
152
+ "Automatic (equalize product counts)","Automatic (equalize product counts)"
153
+ "Average Order Amount","Average Order Amount"
154
+ "Average Orders","Average Orders"
155
+ "BINARY","BINARY"
156
+ "Back","Back"
157
+ "Back to Login","Back to Login"
158
+ "Backup","Backup"
159
+ "Backup Name","Backup Name"
160
+ "Backup options","Backup options"
161
+ "Backups","Backups"
162
+ "Base currency","Base currency"
163
+ "Bcc","Bcc"
164
+ "Bestsellers","Bestsellers"
165
+ "Billing Address","Billing Address"
166
+ "Billing Address: ","Billing Address: "
167
+ "Billing Agreement","Billing Agreement"
168
+ "Billing Agreements","Billing Agreements"
169
+ "Block Information","Block Information"
170
+ "Both (without and with tax)","Both (without and with tax)"
171
+ "Both IPN and PDT","Both IPN and PDT"
172
+ "Browse Files...","Browse Files..."
173
+ "Bundle with dynamic pricing cannot include custom defined options. Options will not be saved.","Bundle with dynamic pricing cannot include custom defined options. Options will not be saved."
174
+ "CMS","CMS"
175
+ "CRITICAL","CRITICAL"
176
+ "CSV","CSV"
177
+ "CSV / Tab separated","CSV / Tab separated"
178
+ "Cache Control","Cache Control"
179
+ "Cache Control (beta)","Cache Control (beta)"
180
+ "Cache Management","Cache Management"
181
+ "Cache Type","Cache Type"
182
+ "Cancel","Cancel"
183
+ "Cannot add new comment.","Cannot add new comment."
184
+ "Cannot add tracking number.","Cannot add tracking number."
185
+ "Cannot create an invoice without products.","Cannot create an invoice without products."
186
+ "Cannot create credit memo for the order.","Cannot create credit memo for the order."
187
+ "Cannot delete the design change.","Cannot delete the design change."
188
+ "Cannot delete tracking number.","Cannot delete tracking number."
189
+ "Cannot do shipment for the order separately from invoice.","Cannot do shipment for the order separately from invoice."
190
+ "Cannot do shipment for the order.","Cannot do shipment for the order."
191
+ "Cannot initialize shipment for adding tracking number.","Cannot initialize shipment for adding tracking number."
192
+ "Cannot initialize shipment for delete tracking number.","Cannot initialize shipment for delete tracking number."
193
+ "Cannot load track with retrieving identifier.","Cannot load track with retrieving identifier."
194
+ "Cannot retrieve tracking number detail.","Cannot retrieve tracking number detail."
195
+ "Cannot save shipment.","Cannot save shipment."
196
+ "Cannot save the credit memo.","Cannot save the credit memo."
197
+ "Cannot send shipment information.","Cannot send shipment information."
198
+ "Cannot update item quantity.","Cannot update item quantity."
199
+ "Cannot update the item\'s quantity.","Cannot update the item\'s quantity."
200
+ "Card Verification Number","Card Verification Number"
201
+ "Catalog","Catalog"
202
+ "Catalog Price Rules","Catalog Price Rules"
203
+ "Catalog Rewrites","Catalog Rewrites"
204
+ "Categories","Categories"
205
+ "Category","Category"
206
+ "Category:","Category:"
207
+ "Chart is disabled. If you want to enable chart, click <a href=""%s"">here</a>.","Chart is disabled. If you want to enable chart, click <a href=""%s"">here</a>."
208
+ "Checkbox","Checkbox"
209
+ "Child Transactions","Child Transactions"
210
+ "Choose Store View:","Choose Store View:"
211
+ "Choose an attribute","Choose an attribute"
212
+ "Chosen category does not associated with any website, so url rewrite is not possible.","Chosen category does not associated with any website, so url rewrite is not possible."
213
+ "Chosen product does not associated with any website, so url rewrite is not possible.","Chosen product does not associated with any website, so url rewrite is not possible."
214
+ "Clear","Clear"
215
+ "Close","Close"
216
+ "Code","Code"
217
+ "Comment text field cannot be empty.","Comment text field cannot be empty."
218
+ "Complete","Complete"
219
+ "Config form fieldset clone model required to be able to clone fields","Config form fieldset clone model required to be able to clone fields"
220
+ "Configuration","Configuration"
221
+ "Confirm New Password","Confirm New Password"
222
+ "Confirm token authorization Pop Up for admin","Confirm token authorization Pop Up for admin"
223
+ "Confirm token authorization for admin","Confirm token authorization for admin"
224
+ "Confirmation Of Authorization","Confirmation Of Authorization"
225
+ "Confirmed email:","Confirmed email:"
226
+ "Connect with the Magento Community","Connect with the Magento Community"
227
+ "Continue","Continue"
228
+ "Convert to Plain Text","Convert to Plain Text"
229
+ "Cookie (unsafe)","Cookie (unsafe)"
230
+ "Country","Country"
231
+ "Country:","Country:"
232
+ "Coupons","Coupons"
233
+ "Create","Create"
234
+ "Create DB Backup","Create DB Backup"
235
+ "Create New Attribute","Create New Attribute"
236
+ "Create URL Rewrite:","Create URL Rewrite:"
237
+ "Created At","Created At"
238
+ "Credit Card %s","Credit Card %s"
239
+ "Credit Card Number","Credit Card Number"
240
+ "Credit Card Number: xxxx-%s","Credit Card Number: xxxx-%s"
241
+ "Credit Card Type","Credit Card Type"
242
+ "Credit Card Type: %s","Credit Card Type: %s"
243
+ "Credit Memo History","Credit Memo History"
244
+ "Credit Memo Totals","Credit Memo Totals"
245
+ "Credit Memos","Credit Memos"
246
+ "Credit memo #%s comment added","Credit memo #%s comment added"
247
+ "Credit memo #%s created","Credit memo #%s created"
248
+ "Credit memo\'s total must be positive.","Credit memo\'s total must be positive."
249
+ "Currency","Currency"
250
+ "Currency ""%s"" is used as %s in %s.","Currency ""%s"" is used as %s in %s."
251
+ "Currency Information","Currency Information"
252
+ "Currency Setup Section","Currency Setup Section"
253
+ "Current Configuration Scope:","Current Configuration Scope:"
254
+ "Current Month","Current Month"
255
+ "Custom","Custom"
256
+ "Custom Variable ""%s""","Custom Variable ""%s"""
257
+ "Custom Variables","Custom Variables"
258
+ "Customer","Customer"
259
+ "Customer Group:","Customer Group:"
260
+ "Customer Groups","Customer Groups"
261
+ "Customer Name","Customer Name"
262
+ "Customer Reviews","Customer Reviews"
263
+ "Customer Shopping Carts","Customer Shopping Carts"
264
+ "Customer Since:","Customer Since:"
265
+ "Customer Tax Classes","Customer Tax Classes"
266
+ "Customer with the same email already exists.","Customer with the same email already exists."
267
+ "Customers","Customers"
268
+ "Customers by Number of Orders","Customers by Number of Orders"
269
+ "Customers by Orders Total","Customers by Orders Total"
270
+ "DHTML Date/Time Selector","DHTML Date/Time Selector"
271
+ "Dashboard","Dashboard"
272
+ "Data Format","Data Format"
273
+ "Data transfer:","Data transfer:"
274
+ "Database","Database"
275
+ "Dataflow - Advanced Profiles","Dataflow - Advanced Profiles"
276
+ "Dataflow - Profiles","Dataflow - Profiles"
277
+ "Date","Date"
278
+ "Date & Time","Date & Time"
279
+ "Date Added","Date Added"
280
+ "Date Updated","Date Updated"
281
+ "Date selection:","Date selection:"
282
+ "Date selector","Date selector"
283
+ "Day","Day"
284
+ "Decimal separator:","Decimal separator:"
285
+ "Default (Admin) Values","Default (Admin) Values"
286
+ "Default Billing Address","Default Billing Address"
287
+ "Default Config","Default Config"
288
+ "Default Template from Locale","Default Template from Locale"
289
+ "Default Values","Default Values"
290
+ "Default display currency ""%s"" is not available in allowed currencies.","Default display currency ""%s"" is not available in allowed currencies."
291
+ "Default scope","Default scope"
292
+ "Delete","Delete"
293
+ "Delete %s","Delete %s"
294
+ "Delete %s '%s'","Delete %s '%s'"
295
+ "Delete File","Delete File"
296
+ "Delete Image","Delete Image"
297
+ "Delete Profile","Delete Profile"
298
+ "Delete Role","Delete Role"
299
+ "Delete Store","Delete Store"
300
+ "Delete Store View","Delete Store View"
301
+ "Delete Template","Delete Template"
302
+ "Delete User","Delete User"
303
+ "Delete Website","Delete Website"
304
+ "Description","Description"
305
+ "Design","Design"
306
+ "Design Section","Design Section"
307
+ "Details","Details"
308
+ "Developer Section","Developer Section"
309
+ "Direction:","Direction:"
310
+ "Disable","Disable"
311
+ "Disabled","Disabled"
312
+ "Display %s first","Display %s first"
313
+ "Display default currency","Display default currency"
314
+ "Distributed under GNU LGPL. See %s for details.","Distributed under GNU LGPL. See %s for details."
315
+ "Do you really want to KILL parallel process and start new indexing process?","Do you really want to KILL parallel process and start new indexing process?"
316
+ "Do you really want to proceed?","Do you really want to proceed?"
317
+ "Download","Download"
318
+ "Downloads","Downloads"
319
+ "Drag to move","Drag to move"
320
+ "Drop-down","Drop-down"
321
+ "Edit","Edit"
322
+ "Edit Design Change","Edit Design Change"
323
+ "Edit Email Template","Edit Email Template"
324
+ "Edit Order","Edit Order"
325
+ "Edit Poll","Edit Poll"
326
+ "Edit Queue","Edit Queue"
327
+ "Edit Review","Edit Review"
328
+ "Edit Role","Edit Role"
329
+ "Edit Store View","Edit Store View"
330
+ "Edit System Template","Edit System Template"
331
+ "Edit Template","Edit Template"
332
+ "Edit URL Rewrite","Edit URL Rewrite"
333
+ "Edit User","Edit User"
334
+ "Edit User '%s'","Edit User '%s'"
335
+ "Edit Website","Edit Website"
336
+ "Email","Email"
337
+ "Email Address:","Email Address:"
338
+ "Email Preview","Email Preview"
339
+ "Email to a Friend","Email to a Friend"
340
+ "Email:","Email:"
341
+ "Enable","Enable"
342
+ "Enabled","Enabled"
343
+ "Enclose Values In:","Enclose Values In:"
344
+ "Entity Attributes","Entity Attributes"
345
+ "Entity Type","Entity Type"
346
+ "Entity type:","Entity type:"
347
+ "Error","Error"
348
+ "Excel XML","Excel XML"
349
+ "Excl. Tax","Excl. Tax"
350
+ "Exclude media folder from backup","Exclude media folder from backup"
351
+ "Expiration Date","Expiration Date"
352
+ "Expiration Date: %s/%s","Expiration Date: %s/%s"
353
+ "Export","Export"
354
+ "Export CSV","Export CSV"
355
+ "Export Filters","Export Filters"
356
+ "Export to:","Export to:"
357
+ "Export:","Export:"
358
+ "FTP Host","FTP Host"
359
+ "FTP Host[:Port]","FTP Host[:Port]"
360
+ "FTP Login","FTP Login"
361
+ "FTP Password","FTP Password"
362
+ "FTP credentials","FTP credentials"
363
+ "Failed","Failed"
364
+ "Failed to add a product to cart by id ""%s"".","Failed to add a product to cart by id ""%s""."
365
+ "Failed to cancel the billing agreement.","Failed to cancel the billing agreement."
366
+ "Failed to clear the JavaScript/CSS cache.","Failed to clear the JavaScript/CSS cache."
367
+ "Failed to delete the billing agreement.","Failed to delete the billing agreement."
368
+ "Failed to update the profile.","Failed to update the profile."
369
+ "Field","Field"
370
+ "Field Mapping","Field Mapping"
371
+ "File","File"
372
+ "File Information","File Information"
373
+ "File System","File System"
374
+ "File mode","File mode"
375
+ "File name:","File name:"
376
+ "File size should be more than 0 bytes","File size should be more than 0 bytes"
377
+ "Finished profile execution.","Finished profile execution."
378
+ "First Invoice Created Date","First Invoice Created Date"
379
+ "First Name","First Name"
380
+ "First Name is required field.","First Name is required field."
381
+ "First Name:","First Name:"
382
+ "Fixed","Fixed"
383
+ "Flush Catalog Images Cache","Flush Catalog Images Cache"
384
+ "Flush JavaScript/CSS Cache","Flush JavaScript/CSS Cache"
385
+ "For category","For category"
386
+ "For latest version visit: %s","For latest version visit: %s"
387
+ "For product","For product"
388
+ "Forgot Admin Password","Forgot Admin Password"
389
+ "Forgot your password?","Forgot your password?"
390
+ "Forgot your user name or password?","Forgot your user name or password?"
391
+ "From","From"
392
+ "GLOBAL","GLOBAL"
393
+ "Gb","Gb"
394
+ "General Information","General Information"
395
+ "General Section","General Section"
396
+ "Get Image Base64","Get Image Base64"
397
+ "Get help for this page","Get help for this page"
398
+ "Give the verifier code to application administrator","Give the verifier code to application administrator"
399
+ "Global Attribute","Global Attribute"
400
+ "Global Record Search","Global Record Search"
401
+ "Global Search","Global Search"
402
+ "Go Today","Go Today"
403
+ "Go to messages inbox","Go to messages inbox"
404
+ "Go to notifications","Go to notifications"
405
+ "Google Base","Google Base"
406
+ "Google Content","Google Content"
407
+ "Google Sitemaps","Google Sitemaps"
408
+ "Grand Total","Grand Total"
409
+ "Grid (default) / List","Grid (default) / List"
410
+ "Grid Only","Grid Only"
411
+ "Group:","Group:"
412
+ "Guest","Guest"
413
+ "HTTP (unsecure)","HTTP (unsecure)"
414
+ "HTTPS (SSL)","HTTPS (SSL)"
415
+ "Help Us Keep Magento Healthy - Report All Bugs","Help Us Keep Magento Healthy - Report All Bugs"
416
+ "Helper attributes should not be used in custom layout updates.","Helper attributes should not be used in custom layout updates."
417
+ "Helper for options rendering doesn't implement required interface.","Helper for options rendering doesn't implement required interface."
418
+ "Home","Home"
419
+ "ID","ID"
420
+ "ID Path","ID Path"
421
+ "IP Address","IP Address"
422
+ "IPN (Instant Payment Notification) Only","IPN (Instant Payment Notification) Only"
423
+ "Id","Id"
424
+ "If there is an account associated with %s you will receive an email with a link to reset your password.","If there is an account associated with %s you will receive an email with a link to reset your password."
425
+ "If this message persists, please contact the store owner.","If this message persists, please contact the store owner."
426
+ "If you do not specify an option value for a specific store view then the default (Admin) value will be used.","If you do not specify an option value for a specific store view then the default (Admin) value will be used."
427
+ "Images (.gif, .jpg, .png)","Images (.gif, .jpg, .png)"
428
+ "Images Cache","Images Cache"
429
+ "Import","Import"
430
+ "Import Service","Import Service"
431
+ "Import and Export","Import and Export"
432
+ "Import and Export Tax Rates","Import and Export Tax Rates"
433
+ "Import/Export","Import/Export"
434
+ "Import/Export Advanced","Import/Export Advanced"
435
+ "Import/Export Profile","Import/Export Profile"
436
+ "Important: ","Important: "
437
+ "Imported <strong>%s</strong> records","Imported <strong>%s</strong> records"
438
+ "In","In"
439
+ "In Database:","In Database:"
440
+ "In File:","In File:"
441
+ "Inactive","Inactive"
442
+ "Incl. Tax","Incl. Tax"
443
+ "Incoming Message","Incoming Message"
444
+ "Insert Variable...","Insert Variable..."
445
+ "Interactive","Interactive"
446
+ "Interface Locale: %s","Interface Locale: %s"
447
+ "Invalid Form Key. Please refresh the page.","Invalid Form Key. Please refresh the page."
448
+ "Invalid Import Service Specified","Invalid Import Service Specified"
449
+ "Invalid POST data (please check post_max_size and upload_max_filesize settings in your php.ini file).","Invalid POST data (please check post_max_size and upload_max_filesize settings in your php.ini file)."
450
+ "Invalid Secret Key. Please refresh the page.","Invalid Secret Key. Please refresh the page."
451
+ "Invalid User Name or Password.","Invalid User Name or Password."
452
+ "Invalid directory: %s","Invalid directory: %s"
453
+ "Invalid email address ""%s"".","Invalid email address ""%s""."
454
+ "Invalid email address.","Invalid email address."
455
+ "Invalid file: %s","Invalid file: %s"
456
+ "Invalid input data for %s => %s rate","Invalid input data for %s => %s rate"
457
+ "Invalid parent block for this block","Invalid parent block for this block"
458
+ "Invalid parent block for this block.","Invalid parent block for this block."
459
+ "Invalid password reset token.","Invalid password reset token."
460
+ "Invalid sender name ""%s"". Please use only visible characters and spaces.","Invalid sender name ""%s"". Please use only visible characters and spaces."
461
+ "Invalid timezone","Invalid timezone"
462
+ "Invalidated","Invalidated"
463
+ "Inventory Stock Status","Inventory Stock Status"
464
+ "Invoice #%s comment added","Invoice #%s comment added"
465
+ "Invoice #%s created","Invoice #%s created"
466
+ "Invoice History","Invoice History"
467
+ "Invoice Totals","Invoice Totals"
468
+ "Invoice canceling error.","Invoice canceling error."
469
+ "Invoice capturing error.","Invoice capturing error."
470
+ "Invoice voiding error.","Invoice voiding error."
471
+ "Invoices","Invoices"
472
+ "Is Closed","Is Closed"
473
+ "Is Default","Is Default"
474
+ "Issue Number","Issue Number"
475
+ "Items","Items"
476
+ "JavaScript seems to be disabled in your browser.","JavaScript seems to be disabled in your browser."
477
+ "JavaScript/CSS","JavaScript/CSS"
478
+ "JavaScript/CSS Cache","JavaScript/CSS Cache"
479
+ "Kb","Kb"
480
+ "Last 24 Hours","Last 24 Hours"
481
+ "Last 5 Orders","Last 5 Orders"
482
+ "Last 5 Search Terms","Last 5 Search Terms"
483
+ "Last 7 Days","Last 7 Days"
484
+ "Last Credit Memo Created Date","Last Credit Memo Created Date"
485
+ "Last Invoice Created Date","Last Invoice Created Date"
486
+ "Last Logged In (%s):","Last Logged In (%s):"
487
+ "Last Logged In:","Last Logged In:"
488
+ "Last Name","Last Name"
489
+ "Last Name is required field.","Last Name is required field."
490
+ "Last Name:","Last Name:"
491
+ "Last updated: %s. To refresh last day\'s <a href=""%s"">statistics</a>, click <a href=""%s"">here</a>.","Last updated: %s. To refresh last day\'s <a href=""%s"">statistics</a>, click <a href=""%s"">here</a>."
492
+ "Latest Message:","Latest Message:"
493
+ "Layered Navigation Indices","Layered Navigation Indices"
494
+ "Layered Navigation Indices were refreshed.","Layered Navigation Indices were refreshed."
495
+ "Leave empty to use tax identifier","Leave empty to use tax identifier"
496
+ "Lifetime Sales","Lifetime Sales"
497
+ "Lifetime statistics have been updated.","Lifetime statistics have been updated."
498
+ "Links","Links"
499
+ "Links with associated products will retain only after saving current product.","Links with associated products will retain only after saving current product."
500
+ "List (default) / Grid","List (default) / Grid"
501
+ "List Only","List Only"
502
+ "Load Template","Load Template"
503
+ "Load default template","Load default template"
504
+ "Loading...","Loading..."
505
+ "Local Server","Local Server"
506
+ "Local/Remote Server","Local/Remote Server"
507
+ "Locale","Locale"
508
+ "Log In","Log In"
509
+ "Log Out","Log Out"
510
+ "Log in to Admin Panel","Log in to Admin Panel"
511
+ "Log in to use <strong>%s</strong>","Log in to use <strong>%s</strong>"
512
+ "Log into Magento Admin Page","Log into Magento Admin Page"
513
+ "Logged in as %s","Logged in as %s"
514
+ "Login","Login"
515
+ "Low Stock","Low Stock"
516
+ "MAJOR","MAJOR"
517
+ "MINOR","MINOR"
518
+ "MS Excel XML","MS Excel XML"
519
+ "Magento Admin","Magento Admin"
520
+ "Magento Commerce - Administrative Panel","Magento Commerce - Administrative Panel"
521
+ "Magento Connect","Magento Connect"
522
+ "Magento Connect Manager","Magento Connect Manager"
523
+ "Magento Logo","Magento Logo"
524
+ "Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.","Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc."
525
+ "Magento root directory","Magento root directory"
526
+ "Magento ver. %s","Magento ver. %s"
527
+ "Magento&trade; is a trademark of Magento Inc.<br/>Copyright &copy; %s Magento Inc.","Magento&trade; is a trademark of Magento Inc.<br/>Copyright &copy; %s Magento Inc."
528
+ "Make sure that data encoding in the file is consistent and saved in one of supported encodings (UTF-8 or ANSI).","Make sure that data encoding in the file is consistent and saved in one of supported encodings (UTF-8 or ANSI)."
529
+ "Manage Attribute Sets","Manage Attribute Sets"
530
+ "Manage Attributes","Manage Attributes"
531
+ "Manage Categories","Manage Categories"
532
+ "Manage Content","Manage Content"
533
+ "Manage Currency Rates","Manage Currency Rates"
534
+ "Manage Currency Symbols","Manage Currency Symbols"
535
+ "Manage Customers","Manage Customers"
536
+ "Manage Options (values of your attribute)","Manage Options (values of your attribute)"
537
+ "Manage Ratings","Manage Ratings"
538
+ "Manage Stores","Manage Stores"
539
+ "Manage Tax Rules","Manage Tax Rules"
540
+ "Manage Tax Zones and Rates","Manage Tax Zones and Rates"
541
+ "Manage Titles (Size, Color, etc.)","Manage Titles (Size, Color, etc.)"
542
+ "Manual","Manual"
543
+ "Matched Expression","Matched Expression"
544
+ "Maximum sender name length is 255. Please correct your settings.","Maximum sender name length is 255. Please correct your settings."
545
+ "Mb","Mb"
546
+ "Media (.avi, .flv, .swf)","Media (.avi, .flv, .swf)"
547
+ "Media storages synchronization has completed!","Media storages synchronization has completed!"
548
+ "Messages Inbox","Messages Inbox"
549
+ "Month","Month"
550
+ "Most Viewed","Most Viewed"
551
+ "Most Viewed Products","Most Viewed Products"
552
+ "Multiple Select","Multiple Select"
553
+ "My Account","My Account"
554
+ "My Applications","My Applications"
555
+ "N/A","N/A"
556
+ "NOTICE","NOTICE"
557
+ "Name","Name"
558
+ "Name on Card","Name on Card"
559
+ "Name on the Card: %s","Name on the Card: %s"
560
+ "Name:","Name:"
561
+ "Never (production)","Never (production)"
562
+ "New ","New "
563
+ "New API Key","New API Key"
564
+ "New Accounts","New Accounts"
565
+ "New Attribute","New Attribute"
566
+ "New Block","New Block"
567
+ "New Category","New Category"
568
+ "New Class","New Class"
569
+ "New Condition","New Condition"
570
+ "New Custom Variable","New Custom Variable"
571
+ "New Customer","New Customer"
572
+ "New Customers","New Customers"
573
+ "New Design Change","New Design Change"
574
+ "New Email Template","New Email Template"
575
+ "New Group","New Group"
576
+ "New Invoice","New Invoice"
577
+ "New Item Type","New Item Type"
578
+ "New Memo","New Memo"
579
+ "New Memo for #%s","New Memo for #%s"
580
+ "New Page","New Page"
581
+ "New Password","New Password"
582
+ "New Poll","New Poll"
583
+ "New Profile","New Profile"
584
+ "New Rate","New Rate"
585
+ "New Rating","New Rating"
586
+ "New Review","New Review"
587
+ "New Role","New Role"
588
+ "New Rule","New Rule"
589
+ "New Search","New Search"
590
+ "New Set","New Set"
591
+ "New Shipment","New Shipment"
592
+ "New Sitemap","New Sitemap"
593
+ "New Store View","New Store View"
594
+ "New System Template","New System Template"
595
+ "New Tag","New Tag"
596
+ "New Template","New Template"
597
+ "New User","New User"
598
+ "New Variable","New Variable"
599
+ "New Website","New Website"
600
+ "New attribute set mapping","New attribute set mapping"
601
+ "New password field cannot be empty.","New password field cannot be empty."
602
+ "Newsletter","Newsletter"
603
+ "Newsletter Problems","Newsletter Problems"
604
+ "Newsletter Queue","Newsletter Queue"
605
+ "Newsletter Subscribers","Newsletter Subscribers"
606
+ "Newsletter Templates","Newsletter Templates"
607
+ "Next month (hold for menu)","Next month (hold for menu)"
608
+ "Next year (hold for menu)","Next year (hold for menu)"
609
+ "No","No"
610
+ "No (price without tax)","No (price without tax)"
611
+ "No Data","No Data"
612
+ "No Data Found","No Data Found"
613
+ "No Templates Found","No Templates Found"
614
+ "No change","No change"
615
+ "No customer id defined.","No customer id defined."
616
+ "No information available.","No information available."
617
+ "No profile loaded...","No profile loaded..."
618
+ "No records found for this period.","No records found for this period."
619
+ "No records found.","No records found."
620
+ "No report code specified.","No report code specified."
621
+ "No search keywords.","No search keywords."
622
+ "No search modules were registered","No search modules were registered"
623
+ "No wishlist item id defined.","No wishlist item id defined."
624
+ "None","None"
625
+ "Note:","Note:"
626
+ "Notes","Notes"
627
+ "Notifications","Notifications"
628
+ "Number of Orders","Number of Orders"
629
+ "Number of Uses","Number of Uses"
630
+ "Number of Views","Number of Views"
631
+ "Number of records:","Number of records:"
632
+ "OAuth Consumers","OAuth Consumers"
633
+ "OAuth authorization for admin","OAuth authorization for admin"
634
+ "OAuth authorization simple for admin","OAuth authorization simple for admin"
635
+ "OK","OK"
636
+ "Old rate:","Old rate:"
637
+ "Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Advanced account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
638
+ "Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below","Once you log into your PayPal Payflow Link account, navigate to the Service Settings - Hosted Checkout Pages - Set Up menu and set the options described below"
639
+ "One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages syncronization process. Refer to the log file for details."
640
+ "One or more of the Cache Types are invalidated:","One or more of the Cache Types are invalidated:"
641
+ "Online Customers","Online Customers"
642
+ "Only Once (version upgrade)","Only Once (version upgrade)"
643
+ "Only attributes with scope ""Global"", input type ""Dropdown"" and Use To Create Configurable Product ""Yes"" are available.","Only attributes with scope ""Global"", input type ""Dropdown"" and Use To Create Configurable Product ""Yes"" are available."
644
+ "Only mapped fields","Only mapped fields"
645
+ "Optional","Optional"
646
+ "Options","Options"
647
+ "Options is required","Options is required"
648
+ "Order","Order"
649
+ "Order #%s","Order #%s"
650
+ "Order #%s (%s)","Order #%s (%s)"
651
+ "Order Created Date","Order Created Date"
652
+ "Order ID","Order ID"
653
+ "Order Totals","Order Totals"
654
+ "Order Updated Date","Order Updated Date"
655
+ "Order Updated Date report is real-time, does not need statistics refreshing.","Order Updated Date report is real-time, does not need statistics refreshing."
656
+ "Orders","Orders"
657
+ "Original Magento attribute names in first row:","Original Magento attribute names in first row:"
658
+ "Out of stock","Out of stock"
659
+ "PDT (Payment Data Transfer) Only","PDT (Payment Data Transfer) Only"
660
+ "Package Extensions","Package Extensions"
661
+ "Pages","Pages"
662
+ "Parent Product Thumbnail","Parent Product Thumbnail"
663
+ "Parent Transaction ID","Parent Transaction ID"
664
+ "Passive mode","Passive mode"
665
+ "Password","Password"
666
+ "Password Confirmation","Password Confirmation"
667
+ "Password confirmation must be same as password.","Password confirmation must be same as password."
668
+ "Password must be at least of %d characters.","Password must be at least of %d characters."
669
+ "Password must include both numeric and alphabetic characters.","Password must include both numeric and alphabetic characters."
670
+ "Password:","Password:"
671
+ "Path:","Path:"
672
+ "Payment method instance is not available.","Payment method instance is not available."
673
+ "Payment method is not available.","Payment method is not available."
674
+ "Payment method must be specified.","Payment method must be specified."
675
+ "Pending Reviews","Pending Reviews"
676
+ "Pending Tags","Pending Tags"
677
+ "Per Item","Per Item"
678
+ "Per Order","Per Order"
679
+ "Percent","Percent"
680
+ "Performed At","Performed At"
681
+ "Period","Period"
682
+ "Permanent (301)","Permanent (301)"
683
+ "Permissions","Permissions"
684
+ "Personal Information","Personal Information"
685
+ "Phone:","Phone:"
686
+ "Please Select","Please Select"
687
+ "Please confirm site switching. All data that hasn\'t been saved will be lost.","Please confirm site switching. All data that hasn\'t been saved will be lost."
688
+ "Please enter 6 or more characters.","Please enter 6 or more characters."
689
+ "Please enter a number greater than 0 in this field.","Please enter a number greater than 0 in this field."
690
+ "Please enter a valid $ amount. For example $100.00.","Please enter a valid $ amount. For example $100.00."
691
+ "Please enter a valid URL. For example http://www.example.com or www.example.com","Please enter a valid URL. For example http://www.example.com or www.example.com"
692
+ "Please enter a valid URL. http:// is required","Please enter a valid URL. http:// is required"
693
+ "Please enter a valid credit card number.","Please enter a valid credit card number."
694
+ "Please enter a valid date.","Please enter a valid date."
695
+ "Please enter a valid email address. For example johndoe@domain.com.","Please enter a valid email address. For example johndoe@domain.com."
696
+ "Please enter a valid email.","Please enter a valid email."
697
+ "Please enter a valid number in this field.","Please enter a valid number in this field."
698
+ "Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.","Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890."
699
+ "Please enter a valid social security number. For example 123-45-6789.","Please enter a valid social security number. For example 123-45-6789."
700
+ "Please enter a valid value from list","Please enter a valid value from list"
701
+ "Please enter a valid value, ex: 10,20,30","Please enter a valid value, ex: 10,20,30"
702
+ "Please enter a valid zip code.","Please enter a valid zip code."
703
+ "Please enter a valid zip code. For example 90602 or 90602-1234.","Please enter a valid zip code. For example 90602 or 90602-1234."
704
+ "Please enter another credit card number to complete your purchase.","Please enter another credit card number to complete your purchase."
705
+ "Please enter password","Please enter password"
706
+ "Please enter password to confirm rollback.","Please enter password to confirm rollback."
707
+ "Please enter valid password.","Please enter valid password."
708
+ "Please make sure that all global admin search modules are installed and activated.","Please make sure that all global admin search modules are installed and activated."
709
+ "Please make sure that your changes were saved before running the profile.","Please make sure that your changes were saved before running the profile."
710
+ "Please make sure your passwords match.","Please make sure your passwords match."
711
+ "Please select State/Province.","Please select State/Province."
712
+ "Please select a customer.","Please select a customer."
713
+ "Please select a store.","Please select a store."
714
+ "Please select an option.","Please select an option."
715
+ "Please select catalog searches.","Please select catalog searches."
716
+ "Please select customer(s).","Please select customer(s)."
717
+ "Please select message(s).","Please select message(s)."
718
+ "Please select one of the above options.","Please select one of the above options."
719
+ "Please select one of the options.","Please select one of the options."
720
+ "Please select review(s).","Please select review(s)."
721
+ "Please select tag(s).","Please select tag(s)."
722
+ "Please specify backup creation options","Please specify backup creation options"
723
+ "Please specify the admin custom URL.","Please specify the admin custom URL."
724
+ "Please try to logout and sign in again.","Please try to logout and sign in again."
725
+ "Please type the letters from the image:","Please type the letters from the image:"
726
+ "Please use in this field only ""a-z,0-9,_"".","Please use in this field only ""a-z,0-9,_""."
727
+ "Please use letters only (a-z) in this field.","Please use letters only (a-z) in this field."
728
+ "Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas.","Please use numbers only in this field. Please avoid spaces or other characters such as dots or commas."
729
+ "Please use only letters (a-z or A-Z), numbers (0-9) or spaces in this field.","Please use only letters (a-z or A-Z), numbers (0-9) or spaces in this field."
730
+ "Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed.","Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed."
731
+ "Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field.","Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field."
732
+ "Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.","Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006."
733
+ "Please wait while the indexes are being refreshed.","Please wait while the indexes are being refreshed."
734
+ "Please wait, loading...","Please wait, loading..."
735
+ "Please wait...","Please wait..."
736
+ "Please, add some answers to this poll first.","Please, add some answers to this poll first."
737
+ "Please, select ""Visible in Stores"" for this poll first.","Please, select ""Visible in Stores"" for this poll first."
738
+ "Poll Manager","Poll Manager"
739
+ "Polls","Polls"
740
+ "Popular","Popular"
741
+ "Position","Position"
742
+ "Position of Watermark for %s","Position of Watermark for %s"
743
+ "Pregenerated product images files.","Pregenerated product images files."
744
+ "Prev. month (hold for menu)","Prev. month (hold for menu)"
745
+ "Prev. year (hold for menu)","Prev. year (hold for menu)"
746
+ "Preview","Preview"
747
+ "Preview Template","Preview Template"
748
+ "Price","Price"
749
+ "Price alert subscription was saved.","Price alert subscription was saved."
750
+ "Price:","Price:"
751
+ "Processed <strong>%s%% %s/%d</strong> records","Processed <strong>%s%% %s/%d</strong> records"
752
+ "Product","Product"
753
+ "Product Name","Product Name"
754
+ "Product Reviews","Product Reviews"
755
+ "Product Tax Classes","Product Tax Classes"
756
+ "Product Thumbnail Itself","Product Thumbnail Itself"
757
+ "Product is not loaded.","Product is not loaded."
758
+ "Product:","Product:"
759
+ "Products","Products"
760
+ "Products Bestsellers Report","Products Bestsellers Report"
761
+ "Products Most Viewed Report","Products Most Viewed Report"
762
+ "Products Ordered","Products Ordered"
763
+ "Products in Carts","Products in Carts"
764
+ "Profile Action","Profile Action"
765
+ "Profile Actions XML","Profile Actions XML"
766
+ "Profile Direction","Profile Direction"
767
+ "Profile History","Profile History"
768
+ "Profile Information","Profile Information"
769
+ "Profile Name","Profile Name"
770
+ "Profile Payments","Profile Payments"
771
+ "Profile Schedule","Profile Schedule"
772
+ "Profile Wizard","Profile Wizard"
773
+ "Profiles","Profiles"
774
+ "Promo","Promo"
775
+ "Promotions","Promotions"
776
+ "Purchased Item","Purchased Item"
777
+ "Put store on the maintenance mode while backup creation","Put store on the maintenance mode while backup creation"
778
+ "Put store on the maintenance mode while rollback processing","Put store on the maintenance mode while rollback processing"
779
+ "Quantity","Quantity"
780
+ "Queue Refresh","Queue Refresh"
781
+ "Queued... Cancel","Queued... Cancel"
782
+ "REST Roles","REST Roles"
783
+ "Radio Buttons","Radio Buttons"
784
+ "Rates","Rates"
785
+ "Read details","Read details"
786
+ "Rebuild","Rebuild"
787
+ "Rebuild Catalog Index","Rebuild Catalog Index"
788
+ "Rebuild Flat Catalog Category","Rebuild Flat Catalog Category"
789
+ "Rebuild Flat Catalog Product","Rebuild Flat Catalog Product"
790
+ "Recent Orders","Recent Orders"
791
+ "Recent statistics have been updated.","Recent statistics have been updated."
792
+ "Recurring Profile View","Recurring Profile View"
793
+ "Recursive Dir","Recursive Dir"
794
+ "Redirect","Redirect"
795
+ "Reference","Reference"
796
+ "Reference ID","Reference ID"
797
+ "Refresh","Refresh"
798
+ "Refresh Now*","Refresh Now*"
799
+ "Refresh Statistics","Refresh Statistics"
800
+ "Region/State","Region/State"
801
+ "Regular Price:","Regular Price:"
802
+ "Reject","Reject"
803
+ "Reject token authorization Pop Up for admin","Reject token authorization Pop Up for admin"
804
+ "Reject token authorization for admin","Reject token authorization for admin"
805
+ "Rejection Of Authorization","Rejection Of Authorization"
806
+ "Release","Release"
807
+ "Release Stability","Release Stability"
808
+ "Release Version","Release Version"
809
+ "Reload captcha","Reload captcha"
810
+ "Remote FTP","Remote FTP"
811
+ "Remove","Remove"
812
+ "Reports","Reports"
813
+ "Request Path","Request Path"
814
+ "Required","Required"
815
+ "Reset","Reset"
816
+ "Reset Filter","Reset Filter"
817
+ "Reset Password","Reset Password"
818
+ "Reset a Password","Reset a Password"
819
+ "Resize","Resize"
820
+ "Resource Access","Resource Access"
821
+ "Resources","Resources"
822
+ "Results","Results"
823
+ "Retrieve Password","Retrieve Password"
824
+ "Return Html Version","Return Html Version"
825
+ "Revenue","Revenue"
826
+ "Reviews","Reviews"
827
+ "Reviews and Ratings","Reviews and Ratings"
828
+ "Rewrite Rules","Rewrite Rules"
829
+ "Role ID","Role ID"
830
+ "Role Info","Role Info"
831
+ "Role Information","Role Information"
832
+ "Role Name","Role Name"
833
+ "Role Resources","Role Resources"
834
+ "Role Users","Role Users"
835
+ "Roles","Roles"
836
+ "Roles Resources","Roles Resources"
837
+ "Root Category","Root Category"
838
+ "Rotate CCW","Rotate CCW"
839
+ "Rotate CW","Rotate CW"
840
+ "Run","Run"
841
+ "Run Profile","Run Profile"
842
+ "Run Profile Inside This Window","Run Profile Inside This Window"
843
+ "Run Profile in Popup","Run Profile in Popup"
844
+ "Running... Kill","Running... Kill"
845
+ "SKU","SKU"
846
+ "SKU:","SKU:"
847
+ "SSL Error: Invalid or self-signed certificate","SSL Error: Invalid or self-signed certificate"
848
+ "Sales","Sales"
849
+ "Sales Report","Sales Report"
850
+ "Samples","Samples"
851
+ "Save","Save"
852
+ "Save & Generate","Save & Generate"
853
+ "Save Account","Save Account"
854
+ "Save Cache Settings","Save Cache Settings"
855
+ "Save Config","Save Config"
856
+ "Save Currency Rates","Save Currency Rates"
857
+ "Save Profile","Save Profile"
858
+ "Save Role","Save Role"
859
+ "Save Template","Save Template"
860
+ "Save User","Save User"
861
+ "Save and Continue Edit","Save and Continue Edit"
862
+ "Search","Search"
863
+ "Search Index","Search Index"
864
+ "Search Term","Search Term"
865
+ "Search Terms","Search Terms"
866
+ "Select","Select"
867
+ "Select All","Select All"
868
+ "Select Category","Select Category"
869
+ "Select Date","Select Date"
870
+ "Select Range","Select Range"
871
+ "Select date","Select date"
872
+ "Selected allowed currency ""%s"" is not available in installed currencies.","Selected allowed currency ""%s"" is not available in installed currencies."
873
+ "Selected base currency is not available in installed currencies.","Selected base currency is not available in installed currencies."
874
+ "Selected default display currency is not available in allowed currencies.","Selected default display currency is not available in allowed currencies."
875
+ "Selected default display currency is not available in installed currencies.","Selected default display currency is not available in installed currencies."
876
+ "Self-assigned roles cannot be deleted.","Self-assigned roles cannot be deleted."
877
+ "Sender","Sender"
878
+ "Separate Email","Separate Email"
879
+ "Shipment #%s comment added","Shipment #%s comment added"
880
+ "Shipment #%s created","Shipment #%s created"
881
+ "Shipment Comments","Shipment Comments"
882
+ "Shipment History","Shipment History"
883
+ "Shipments","Shipments"
884
+ "Shipping","Shipping"
885
+ "Shipping Address","Shipping Address"
886
+ "Shipping Address: ","Shipping Address: "
887
+ "Shipping Origin","Shipping Origin"
888
+ "Shipping Price","Shipping Price"
889
+ "Shipping address selection is not applicable","Shipping address selection is not applicable"
890
+ "Shipping method must be specified.","Shipping method must be specified."
891
+ "Shipping method selection is not applicable","Shipping method selection is not applicable"
892
+ "Shopping Cart","Shopping Cart"
893
+ "Shopping Cart Price Rules","Shopping Cart Price Rules"
894
+ "Shopping Cart from %s","Shopping Cart from %s"
895
+ "Show By","Show By"
896
+ "Show Report For:","Show Report For:"
897
+ "Show Reviews","Show Reviews"
898
+ "Sitemap Information","Sitemap Information"
899
+ "Size for %s","Size for %s"
900
+ "Skip Category Selection","Skip Category Selection"
901
+ "Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created.","Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created."
902
+ "Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order.","Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order."
903
+ "Sorry, this feature is coming soon...","Sorry, this feature is coming soon..."
904
+ "Special Price:","Special Price:"
905
+ "Specific Countries","Specific Countries"
906
+ "Specified","Specified"
907
+ "Specified profile does not exist.","Specified profile does not exist."
908
+ "Spreadsheet Name:","Spreadsheet Name:"
909
+ "Start Date","Start Date"
910
+ "Starting profile execution, please wait...","Starting profile execution, please wait..."
911
+ "State/Province:","State/Province:"
912
+ "Static Blocks","Static Blocks"
913
+ "Status","Status"
914
+ "Status:","Status:"
915
+ "Stock Quantity:","Stock Quantity:"
916
+ "Stock notification was saved.","Stock notification was saved."
917
+ "Store","Store"
918
+ "Store Email Addresses Section","Store Email Addresses Section"
919
+ "Store View","Store View"
920
+ "Store:","Store:"
921
+ "Stores","Stores"
922
+ "Subject","Subject"
923
+ "Submit","Submit"
924
+ "Subpackage cannot be conflicting.","Subpackage cannot be conflicting."
925
+ "Subtotal","Subtotal"
926
+ "Switch/Solo card issue number: %s","Switch/Solo card issue number: %s"
927
+ "Switch/Solo card start Date: %s/%s","Switch/Solo card start Date: %s/%s"
928
+ "Switch/Solo/Maestro Only","Switch/Solo/Maestro Only"
929
+ "Switch/Solo/Maestro(UK Domestic) Only","Switch/Solo/Maestro(UK Domestic) Only"
930
+ "Switch/Solo/Maestro(UK Domestic) card issue number: %s","Switch/Solo/Maestro(UK Domestic) card issue number: %s"
931
+ "Switch/Solo/Maestro(UK Domestic) card start Date: %s/%s","Switch/Solo/Maestro(UK Domestic) card start Date: %s/%s"
932
+ "Symbol","Symbol"
933
+ "Synchronization is required.","Synchronization is required."
934
+ "Synchronization of media storages has been successfully completed.","Synchronization of media storages has been successfully completed."
935
+ "Synchronize","Synchronize"
936
+ "Synchronizing %s to %s","Synchronizing %s to %s"
937
+ "Synchronizing...","Synchronizing..."
938
+ "System","System"
939
+ "System Section","System Section"
940
+ "System busy","System busy"
941
+ "Tags","Tags"
942
+ "Target Path","Target Path"
943
+ "Tax","Tax"
944
+ "Tb","Tb"
945
+ "Template","Template"
946
+ "Template Content","Template Content"
947
+ "Template Information","Template Information"
948
+ "Template Name","Template Name"
949
+ "Template Styles","Template Styles"
950
+ "Template Subject","Template Subject"
951
+ "Template Type","Template Type"
952
+ "Temporary (302)","Temporary (302)"
953
+ "Terms and Conditions","Terms and Conditions"
954
+ "Text","Text"
955
+ "The Catalog Rewrites were refreshed.","The Catalog Rewrites were refreshed."
956
+ "The CatalogInventory Stock Status has been rebuilt.","The CatalogInventory Stock Status has been rebuilt."
957
+ "The Comment Text field cannot be empty.","The Comment Text field cannot be empty."
958
+ "The Flat Catalog Product was rebuilt","The Flat Catalog Product was rebuilt"
959
+ "The JavaScript/CSS cache has been cleaned.","The JavaScript/CSS cache has been cleaned."
960
+ "The JavaScript/CSS cache has been cleared.","The JavaScript/CSS cache has been cleared."
961
+ "The Layered Navigation indexing has been queued.","The Layered Navigation indexing has been queued."
962
+ "The Layered Navigation indexing queue has been canceled.","The Layered Navigation indexing queue has been canceled."
963
+ "The Layered Navigation indices were refreshed.","The Layered Navigation indices were refreshed."
964
+ "The Layered Navigation process has been queued to be killed.","The Layered Navigation process has been queued to be killed."
965
+ "The Magento cache storage has been flushed.","The Magento cache storage has been flushed."
966
+ "The URL Rewrite has been deleted.","The URL Rewrite has been deleted."
967
+ "The URL Rewrite has been saved.","The URL Rewrite has been saved."
968
+ "The account has been saved.","The account has been saved."
969
+ "The archive can be uncompressed with <a href=""%s"">%s</a> on Windows systems","The archive can be uncompressed with <a href=""%s"">%s</a> on Windows systems"
970
+ "The attribute set has been removed.","The attribute set has been removed."
971
+ "The backup's creation process will take time.","The backup's creation process will take time."
972
+ "The billing agreement has been canceled.","The billing agreement has been canceled."
973
+ "The billing agreement has been deleted.","The billing agreement has been deleted."
974
+ "The cache storage has been flushed.","The cache storage has been flushed."
975
+ "The carrier needs to be specified.","The carrier needs to be specified."
976
+ "The catalog index has been rebuilt.","The catalog index has been rebuilt."
977
+ "The catalog rewrites have been refreshed.","The catalog rewrites have been refreshed."
978
+ "The configuration has been saved.","The configuration has been saved."
979
+ "The credit memo has been canceled.","The credit memo has been canceled."
980
+ "The credit memo has been created.","The credit memo has been created."
981
+ "The credit memo has been voided.","The credit memo has been voided."
982
+ "The custom variable has been deleted.","The custom variable has been deleted."
983
+ "The custom variable has been saved.","The custom variable has been saved."
984
+ "The customer has been deleted.","The customer has been deleted."
985
+ "The customer has been saved.","The customer has been saved."
986
+ "The design change has been deleted.","The design change has been deleted."
987
+ "The design change has been saved.","The design change has been saved."
988
+ "The email address is empty.","The email address is empty."
989
+ "The email template has been deleted.","The email template has been deleted."
990
+ "The email template has been saved.","The email template has been saved."
991
+ "The flat catalog category has been rebuilt.","The flat catalog category has been rebuilt."
992
+ "The group node name must be specified with field node name.","The group node name must be specified with field node name."
993
+ "The image cache was cleaned.","The image cache was cleaned."
994
+ "The image cache was cleared.","The image cache was cleared."
995
+ "The invoice and shipment have been created.","The invoice and shipment have been created."
996
+ "The invoice and the shipment have been created. The shipping label cannot be created at the moment.","The invoice and the shipment have been created. The shipping label cannot be created at the moment."
997
+ "The invoice has been canceled.","The invoice has been canceled."
998
+ "The invoice has been captured.","The invoice has been captured."
999
+ "The invoice has been created.","The invoice has been created."
1000
+ "The invoice has been voided.","The invoice has been voided."
1001
+ "The invoice no longer exists.","The invoice no longer exists."
1002
+ "The item %s (SKU %s) does not exist in the catalog anymore.","The item %s (SKU %s) does not exist in the catalog anymore."
1003
+ "The order does not allow creating an invoice.","The order does not allow creating an invoice."
1004
+ "The order no longer exists.","The order no longer exists."
1005
+ "The poll has been deleted.","The poll has been deleted."
1006
+ "The poll has been saved.","The poll has been saved."
1007
+ "The profile has been deleted.","The profile has been deleted."
1008
+ "The profile has been saved.","The profile has been saved."
1009
+ "The profile has been updated.","The profile has been updated."
1010
+ "The profile has no changes.","The profile has no changes."
1011
+ "The profile you are trying to save no longer exists","The profile you are trying to save no longer exists"
1012
+ "The rating has been deleted.","The rating has been deleted."
1013
+ "The rating has been saved.","The rating has been saved."
1014
+ "The role has been deleted.","The role has been deleted."
1015
+ "The role has been saved.","The role has been saved."
1016
+ "The role has been successfully saved.","The role has been successfully saved."
1017
+ "The search index has been rebuilt.","The search index has been rebuilt."
1018
+ "The shipment has been created.","The shipment has been created."
1019
+ "The shipment has been sent.","The shipment has been sent."
1020
+ "The shipping label has been created.","The shipping label has been created."
1021
+ "The tag has been deleted.","The tag has been deleted."
1022
+ "The tag has been saved.","The tag has been saved."
1023
+ "The transaction details have been updated.","The transaction details have been updated."
1024
+ "The user has been deleted.","The user has been deleted."
1025
+ "The user has been saved.","The user has been saved."
1026
+ "Themes JavaScript and CSS files combined to one file.","Themes JavaScript and CSS files combined to one file."
1027
+ "There is an error in one of the option rows.","There is an error in one of the option rows."
1028
+ "This Account is","This Account is"
1029
+ "This Email template no longer exists.","This Email template no longer exists."
1030
+ "This Role no longer exists","This Role no longer exists"
1031
+ "This Role no longer exists.","This Role no longer exists."
1032
+ "This account is","This account is"
1033
+ "This account is inactive.","This account is inactive."
1034
+ "This action cannot be undone.","This action cannot be undone."
1035
+ "This attribute set does not have attributes which we can use for configurable product","This attribute set does not have attributes which we can use for configurable product"
1036
+ "This attribute shares the same value in all the stores","This attribute shares the same value in all the stores"
1037
+ "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","This is a demo store. Any orders placed through this store will not be honored or fulfilled."
1038
+ "This is a required field.","This is a required field."
1039
+ "This product is currently disabled.","This product is currently disabled."
1040
+ "This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed.","This report depends on timezone configuration. Once timezone is changed, the lifetime statistics need to be refreshed."
1041
+ "This section is not allowed.","This section is not allowed."
1042
+ "This user no longer exists.","This user no longer exists."
1043
+ "Time","Time"
1044
+ "Time selection:","Time selection:"
1045
+ "Time:","Time:"
1046
+ "Timeout limit for response from synchronize process was reached.","Timeout limit for response from synchronize process was reached."
1047
+ "To","To"
1048
+ "To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel.","To cancel pending authorizations and release amounts that have already been processed during this payment, click Cancel."
1049
+ "To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website.","To use PayPal Payflow Link, you must configure your PayPal Payflow Link account on the PayPal website."
1050
+ "To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website.","To use PayPal Payments Advanced, you must configure your PayPal Payments Advanced account on the PayPal website."
1051
+ "Toggle Editor","Toggle Editor"
1052
+ "Tools","Tools"
1053
+ "Top 5 Search Terms","Top 5 Search Terms"
1054
+ "Total","Total"
1055
+ "Total Invoiced","Total Invoiced"
1056
+ "Total Order Amount","Total Order Amount"
1057
+ "Total Refunded","Total Refunded"
1058
+ "Total of %d record(s) have been deleted.","Total of %d record(s) have been deleted."
1059
+ "Total of %d record(s) have been updated.","Total of %d record(s) have been updated."
1060
+ "Total of %d record(s) were canceled.","Total of %d record(s) were canceled."
1061
+ "Total of %d record(s) were deleted","Total of %d record(s) were deleted"
1062
+ "Total of %d record(s) were deleted.","Total of %d record(s) were deleted."
1063
+ "Total of %d record(s) were updated","Total of %d record(s) were updated"
1064
+ "Total of %d record(s) were updated.","Total of %d record(s) were updated."
1065
+ "Track Order","Track Order"
1066
+ "Track this shipment","Track this shipment"
1067
+ "Tracking number %s for %s assigned","Tracking number %s for %s assigned"
1068
+ "Tracking number cannot be empty.","Tracking number cannot be empty."
1069
+ "Transaction Data","Transaction Data"
1070
+ "Transaction Details","Transaction Details"
1071
+ "Transaction ID","Transaction ID"
1072
+ "Transaction Type","Transaction Type"
1073
+ "Transactional Emails","Transactional Emails"
1074
+ "Transactions","Transactions"
1075
+ "Try Magento Go for Free","Try Magento Go for Free"
1076
+ "Type","Type"
1077
+ "Type:","Type:"
1078
+ "URL Rewrite","URL Rewrite"
1079
+ "URL Rewrite Information","URL Rewrite Information"
1080
+ "URL Rewrite Management","URL Rewrite Management"
1081
+ "Unable to cancel the credit memo.","Unable to cancel the credit memo."
1082
+ "Unable to find a Email Template to delete.","Unable to find a Email Template to delete."
1083
+ "Unable to find a poll to delete.","Unable to find a poll to delete."
1084
+ "Unable to find a tag to delete.","Unable to find a tag to delete."
1085
+ "Unable to find a user to delete.","Unable to find a user to delete."
1086
+ "Unable to initialize import model","Unable to initialize import model"
1087
+ "Unable to refresh lifetime statistics.","Unable to refresh lifetime statistics."
1088
+ "Unable to refresh recent statistics.","Unable to refresh recent statistics."
1089
+ "Unable to save Cron expression","Unable to save Cron expression"
1090
+ "Unable to save the cron expression.","Unable to save the cron expression."
1091
+ "Unable to save the invoice.","Unable to save the invoice."
1092
+ "Unable to send the invoice email.","Unable to send the invoice email."
1093
+ "Unable to send the shipment email.","Unable to send the shipment email."
1094
+ "Unable to update transaction details.","Unable to update transaction details."
1095
+ "Unable to void the credit memo.","Unable to void the credit memo."
1096
+ "Unknown","Unknown"
1097
+ "Unlimited","Unlimited"
1098
+ "Update","Update"
1099
+ "Updated At","Updated At"
1100
+ "Upload File","Upload File"
1101
+ "Upload Files","Upload Files"
1102
+ "Upload HTTP Error","Upload HTTP Error"
1103
+ "Upload I/O Error","Upload I/O Error"
1104
+ "Upload Security Error","Upload Security Error"
1105
+ "Upload import file","Upload import file"
1106
+ "Uploaded file is larger than %.2f kilobytes allowed by server","Uploaded file is larger than %.2f kilobytes allowed by server"
1107
+ "Use All Available Attributes","Use All Available Attributes"
1108
+ "Use Config Settings","Use Config Settings"
1109
+ "Use Default","Use Default"
1110
+ "Use Default Value","Use Default Value"
1111
+ "Use Default Variable Values","Use Default Variable Values"
1112
+ "Use FTP Connection","Use FTP Connection"
1113
+ "Use Website","Use Website"
1114
+ "Used Currently For","Used Currently For"
1115
+ "Used as Default For","Used as Default For"
1116
+ "User Email","User Email"
1117
+ "User ID","User ID"
1118
+ "User Info","User Info"
1119
+ "User Information","User Information"
1120
+ "User Name","User Name"
1121
+ "User Name is required field.","User Name is required field."
1122
+ "User Name:","User Name:"
1123
+ "User Password","User Password"
1124
+ "User Role","User Role"
1125
+ "User Roles","User Roles"
1126
+ "User Roles Information","User Roles Information"
1127
+ "User Type Resources","User Type Resources"
1128
+ "User name","User name"
1129
+ "Users","Users"
1130
+ "VAT Number is Invalid","VAT Number is Invalid"
1131
+ "VAT Number is Valid","VAT Number is Valid"
1132
+ "Validation Results","Validation Results"
1133
+ "Value","Value"
1134
+ "Value Delimiter:","Value Delimiter:"
1135
+ "Variable","Variable"
1136
+ "Variable Code","Variable Code"
1137
+ "Variable HTML Value","Variable HTML Value"
1138
+ "Variable ID","Variable ID"
1139
+ "Variable Name","Variable Name"
1140
+ "Variable Plain Value","Variable Plain Value"
1141
+ "Verifier code: %s","Verifier code: %s"
1142
+ "View Actions XML","View Actions XML"
1143
+ "View Full Size","View Full Size"
1144
+ "View Memo","View Memo"
1145
+ "View Memo for #%s","View Memo for #%s"
1146
+ "View Shipment","View Shipment"
1147
+ "View Statistics For:","View Statistics For:"
1148
+ "Visibility:","Visibility:"
1149
+ "Warning","Warning"
1150
+ "Warning! Empty value can cause problems with CSV format.","Warning! Empty value can cause problems with CSV format."
1151
+ "Warning!\r\nThis action will remove this user from already assigned role\r\nAre you sure?","Warning!\r\nThis action will remove this user from already assigned role\r\nAre you sure?"
1152
+ "Warning!\r\nThis action will remove those users from already assigned roles\r\nAre you sure?","Warning!\r\nThis action will remove those users from already assigned roles\r\nAre you sure?"
1153
+ "Warning: Please do not close the window during importing/exporting data","Warning: Please do not close the window during importing/exporting data"
1154
+ "Watermark File for %s","Watermark File for %s"
1155
+ "We appreciate our merchants\' feedback, please <a href=""#"" onclick=""surveyAction(\'yes\'); return false;"">take our survey</a> to provide insight on the features you would like included in Magento. <a href=""#"" onclick=""surveyAction(\'no\'); return false;"">Remove this notification</a>","We appreciate our merchants\' feedback, please <a href=""#"" onclick=""surveyAction(\'yes\'); return false;"">take our survey</a> to provide insight on the features you would like included in Magento. <a href=""#"" onclick=""surveyAction(\'no\'); return false;"">Remove this notification</a>"
1156
+ "We\'re in our typing table, coding away more features for Magento. Thank you for your patience.","We\'re in our typing table, coding away more features for Magento. Thank you for your patience."
1157
+ "Web Section","Web Section"
1158
+ "Web Services","Web Services"
1159
+ "Web services","Web services"
1160
+ "Website","Website"
1161
+ "What is this?","What is this?"
1162
+ "Wishlist Report","Wishlist Report"
1163
+ "Wishlist item is not loaded.","Wishlist item is not loaded."
1164
+ "Wrong account specified.","Wrong account specified."
1165
+ "Wrong billing agreement ID specified.","Wrong billing agreement ID specified."
1166
+ "Wrong column format.","Wrong column format."
1167
+ "Wrong newsletter template.","Wrong newsletter template."
1168
+ "Wrong quote item.","Wrong quote item."
1169
+ "Wrong tab configuration.","Wrong tab configuration."
1170
+ "Wrong tag was specified.","Wrong tag was specified."
1171
+ "Wrong transaction ID specified.","Wrong transaction ID specified."
1172
+ "XML","XML"
1173
+ "XML data is invalid.","XML data is invalid."
1174
+ "XML object is not instance of ""Varien_Simplexml_Element"".","XML object is not instance of ""Varien_Simplexml_Element""."
1175
+ "YTD","YTD"
1176
+ "Year","Year"
1177
+ "Yes","Yes"
1178
+ "Yes (301 Moved Permanently)","Yes (301 Moved Permanently)"
1179
+ "Yes (302 Found)","Yes (302 Found)"
1180
+ "Yes (only price with tax)","Yes (only price with tax)"
1181
+ "You cannot delete your own account.","You cannot delete your own account."
1182
+ "You have %s unread message(s).","You have %s unread message(s)."
1183
+ "You have %s unread message(s). <a href=""%s"">Go to messages inbox</a>.","You have %s unread message(s). <a href=""%s"">Go to messages inbox</a>."
1184
+ "You have %s, %s and %s unread messages. <a href=""%s"">Go to messages inbox</a>.","You have %s, %s and %s unread messages. <a href=""%s"">Go to messages inbox</a>."
1185
+ "You have logged out.","You have logged out."
1186
+ "You have not enough permissions to use this functionality.","You have not enough permissions to use this functionality."
1187
+ "You must have JavaScript enabled in your browser to utilize the functionality of this website.","You must have JavaScript enabled in your browser to utilize the functionality of this website."
1188
+ "You need to specify order items.","You need to specify order items."
1189
+ "You will need to wait when the action ends.","You will need to wait when the action ends."
1190
+ "Your answers contain duplicates.","Your answers contain duplicates."
1191
+ "Your password has been updated.","Your password has been updated."
1192
+ "Your password reset link has expired.","Your password reset link has expired."
1193
+ "Your server PHP settings allow you to upload files not more than %s at a time. Please modify post_max_size (currently is %s) and upload_max_filesize (currently is %s) values in php.ini if you want to upload larger files.","Your server PHP settings allow you to upload files not more than %s at a time. Please modify post_max_size (currently is %s) and upload_max_filesize (currently is %s) values in php.ini if you want to upload larger files."
1194
+ "Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider.","Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider."
1195
+ "Zip/Postal Code","Zip/Postal Code"
1196
+ "Zip/Postal Code:","Zip/Postal Code:"
1197
+ "[ deleted ]","[ deleted ]"
1198
+ "[GLOBAL]","[GLOBAL]"
1199
+ "[STORE VIEW]","[STORE VIEW]"
1200
+ "[WEBSITE]","[WEBSITE]"
1201
+ "b","b"
1202
+ "close","close"
1203
+ "critical","critical"
1204
+ "example: ""sitemap/"" or ""/"" for base path (path must be writeable)","example: ""sitemap/"" or ""/"" for base path (path must be writeable)"
1205
+ "example: sitemap.xml","example: sitemap.xml"
1206
+ "failed","failed"
1207
+ "from","from"
1208
+ "major","major"
1209
+ "minor","minor"
1210
+ "notice","notice"
1211
+ "store(%s) scope","store(%s) scope"
1212
+ "successful","successful"
1213
+ "to","to"
1214
+ "website(%s) scope","website(%s) scope"
1215
+ "{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%s"">configuration</a>.","{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%s"">configuration</a>."
app/locale/en_US/Mage_AmazonPayments.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ " Select Shipping Method"," Select Shipping Method"
2
+ "<br/>Trace confirmation request:<br/>%s","<br/>Trace confirmation request:<br/>%s"
3
+ "Access Key","Access Key"
4
+ "Access Key ID","Access Key ID"
5
+ "Amazon Simple Pay","Amazon Simple Pay"
6
+ "Amazon Simple Pay notification error","Amazon Simple Pay notification error"
7
+ "Amazon Simple Pay service capture confirmation error: confirmation request amount is not equal to the amount of order.","Amazon Simple Pay service capture confirmation error: confirmation request amount is not equal to the amount of order."
8
+ "Amazon Simple Pay service capture confirmation error: the amount in the existing invoice does not match the amount in the confirmation request.","Amazon Simple Pay service capture confirmation error: the amount in the existing invoice does not match the amount in the confirmation request."
9
+ "Amazon Simple Pay service capture confirmation error: the existing transaction ID does not match the transaction ID in the confirmation request.","Amazon Simple Pay service capture confirmation error: the existing transaction ID does not match the transaction ID in the confirmation request."
10
+ "Amazon Simple Pay service capture confirmation. The invoice was captured automatically.","Amazon Simple Pay service capture confirmation. The invoice was captured automatically."
11
+ "Amazon Simple Pay service confirmation error: order states sequence violation.","Amazon Simple Pay service confirmation error: order states sequence violation."
12
+ "Amazon Simple Pay service confirmation error: the order currency does not match the currency of the IPN request.","Amazon Simple Pay service confirmation error: the order currency does not match the currency of the IPN request."
13
+ "Amazon Simple Pay service confirmation error: the order specified in the IPN request cannot be found.","Amazon Simple Pay service confirmation error: the order specified in the IPN request cannot be found."
14
+ "Amazon Simple Pay service confirmation error: the payment method in the order is not Amazon Simple Pay.","Amazon Simple Pay service confirmation error: the payment method in the order is not Amazon Simple Pay."
15
+ "Amazon Simple Pay service confirmed capture for invoice %s.","Amazon Simple Pay service confirmed capture for invoice %s."
16
+ "Amazon Simple Pay service confirmed refund for credit memo %s.","Amazon Simple Pay service confirmed refund for credit memo %s."
17
+ "Amazon Simple Pay service has confirmed amount authorization.","Amazon Simple Pay service has confirmed amount authorization."
18
+ "Amazon Simple Pay service has confirmed cancelation.","Amazon Simple Pay service has confirmed cancelation."
19
+ "Amazon Simple Pay service has confirmed capture for invoice %s. The invoice was automatically captured.","Amazon Simple Pay service has confirmed capture for invoice %s. The invoice was automatically captured."
20
+ "Amazon Simple Pay service has confirmed capture initiation.","Amazon Simple Pay service has confirmed capture initiation."
21
+ "Amazon Simple Pay service has confirmed capture.","Amazon Simple Pay service has confirmed capture."
22
+ "Amazon Simple Pay service has confirmed payment capture. Invoice %s was automatically created after confirmation.","Amazon Simple Pay service has confirmed payment capture. Invoice %s was automatically created after confirmation."
23
+ "Amazon Simple Pay service has confirmed payment capture. Invoice was created automatically.","Amazon Simple Pay service has confirmed payment capture. Invoice was created automatically."
24
+ "Amazon Simple Pay service has confirmed payment refund. Credit memo %s was automatically created after confirmation.","Amazon Simple Pay service has confirmed payment refund. Credit memo %s was automatically created after confirmation."
25
+ "Amazon Simple Pay service has confirmed payment refund. Credit memo was created automatically.","Amazon Simple Pay service has confirmed payment refund. Credit memo was created automatically."
26
+ "Amazon Simple Pay service has confirmed payment refund. The credit memo was created automatically.","Amazon Simple Pay service has confirmed payment refund. The credit memo was created automatically."
27
+ "Amazon Simple Pay service has confirmed refund.","Amazon Simple Pay service has confirmed refund."
28
+ "Amazon Simple Pay service has confirmed refund. The credit memo was processed automatically.","Amazon Simple Pay service has confirmed refund. The credit memo was processed automatically."
29
+ "Amazon Simple Pay service has confirmed refunded credit memo %s. The credit memo was processed automatically.","Amazon Simple Pay service has confirmed refunded credit memo %s. The credit memo was processed automatically."
30
+ "Amazon Simple Pay service is not available. Payment was not processed.","Amazon Simple Pay service is not available. Payment was not processed."
31
+ "Amazon Simple Pay service payment confirmation has failed.","Amazon Simple Pay service payment confirmation has failed."
32
+ "Amazon Simple Pay service refund confirmation error: the amount in the existing creditmemo does not match the amount in the confirmation request.","Amazon Simple Pay service refund confirmation error: the amount in the existing creditmemo does not match the amount in the confirmation request."
33
+ "Amazon Simple Pay service refund confirmation error: the confirmation request amount does not match the order amount.","Amazon Simple Pay service refund confirmation error: the confirmation request amount does not match the order amount."
34
+ "Amazon Simple Pay service refund confirmation error: the transaction ID in the existing creditmemo does not match the transaction ID in the confirmation request.","Amazon Simple Pay service refund confirmation error: the transaction ID in the existing creditmemo does not match the transaction ID in the confirmation request."
35
+ "Authorize Only","Authorize Only"
36
+ "Authorize and Capture","Authorize and Capture"
37
+ "Cancel Description","Cancel Description"
38
+ "Cancel Order Notification received from Checkout by Amazon service.","Cancel Order Notification received from Checkout by Amazon service."
39
+ "Checkout by Amazon","Checkout by Amazon"
40
+ "Continue Shopping","Continue Shopping"
41
+ "Customer was redirected to Amazon Simple Pay site","Customer was redirected to Amazon Simple Pay site"
42
+ "Debug","Debug"
43
+ "Debug Log","Debug Log"
44
+ "Email Sender","Email Sender"
45
+ "Enable","Enable"
46
+ "Error Log","Error Log"
47
+ "FPS Sandbox Service URI","FPS Sandbox Service URI"
48
+ "FPS Service URI","FPS Service URI"
49
+ "Immediate Return","Immediate Return"
50
+ "Invalid action code.","Invalid action code."
51
+ "Invalid request.","Invalid request."
52
+ "Invoice was created with Checkout by Amazon.","Invoice was created with Checkout by Amazon."
53
+ "Merchant ID","Merchant ID"
54
+ "Merchant Login","Merchant Login"
55
+ "Merchant Name","Merchant Name"
56
+ "Merchant Password","Merchant Password"
57
+ "Merchant Token","Merchant Token"
58
+ "Method Choice Checkout Message","Method Choice Checkout Message"
59
+ "New Order Notification received from Checkout by Amazon service.","New Order Notification received from Checkout by Amazon service."
60
+ "New Order Status","New Order Status"
61
+ "Notification Error Transactional Email","Notification Error Transactional Email"
62
+ "Order Ready To Ship Notification received form Checkout by Amazon service.","Order Ready To Ship Notification received form Checkout by Amazon service."
63
+ "Order was canceled with Checkout by Amazon.","Order was canceled with Checkout by Amazon."
64
+ "Payment Action","Payment Action"
65
+ "Payment Description","Payment Description"
66
+ "Payment Sandbox Service URI","Payment Sandbox Service URI"
67
+ "Payment Service URI","Payment Service URI"
68
+ "Payment authorization canceled with Amazon Simple Pay service.","Payment authorization canceled with Amazon Simple Pay service."
69
+ "Pending Amazon Simple Pay","Pending Amazon Simple Pay"
70
+ "Redirect Message","Redirect Message"
71
+ "Refund Description","Refund Description"
72
+ "Refund was created with Checkout by Amazon.","Refund was created with Checkout by Amazon."
73
+ "Report Email","Report Email"
74
+ "Report Error to Email","Report Error to Email"
75
+ "Response body is not a valid FPS response.","Response body is not a valid FPS response."
76
+ "SUCCESS","SUCCESS"
77
+ "Sandbox","Sandbox"
78
+ "Secret Key","Secret Key"
79
+ "Secret Key ID","Secret Key ID"
80
+ "Shipment was created with Checkout by Amazon.","Shipment was created with Checkout by Amazon."
81
+ "Thank you for your purchase!","Thank you for your purchase!"
82
+ "The customer has canceled payment and successfully returned from Amazon Simple Pay site","The customer has canceled payment and successfully returned from Amazon Simple Pay site"
83
+ "The customer has successfully returned from Amazon Simple Pay site","The customer has successfully returned from Amazon Simple Pay site"
84
+ "The invoice was created (online capture). Waiting for capture confirmation from Amazon Simple Pay service.","The invoice was created (online capture). Waiting for capture confirmation from Amazon Simple Pay service."
85
+ "The invoice was not refunded. Amazon Simple Pay service error: [%s] %s","The invoice was not refunded. Amazon Simple Pay service error: [%s] %s"
86
+ "The item specified in callback request XML was not found in quote.","The item specified in callback request XML was not found in quote."
87
+ "The order was not canceled. Amazon Simple Pay service error: [%s] %s","The order was not canceled. Amazon Simple Pay service error: [%s] %s"
88
+ "The order was not captured online. Authorization confirmation is required.","The order was not captured online. Authorization confirmation is required."
89
+ "The order was not captured. Amazon Simple Pay service error: [%s] %s","The order was not captured. Amazon Simple Pay service error: [%s] %s"
90
+ "The payment was captured online with Amazon Simple Pay service. The invoice was created. Waiting for capture confirmation from the payment service.","The payment was captured online with Amazon Simple Pay service. The invoice was created. Waiting for capture confirmation from the payment service."
91
+ "The payment was refunded online with Amazon Simple Pay service. The credit memo was created. Waiting for refund confirmation from Amazon Simple Pay service.","The payment was refunded online with Amazon Simple Pay service. The credit memo was created. Waiting for refund confirmation from Amazon Simple Pay service."
92
+ "The payment was refunded online. Waiting for refund confirmation from Amazon Simple Pay service.","The payment was refunded online. Waiting for refund confirmation from Amazon Simple Pay service."
93
+ "The request is not a valid IPN request.","The request is not a valid IPN request."
94
+ "The request was signed incorrectly or the signature is missing.","The request was signed incorrectly or the signature is missing."
95
+ "Title","Title"
96
+ "Use Callback API","Use Callback API"
97
+ "You will be redirected to Checkout by Amazon in a few seconds.","You will be redirected to Checkout by Amazon in a few seconds."
98
+ "You will receive an order confirmation email with details of your order and a link to track its progress.","You will receive an order confirmation email with details of your order and a link to track its progress."
99
+ "You will receive an order confirmation email with details of your order and a link to track its progress.<br/>","You will receive an order confirmation email with details of your order and a link to track its progress.<br/>"
100
+ "Your billing address will be ignored and you will be redirected to Checkout by Amazon website.","Your billing address will be ignored and you will be redirected to Checkout by Amazon website."
101
+ "Your order has been received.","Your order has been received."
app/locale/en_US/Mage_Api.csv ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Access denied.","Access denied."
2
+ "Can not find webservice adapter.","Can not find webservice adapter."
3
+ "Client Session Timeout (sec.)","Client Session Timeout (sec.)"
4
+ "Default Response Charset","Default Response Charset"
5
+ "Email","Email"
6
+ "Enable WSDL Cache","Enable WSDL Cache"
7
+ "General Settings","General Settings"
8
+ "Invalid webservice adapter specified.","Invalid webservice adapter specified."
9
+ "Invalid webservice handler specified.","Invalid webservice handler specified."
10
+ "Magento Core API","Magento Core API"
11
+ "Magento Core API Section","Magento Core API Section"
12
+ "SOAP/XML-RPC - Roles","SOAP/XML-RPC - Roles"
13
+ "SOAP/XML-RPC - Users","SOAP/XML-RPC - Users"
14
+ "Unable to login.","Unable to login."
15
+ "User Name","User Name"
16
+ "WS-I Compliance","WS-I Compliance"
17
+ "Web Services","Web Services"
18
+ "Your account has been deactivated.","Your account has been deactivated."
app/locale/en_US/Mage_Api2.csv ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s","%s"
2
+ "%s role is a special one and can\'t be changed.","%s role is a special one and can\'t be changed."
3
+ "%s role is a special one and can\'t be deleted.","%s role is a special one and can\'t be deleted."
4
+ "%s role is protected.","%s role is protected."
5
+ "ACL Attribute Rules","ACL Attribute Rules"
6
+ "ACL Attributes Information","ACL Attributes Information"
7
+ "Add","Add"
8
+ "Add Admin Role","Add Admin Role"
9
+ "Add New Role","Add New Role"
10
+ "Address Type","Address Type"
11
+ "Admin","Admin"
12
+ "Allow","Allow"
13
+ "An error occurred while deleting the role.","An error occurred while deleting the role."
14
+ "An error occurred while saving attribute rules.","An error occurred while saving attribute rules."
15
+ "An error occurred while saving role.","An error occurred while saving role."
16
+ "Api Rules Information","Api Rules Information"
17
+ "Assigned","Assigned"
18
+ "Associate to Website","Associate to Website"
19
+ "Attribute Rules Information","Attribute Rules Information"
20
+ "Attribute Set","Attribute Set"
21
+ "Attributes","Attributes"
22
+ "Automatically Return Credit Memo Item to Stock","Automatically Return Credit Memo Item to Stock"
23
+ "Back","Back"
24
+ "Backorders","Backorders"
25
+ "Base Currency","Base Currency"
26
+ "Base Customer Balance","Base Customer Balance"
27
+ "Base Discount","Base Discount"
28
+ "Base Discount Amount","Base Discount Amount"
29
+ "Base Item Subtotal","Base Item Subtotal"
30
+ "Base Item Subtotal Including Tax","Base Item Subtotal Including Tax"
31
+ "Base Original Price","Base Original Price"
32
+ "Base Price","Base Price"
33
+ "Base Price Including Tax","Base Price Including Tax"
34
+ "Base Shipping","Base Shipping"
35
+ "Base Shipping Discount","Base Shipping Discount"
36
+ "Base Shipping Tax","Base Shipping Tax"
37
+ "Base Subtotal","Base Subtotal"
38
+ "Base Subtotal Including Tax","Base Subtotal Including Tax"
39
+ "Base Tax Amount","Base Tax Amount"
40
+ "Base Total Due","Base Total Due"
41
+ "Base Total Paid","Base Total Paid"
42
+ "Base Total Refunded","Base Total Refunded"
43
+ "Buy Now URL","Buy Now URL"
44
+ "Can Be Divided into Multiple Boxes for Shipping","Can Be Divided into Multiple Boxes for Shipping"
45
+ "Canceled Qty","Canceled Qty"
46
+ "Catalog","Catalog"
47
+ "Catalog Product","Catalog Product"
48
+ "CatalogInventory","CatalogInventory"
49
+ "Category ID","Category ID"
50
+ "City","City"
51
+ "Company","Company"
52
+ "Country","Country"
53
+ "Coupon Code","Coupon Code"
54
+ "Create","Create"
55
+ "Create Permanent Redirect for old URL","Create Permanent Redirect for old URL"
56
+ "Created From","Created From"
57
+ "Customer","Customer"
58
+ "Customer Address","Customer Address"
59
+ "Customer Address ID","Customer Address ID"
60
+ "Customer Balance","Customer Balance"
61
+ "Customer First Name","Customer First Name"
62
+ "Customer ID","Customer ID"
63
+ "Customer Last Name","Customer Last Name"
64
+ "Customer Middle Name","Customer Middle Name"
65
+ "Customer Prefix","Customer Prefix"
66
+ "Customer Suffix","Customer Suffix"
67
+ "Default Image","Default Image"
68
+ "Delete","Delete"
69
+ "Deny","Deny"
70
+ "Disable automatic group change based on VAT ID","Disable automatic group change based on VAT ID"
71
+ "Discount","Discount"
72
+ "Discount Amount","Discount Amount"
73
+ "Discount Description","Discount Description"
74
+ "Edit","Edit"
75
+ "Edit %s ACL attribute rules","Edit %s ACL attribute rules"
76
+ "Edit Role","Edit Role"
77
+ "Edit attribute rules for %s Role","Edit attribute rules for %s Role"
78
+ "Email","Email"
79
+ "Enable Qty Increments","Enable Qty Increments"
80
+ "Exclude","Exclude"
81
+ "File Content","File Content"
82
+ "File MIME Type","File MIME Type"
83
+ "File Name","File Name"
84
+ "Final Price With Tax","Final Price With Tax"
85
+ "Final Price Without Tax","Final Price Without Tax"
86
+ "First Name","First Name"
87
+ "Gift Message","Gift Message"
88
+ "Grand Total","Grand Total"
89
+ "Grand Total to Be Charged","Grand Total to Be Charged"
90
+ "Group","Group"
91
+ "Guest","Guest"
92
+ "Has Custom Options","Has Custom Options"
93
+ "ID","ID"
94
+ "Inventory Data","Inventory Data"
95
+ "Invoiced Qty","Invoiced Qty"
96
+ "Is Confirmed","Is Confirmed"
97
+ "Is Default Billing Address","Is Default Billing Address"
98
+ "Is Default Shipping Address","Is Default Shipping Address"
99
+ "Item ID","Item ID"
100
+ "Item Subtotal","Item Subtotal"
101
+ "Item Subtotal Including Tax","Item Subtotal Including Tax"
102
+ "Label","Label"
103
+ "Last Logged In","Last Logged In"
104
+ "Last Name","Last Name"
105
+ "Low Stock Date","Low Stock Date"
106
+ "Manage Stock","Manage Stock"
107
+ "Maximum Qty Allowed in Shopping Cart","Maximum Qty Allowed in Shopping Cart"
108
+ "Minimum Qty Allowed in Shopping Cart","Minimum Qty Allowed in Shopping Cart"
109
+ "New Role","New Role"
110
+ "Notify for Quantity Below","Notify for Quantity Below"
111
+ "OAuth","OAuth"
112
+ "Order","Order"
113
+ "Order Addresses","Order Addresses"
114
+ "Order Comments","Order Comments"
115
+ "Order Currency","Order Currency"
116
+ "Order Date","Order Date"
117
+ "Order ID","Order ID"
118
+ "Order ID (internal)","Order ID (internal)"
119
+ "Order Item ID","Order Item ID"
120
+ "Order Items","Order Items"
121
+ "Order Status","Order Status"
122
+ "Ordered Qty","Ordered Qty"
123
+ "Orders","Orders"
124
+ "Original Price","Original Price"
125
+ "Parent Order Item ID","Parent Order Item ID"
126
+ "Payment Method","Payment Method"
127
+ "Phone Number","Phone Number"
128
+ "Placed from IP","Placed from IP"
129
+ "Please enter a valid number in ""max_sale_qty"" field","Please enter a valid number in ""max_sale_qty"" field"
130
+ "Please enter a valid number in ""min_qty"" field","Please enter a valid number in ""min_qty"" field"
131
+ "Please enter a valid number in ""min_sale_qty"" field","Please enter a valid number in ""min_sale_qty"" field"
132
+ "Please enter a valid number in ""notify_stock_qty"" field","Please enter a valid number in ""notify_stock_qty"" field"
133
+ "Please use numbers only in ""category_id"" field.","Please use numbers only in ""category_id"" field."
134
+ "Please use numbers only in ""qty_increments"" field. Please avoid spaces or other characters such as dots or commas.","Please use numbers only in ""qty_increments"" field. Please avoid spaces or other characters such as dots or commas."
135
+ "Position","Position"
136
+ "Price","Price"
137
+ "Price Including Tax","Price Including Tax"
138
+ "Product","Product"
139
+ "Product Category","Product Category"
140
+ "Product ID","Product ID"
141
+ "Product Image","Product Image"
142
+ "Product Type","Product Type"
143
+ "Product URL","Product URL"
144
+ "Product Website","Product Website"
145
+ "Product and Custom Options Name","Product and Custom Options Name"
146
+ "Qty","Qty"
147
+ "Qty Increments","Qty Increments"
148
+ "Qty Uses Decimals","Qty Uses Decimals"
149
+ "Qty for Item's Status to Become Out of Stock","Qty for Item's Status to Become Out of Stock"
150
+ "REST - Attributes","REST - Attributes"
151
+ "REST - Roles","REST - Roles"
152
+ "REST ACL Attributes","REST ACL Attributes"
153
+ "REST Attributes","REST Attributes"
154
+ "REST Role","REST Role"
155
+ "REST Roles","REST Roles"
156
+ "REST Roles Information","REST Roles Information"
157
+ "Read","Read"
158
+ "Refunded Qty","Refunded Qty"
159
+ "Regular Price With Tax","Regular Price With Tax"
160
+ "Regular Price Without Tax","Regular Price Without Tax"
161
+ "Rest Roles","Rest Roles"
162
+ "Retrieve","Retrieve"
163
+ "Role ""%s"" no longer exists","Role ""%s"" no longer exists"
164
+ "Role ""%s"" not found.","Role ""%s"" not found."
165
+ "Role API Resources","Role API Resources"
166
+ "Role Info","Role Info"
167
+ "Role Information","Role Information"
168
+ "Role Name","Role Name"
169
+ "Role Users","Role Users"
170
+ "Role has been deleted.","Role has been deleted."
171
+ "Roles","Roles"
172
+ "SKU","SKU"
173
+ "Salability Status","Salability Status"
174
+ "Sales","Sales"
175
+ "Save","Save"
176
+ "Shipped Qty","Shipped Qty"
177
+ "Shipping Amount","Shipping Amount"
178
+ "Shipping Discount","Shipping Discount"
179
+ "Shipping Including Tax","Shipping Including Tax"
180
+ "Shipping Method","Shipping Method"
181
+ "Shipping Tax","Shipping Tax"
182
+ "State","State"
183
+ "Stock Availability","Stock Availability"
184
+ "Stock ID","Stock ID"
185
+ "Stock Item","Stock Item"
186
+ "Stock Status","Stock Status"
187
+ "Store Currency to Order Currency Rate","Store Currency to Order Currency Rate"
188
+ "Store Name","Store Name"
189
+ "Street","Street"
190
+ "Subtotal","Subtotal"
191
+ "Subtotal Including Tax","Subtotal Including Tax"
192
+ "System","System"
193
+ "Tax Amount","Tax Amount"
194
+ "Tax Name","Tax Name"
195
+ "Tax Percent","Tax Percent"
196
+ "Tax Rate","Tax Rate"
197
+ "The ""enable_qty_increments"" field must be set to 0 or 1.","The ""enable_qty_increments"" field must be set to 0 or 1."
198
+ "The ""is_decimal_divided"" field must be set to 0 or 1.","The ""is_decimal_divided"" field must be set to 0 or 1."
199
+ "The ""is_in_stock"" field must be set to 0 or 1.","The ""is_in_stock"" field must be set to 0 or 1."
200
+ "The ""is_qty_decimal"" field must be set to 0 or 1.","The ""is_qty_decimal"" field must be set to 0 or 1."
201
+ "The ""is_qty_decimal"" field must be set to 0, 1, or 2.","The ""is_qty_decimal"" field must be set to 0, 1, or 2."
202
+ "The ""manage_stock"" field must be set to 0 or 1.","The ""manage_stock"" field must be set to 0 or 1."
203
+ "The ""stock_status_changed_auto"" field must be set to 0 or 1.","The ""stock_status_changed_auto"" field must be set to 0 or 1."
204
+ "The ""use_config_backorders"" field must be set to 0 or 1.","The ""use_config_backorders"" field must be set to 0 or 1."
205
+ "The ""use_config_enable_qty_inc"" field must be set to 0 or 1.","The ""use_config_enable_qty_inc"" field must be set to 0 or 1."
206
+ "The ""use_config_manage_stock"" field must be set to 0 or 1.","The ""use_config_manage_stock"" field must be set to 0 or 1."
207
+ "The ""use_config_max_sale_qty"" field must be set to 0 or 1.","The ""use_config_max_sale_qty"" field must be set to 0 or 1."
208
+ "The ""use_config_min_qty"" field must be set to 0 or 1.","The ""use_config_min_qty"" field must be set to 0 or 1."
209
+ "The ""use_config_min_sale_qty"" field must be set to 0 or 1.","The ""use_config_min_sale_qty"" field must be set to 0 or 1."
210
+ "The ""use_config_notify_stock_qty"" field must be set to 0 or 1.","The ""use_config_notify_stock_qty"" field must be set to 0 or 1."
211
+ "The ""use_config_qty_increments"" field must be set to 0 or 1.","The ""use_config_qty_increments"" field must be set to 0 or 1."
212
+ "The attribute rules were saved.","The attribute rules were saved."
213
+ "The role has been saved.","The role has been saved."
214
+ "The role is a special one and not for assigning it to admin users.","The role is a special one and not for assigning it to admin users."
215
+ "Total Due","Total Due"
216
+ "Total Paid","Total Paid"
217
+ "Total Refunded","Total Refunded"
218
+ "Total Reviews Count","Total Reviews Count"
219
+ "Type","Type"
220
+ "URL","URL"
221
+ "Update","Update"
222
+ "Use Config Settings for Allow Gift Message","Use Config Settings for Allow Gift Message"
223
+ "Use Config Settings for Allow Gift Wrapping","Use Config Settings for Allow Gift Wrapping"
224
+ "Use Config Settings for Backorders","Use Config Settings for Backorders"
225
+ "Use Config Settings for Enable Qty Increments","Use Config Settings for Enable Qty Increments"
226
+ "Use Config Settings for Manage Stock","Use Config Settings for Manage Stock"
227
+ "Use Config Settings for Maximum Qty Allowed in Shopping Cart","Use Config Settings for Maximum Qty Allowed in Shopping Cart"
228
+ "Use Config Settings for Minimum Qty Allowed in Shopping Cart","Use Config Settings for Minimum Qty Allowed in Shopping Cart"
229
+ "Use Config Settings for Notify for Quantity Below","Use Config Settings for Notify for Quantity Below"
230
+ "Use Config Settings for Qty Increments","Use Config Settings for Qty Increments"
231
+ "Use Config Settings for Qty for Item's Status to Become Out of Stock","Use Config Settings for Qty for Item's Status to Become Out of Stock"
232
+ "User Type","User Type"
233
+ "User type ""%s"" no longer exists","User type ""%s"" no longer exists"
234
+ "User type ""%s"" not found.","User type ""%s"" not found."
235
+ "Web Services","Web Services"
236
+ "Web services","Web services"
237
+ "Write","Write"
238
+ "ZIP/Postal Code","ZIP/Postal Code"
app/locale/en_US/Mage_Authorizenet.csv ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "--Please Select--","--Please Select--"
2
+ "API Login ID","API Login ID"
3
+ "Accepted Currency","Accepted Currency"
4
+ "Amount of %s approved by payment gateway. Transaction ID: ""%s"".","Amount of %s approved by payment gateway. Transaction ID: ""%s""."
5
+ "Authorize.net Direct Post","Authorize.net Direct Post"
6
+ "Card Verification Number","Card Verification Number"
7
+ "Card Verification Number Visual Reference","Card Verification Number Visual Reference"
8
+ "Close","Close"
9
+ "Credit Card Information","Credit Card Information"
10
+ "Credit Card Number","Credit Card Number"
11
+ "Credit Card Type","Credit Card Type"
12
+ "Credit Card Types","Credit Card Types"
13
+ "Credit Card Verification","Credit Card Verification"
14
+ "Debug","Debug"
15
+ "Email Customer","Email Customer"
16
+ "Enabled","Enabled"
17
+ "Expiration Date","Expiration Date"
18
+ "Gateway URL","Gateway URL"
19
+ "Maximum Order Total","Maximum Order Total"
20
+ "Merchant MD5","Merchant MD5"
21
+ "Merchant's Email","Merchant's Email"
22
+ "Minimum Order Total","Minimum Order Total"
23
+ "New Order Status","New Order Status"
24
+ "Order saving error: %s","Order saving error: %s"
25
+ "Payment Action","Payment Action"
26
+ "Payment authorization error.","Payment authorization error."
27
+ "Payment authorization error. Transacion id is empty.","Payment authorization error. Transacion id is empty."
28
+ "Payment error. Order was not found.","Payment error. Order was not found."
29
+ "Payment error. Paid amount doesn\'t match the order amount.","Payment error. Paid amount doesn\'t match the order amount."
30
+ "Payment from Applicable Countries","Payment from Applicable Countries"
31
+ "Payment from Specific Countries","Payment from Specific Countries"
32
+ "Please, choose payment method","Please, choose payment method"
33
+ "Response hash validation failed. Transaction declined.","Response hash validation failed. Transaction declined."
34
+ "Sort Order","Sort Order"
35
+ "Test Mode","Test Mode"
36
+ "The order has been created.","The order has been created."
37
+ "There was an error processing your order. Please contact us or try again later.","There was an error processing your order. Please contact us or try again later."
38
+ "Title","Title"
39
+ "Transaction Key","Transaction Key"
40
+ "What is this?","What is this?"
41
+ "You will be required to enter your payment details before you place an order.","You will be required to enter your payment details before you place an order."
app/locale/en_US/Mage_Backup.csv ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Action","Action"
2
+ "An error occurred while creating the backup.","An error occurred while creating the backup."
3
+ "An error occurred while writing to the backup file ""%s"".","An error occurred while writing to the backup file ""%s""."
4
+ "Are you sure you want to delete the selected backup(s)?","Are you sure you want to delete the selected backup(s)?"
5
+ "Backup Type","Backup Type"
6
+ "Backup file ""%s"" cannot be read from or written to.","Backup file ""%s"" cannot be read from or written to."
7
+ "Backup file ""%s"" does not exist.","Backup file ""%s"" does not exist."
8
+ "Backup file does not exist.","Backup file does not exist."
9
+ "Backup file handler was unspecified.","Backup file handler was unspecified."
10
+ "Backup file not found","Backup file not found"
11
+ "Backup file path was not specified.","Backup file path was not specified."
12
+ "Backups","Backups"
13
+ "Cannot read backup file.","Cannot read backup file."
14
+ "Create Backup","Create Backup"
15
+ "Database","Database"
16
+ "Database Backup","Database Backup"
17
+ "Database and Media","Database and Media"
18
+ "Database and Media Backup","Database and Media Backup"
19
+ "Database was successfuly backed up.","Database was successfuly backed up."
20
+ "Download","Download"
21
+ "Enable Scheduled Backup","Enable Scheduled Backup"
22
+ "Failed to connect to FTP","Failed to connect to FTP"
23
+ "Failed to delete one or several backups.","Failed to delete one or several backups."
24
+ "Failed to rollback","Failed to rollback"
25
+ "Failed to validate FTP","Failed to validate FTP"
26
+ "Frequency","Frequency"
27
+ "Invalid Password.","Invalid Password."
28
+ "Maintenance Mode","Maintenance Mode"
29
+ "Name","Name"
30
+ "Not enough free space to create backup.","Not enough free space to create backup."
31
+ "Not enough permissions to create backup.","Not enough permissions to create backup."
32
+ "Not enough permissions to perform rollback","Not enough permissions to perform rollback"
33
+ "Please either unselect the ""Put store on the maintenance mode"" checkbox or update your permissions to proceed with the backup.""","Please either unselect the ""Put store on the maintenance mode"" checkbox or update your permissions to proceed with the backup."""
34
+ "Please either unselect the ""Put store on the maintenance mode"" checkbox or update your permissions to proceed with the rollback.""","Please either unselect the ""Put store on the maintenance mode"" checkbox or update your permissions to proceed with the rollback."""
35
+ "Put store on the maintenance mode while backup's creation","Put store on the maintenance mode while backup's creation"
36
+ "Rollback","Rollback"
37
+ "Scheduled Backup Settings","Scheduled Backup Settings"
38
+ "Size, Bytes","Size, Bytes"
39
+ "Start Time","Start Time"
40
+ "System","System"
41
+ "System (excluding Media)","System (excluding Media)"
42
+ "System Backup","System Backup"
43
+ "System couldn't put store on the maintenance mode","System couldn't put store on the maintenance mode"
44
+ "The database and media backup has been created.","The database and media backup has been created."
45
+ "The database backup has been created.","The database backup has been created."
46
+ "The file was compressed with Zlib, but this extension is not installed on server.","The file was compressed with Zlib, but this extension is not installed on server."
47
+ "The selected backup(s) has been deleted.","The selected backup(s) has been deleted."
48
+ "The system (excluding Media) backup has been created.","The system (excluding Media) backup has been created."
49
+ "The system backup has been created.","The system backup has been created."
50
+ "Time","Time"
51
+ "Type","Type"
52
+ "Unable to create backup. Please, try again later.","Unable to create backup. Please, try again later."
53
+ "Unable to save the cron expression.","Unable to save the cron expression."
54
+ "Wrong order of creation for new backup.","Wrong order of creation for new backup."
55
+ "You do not have sufficient permissions to enable Maintenance Mode during this operation.","You do not have sufficient permissions to enable Maintenance Mode during this operation."
app/locale/en_US/Mage_Bundle.csv ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%1$s incl tax.","%1$s incl tax."
2
+ "* Required Fields","* Required Fields"
3
+ "-- Select --","-- Select --"
4
+ "Add New Option","Add New Option"
5
+ "Add Selection","Add Selection"
6
+ "As Low as","As Low as"
7
+ "As low as","As low as"
8
+ "Bundle Items","Bundle Items"
9
+ "Bundle Product","Bundle Product"
10
+ "Bundle Product View Summary","Bundle Product View Summary"
11
+ "Buy %1$s","Buy %1$s"
12
+ "Buy %1$s for","Buy %1$s for"
13
+ "Buy %1$s for %2$s","Buy %1$s for %2$s"
14
+ "Buy %1$s for %2$s (%3$s incl. tax) each","Buy %1$s for %2$s (%3$s incl. tax) each"
15
+ "Buy %1$s for %2$s each","Buy %1$s for %2$s each"
16
+ "Buy %1$s with %2$s discount each","Buy %1$s with %2$s discount each"
17
+ "Catalog Product View (Bundle)","Catalog Product View (Bundle)"
18
+ "Checkbox","Checkbox"
19
+ "Choose a selection...","Choose a selection..."
20
+ "Click for price","Click for price"
21
+ "Close","Close"
22
+ "Default","Default"
23
+ "Default Qty","Default Qty"
24
+ "Default Title","Default Title"
25
+ "Drop-down","Drop-down"
26
+ "Dynamic","Dynamic"
27
+ "Excl. Tax","Excl. Tax"
28
+ "Excl. Tax:","Excl. Tax:"
29
+ "Fixed","Fixed"
30
+ "From","From"
31
+ "From:","From:"
32
+ "Gift Message","Gift Message"
33
+ "Incl. Tax","Incl. Tax"
34
+ "Incl. Tax:","Incl. Tax:"
35
+ "Input Type","Input Type"
36
+ "Is Required","Is Required"
37
+ "Message:","Message:"
38
+ "Multiple Select","Multiple Select"
39
+ "N/A","N/A"
40
+ "No options of this product are available.","No options of this product are available."
41
+ "None","None"
42
+ "Percent","Percent"
43
+ "Percent Discount","Percent Discount"
44
+ "Please Select Products to Add","Please Select Products to Add"
45
+ "Please enter a number greater 0 in this field.","Please enter a number greater 0 in this field."
46
+ "Please enter search conditions to view products.","Please enter search conditions to view products."
47
+ "Please select options for product.","Please select options for product."
48
+ "Please specify product option(s).","Please specify product option(s)."
49
+ "Position","Position"
50
+ "Price Range","Price Range"
51
+ "Price Type","Price Type"
52
+ "Price as configured","Price as configured"
53
+ "Qty:","Qty:"
54
+ "Radio Buttons","Radio Buttons"
55
+ "Required options are not selected.","Required options are not selected."
56
+ "Selected required options are not available.","Selected required options are not available."
57
+ "Separately","Separately"
58
+ "Ship Bundle Items","Ship Bundle Items"
59
+ "Shipment","Shipment"
60
+ "Store View Title","Store View Title"
61
+ "There is no defined renderer for ""%s"" option type.","There is no defined renderer for ""%s"" option type."
62
+ "This product is also part of bundle(s)","This product is also part of bundle(s)"
63
+ "To","To"
64
+ "To:","To:"
65
+ "Together","Together"
66
+ "Total incl. Tax: %1$s","Total incl. Tax: %1$s"
67
+ "Use Default Value","Use Default Value"
68
+ "User Defined Qty","User Defined Qty"
69
+ "and","and"
70
+ "each","each"
71
+ "save","save"
app/locale/en_US/Mage_Captcha.csv ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "<strong>Attention</strong>: Captcha is case sensitive.","<strong>Attention</strong>: Captcha is case sensitive."
2
+ "After number of attempts to login","After number of attempts to login"
3
+ "Always","Always"
4
+ "CAPTCHA","CAPTCHA"
5
+ "CAPTCHA Timeout (minutes)","CAPTCHA Timeout (minutes)"
6
+ "CAPTCHA for ""Create user"" and ""Forgot password"" forms is always enabled if chosen","CAPTCHA for ""Create user"" and ""Forgot password"" forms is always enabled if chosen"
7
+ "Case Sensitive","Case Sensitive"
8
+ "Displaying Mode","Displaying Mode"
9
+ "Enable CAPTCHA in Admin","Enable CAPTCHA in Admin"
10
+ "Enable CAPTCHA on Frontend","Enable CAPTCHA on Frontend"
11
+ "Font","Font"
12
+ "Forms","Forms"
13
+ "If 0 is specified, CAPTCHA on the Login form will be always available.","If 0 is specified, CAPTCHA on the Login form will be always available."
14
+ "Incorrect CAPTCHA.","Incorrect CAPTCHA."
15
+ "Number of Symbols","Number of Symbols"
16
+ "Number of Unsuccessful Attempts to Login","Number of Unsuccessful Attempts to Login"
17
+ "Please specify 8 symbols at the most. Range allowed (e.g. 3-5)","Please specify 8 symbols at the most. Range allowed (e.g. 3-5)"
18
+ "Please type the letters below","Please type the letters below"
19
+ "Please type the letters from the image:","Please type the letters from the image:"
20
+ "Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer.","Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer."
21
+ "Reload captcha","Reload captcha"
22
+ "Symbols Used in CAPTCHA","Symbols Used in CAPTCHA"
app/locale/en_US/Mage_Catalog.csv ADDED
@@ -0,0 +1,840 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "# of Use","# of Use"
2
+ "%1$s incl tax.","%1$s incl tax."
3
+ "%s - %s","%s - %s"
4
+ "%s Item(s)","%s Item(s)"
5
+ "%s and above","%s and above"
6
+ "(%d)","(%d)"
7
+ "(Copy data from: %s)","(Copy data from: %s)"
8
+ "* Required Fields","* Required Fields"
9
+ "-- Please Select --","-- Please Select --"
10
+ "86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache.","86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache."
11
+ "<strong style=""color:red"">Warning!</strong> Applying MAP by default will hide all product prices on the frontend.","<strong style=""color:red"">Warning!</strong> Applying MAP by default will hide all product prices on the frontend."
12
+ "A group with the same name already exists.","A group with the same name already exists."
13
+ "A name is required","A name is required"
14
+ "A product type is not defined for the indexer.","A product type is not defined for the indexer."
15
+ "ALL GROUPS","ALL GROUPS"
16
+ "AM","AM"
17
+ "Action","Action"
18
+ "Actual Price","Actual Price"
19
+ "Add","Add"
20
+ "Add Attribute","Add Attribute"
21
+ "Add Design Change","Add Design Change"
22
+ "Add Group","Add Group"
23
+ "Add Group Price","Add Group Price"
24
+ "Add New","Add New"
25
+ "Add New Attribute","Add New Attribute"
26
+ "Add New Attribute Set","Add New Attribute Set"
27
+ "Add New Group","Add New Group"
28
+ "Add New Images","Add New Images"
29
+ "Add New Option","Add New Option"
30
+ "Add New Row","Add New Row"
31
+ "Add New Search Term","Add New Search Term"
32
+ "Add New Set","Add New Set"
33
+ "Add Product","Add Product"
34
+ "Add Product To Websites","Add Product To Websites"
35
+ "Add Root Category","Add Root Category"
36
+ "Add Subcategory","Add Subcategory"
37
+ "Add Tax","Add Tax"
38
+ "Add Tier","Add Tier"
39
+ "Add attribute into attribute set","Add attribute into attribute set"
40
+ "Add group into attribute set","Add group into attribute set"
41
+ "Add new custom option into product","Add new custom option into product"
42
+ "Add new values into custom option","Add new values into custom option"
43
+ "Add option","Add option"
44
+ "Add to Cart","Add to Cart"
45
+ "Add to Compare","Add to Compare"
46
+ "Add to Wishlist","Add to Wishlist"
47
+ "Additional Information","Additional Information"
48
+ "Alert Urls","Alert Urls"
49
+ "All","All"
50
+ "All Product Types","All Product Types"
51
+ "All Websites","All Websites"
52
+ "All products","All products"
53
+ "All products - recently added products, New products - products marked as new","All products - recently added products, New products - products marked as new"
54
+ "All products of this set will be deleted! Are you sure you want to delete this attribute set?","All products of this set will be deleted! Are you sure you want to delete this attribute set?"
55
+ "Allow All Products per Page","Allow All Products per Page"
56
+ "Allow Dynamic Media URLs in Products and Categories","Allow Dynamic Media URLs in Products and Categories"
57
+ "Allow HTML Tags on Frontend","Allow HTML Tags on Frontend"
58
+ "Allowed File Extensions","Allowed File Extensions"
59
+ "Allowed file extensions to upload","Allowed file extensions to upload"
60
+ "Amount","Amount"
61
+ "An error occurred while adding products to websites.","An error occurred while adding products to websites."
62
+ "An error occurred while clearing comparison list.","An error occurred while clearing comparison list."
63
+ "An error occurred while deleting this review.","An error occurred while deleting this review."
64
+ "An error occurred while removing products from websites.","An error occurred while removing products from websites."
65
+ "An error occurred while saving the URL rewrite","An error occurred while saving the URL rewrite"
66
+ "An error occurred while saving the attribute set.","An error occurred while saving the attribute set."
67
+ "An error occurred while saving the collection, aborting. Error message: %s","An error occurred while saving the collection, aborting. Error message: %s"
68
+ "An error occurred while saving the product. ","An error occurred while saving the product. "
69
+ "An error occurred while saving the search query.","An error occurred while saving the search query."
70
+ "An error occurred while saving this group.","An error occurred while saving this group."
71
+ "An error occurred while saving this review.","An error occurred while saving this review."
72
+ "An error occurred while trying to delete the category.","An error occurred while trying to delete the category."
73
+ "An error occurred while updating the product(s) attributes.","An error occurred while updating the product(s) attributes."
74
+ "An error occurred while updating the product(s) status.","An error occurred while updating the product(s) status."
75
+ "An invalid group ID is specified, skipping the record.","An invalid group ID is specified, skipping the record."
76
+ "An invalid option ID is specified for %s (%s), skipping the record.","An invalid option ID is specified for %s (%s), skipping the record."
77
+ "An invalid store was specified.","An invalid store was specified."
78
+ "Anchor Custom Text","Anchor Custom Text"
79
+ "Anchor Custom Title","Anchor Custom Title"
80
+ "Applicable to catalog products and categories only. Any media content will be inserted into editor as a static URL. It is not updated if the system configuration base URL changes.","Applicable to catalog products and categories only. Any media content will be inserted into editor as a static URL. It is not updated if the system configuration base URL changes."
81
+ "Apply MAP (Default Value)","Apply MAP (Default Value)"
82
+ "Apply To","Apply To"
83
+ "Approved","Approved"
84
+ "Are you sure you want to delete this category?","Are you sure you want to delete this category?"
85
+ "Are you sure you would like to remove all products from your comparison?","Are you sure you would like to remove all products from your comparison?"
86
+ "Are you sure you would like to remove this item from the compare products?","Are you sure you would like to remove this item from the compare products?"
87
+ "Are you sure?","Are you sure?"
88
+ "As low as:","As low as:"
89
+ "Assign","Assign"
90
+ "Assign product link","Assign product link"
91
+ "Assign product to category","Assign product to category"
92
+ "Assigned Products","Assigned Products"
93
+ "Associated Products","Associated Products"
94
+ "Attrib. Set Name","Attrib. Set Name"
95
+ "Attribute ""%s"" is invalid.","Attribute ""%s"" is invalid."
96
+ "Attribute ""%s"" is required.","Attribute ""%s"" is required."
97
+ "Attribute Information","Attribute Information"
98
+ "Attribute Model","Attribute Model"
99
+ "Attribute Name:","Attribute Name:"
100
+ "Attribute Set","Attribute Set"
101
+ "Attribute Sets","Attribute Sets"
102
+ "Attribute add","Attribute add"
103
+ "Attribute code is invalid. Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.","Attribute code is invalid. Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter."
104
+ "Attribute group with the \"/name/\" name already exists","Attribute group with the \"/name/\" name already exists"
105
+ "Attribute group with the \/name/\ name already exists","Attribute group with the \/name/\ name already exists"
106
+ "Attribute remove","Attribute remove"
107
+ "Attribute with the same code already exists","Attribute with the same code already exists"
108
+ "Attributes","Attributes"
109
+ "Attrribute names can be specified per store.","Attrribute names can be specified per store."
110
+ "Autogenerate","Autogenerate"
111
+ "Availability:","Availability:"
112
+ "Back","Back"
113
+ "Backend Model","Backend Model"
114
+ "Backend Table","Backend Table"
115
+ "Backend Table Title","Backend Table Title"
116
+ "Backorders","Backorders"
117
+ "Based On","Based On"
118
+ "Before Order Confirmation","Before Order Confirmation"
119
+ "Best Value","Best Value"
120
+ "Block after Info Column","Block after Info Column"
121
+ "Bottom Block Options Wrapper","Bottom Block Options Wrapper"
122
+ "Bottom/Left","Bottom/Left"
123
+ "Bottom/Right","Bottom/Right"
124
+ "Browse By","Browse By"
125
+ "Bundle Items","Bundle Items"
126
+ "Buy %1$s","Buy %1$s"
127
+ "Buy %1$s for","Buy %1$s for"
128
+ "Buy %1$s for %2$s","Buy %1$s for %2$s"
129
+ "Buy %1$s for %2$s (%3$s incl. tax) each","Buy %1$s for %2$s (%3$s incl. tax) each"
130
+ "Buy %1$s for %2$s each","Buy %1$s for %2$s each"
131
+ "Cache Lifetime (Seconds)","Cache Lifetime (Seconds)"
132
+ "Cache refresh needed.","Cache refresh needed."
133
+ "Can be Divided into Multiple Boxes for Shipping","Can be Divided into Multiple Boxes for Shipping"
134
+ "Can be used only with catalog input type Dropdown","Can be used only with catalog input type Dropdown"
135
+ "Can be used only with catalog input type Dropdown, Multiple Select and Price","Can be used only with catalog input type Dropdown, Multiple Select and Price"
136
+ "Can\'t create image.","Can\'t create image."
137
+ "Cancel","Cancel"
138
+ "Cannot create image.","Cannot create image."
139
+ "Cannot create writeable directory '%s'.","Cannot create writeable directory '%s'."
140
+ "Cart Item Attribute","Cart Item Attribute"
141
+ "Catalog","Catalog"
142
+ "Catalog Category (Anchor)","Catalog Category (Anchor)"
143
+ "Catalog Category (Non-Anchor)","Catalog Category (Non-Anchor)"
144
+ "Catalog Category (Without Subcategories)","Catalog Category (Without Subcategories)"
145
+ "Catalog Category Link","Catalog Category Link"
146
+ "Catalog New Products List","Catalog New Products List"
147
+ "Catalog Price Scope","Catalog Price Scope"
148
+ "Catalog Product Compare List","Catalog Product Compare List"
149
+ "Catalog Product Email to a Friend","Catalog Product Email to a Friend"
150
+ "Catalog Product Image Gallery Popup","Catalog Product Image Gallery Popup"
151
+ "Catalog Product Link","Catalog Product Link"
152
+ "Catalog Product View (Any)","Catalog Product View (Any)"
153
+ "Catalog Product View (Configurable)","Catalog Product View (Configurable)"
154
+ "Catalog Product View (Grouped)","Catalog Product View (Grouped)"
155
+ "Catalog Product View (Simple)","Catalog Product View (Simple)"
156
+ "Catalog Product View (Virtual)","Catalog Product View (Virtual)"
157
+ "Catalog Section","Catalog Section"
158
+ "Catalog Seo Sitemap (Category List)","Catalog Seo Sitemap (Category List)"
159
+ "Catalog Seo Sitemap (Category Tree)","Catalog Seo Sitemap (Category Tree)"
160
+ "Catalog Seo Sitemap (Common)","Catalog Seo Sitemap (Common)"
161
+ "Catalog Seo Sitemap (Product List)","Catalog Seo Sitemap (Product List)"
162
+ "Catalog URL Rewrites","Catalog URL Rewrites"
163
+ "Catalog product custom option values API","Catalog product custom option values API"
164
+ "Catalog product custom options API","Catalog product custom options API"
165
+ "Catalog, Search","Catalog, Search"
166
+ "Categories","Categories"
167
+ "Categories Sitemap","Categories Sitemap"
168
+ "Category","Category"
169
+ "Category API","Category API"
170
+ "Category Data","Category Data"
171
+ "Category Flat Data","Category Flat Data"
172
+ "Category Link Block Template","Category Link Block Template"
173
+ "Category Link Inline Template","Category Link Inline Template"
174
+ "Category Products","Category Products"
175
+ "Category Top Navigation","Category Top Navigation"
176
+ "Category URL Suffix","Category URL Suffix"
177
+ "Category attributes API","Category attributes API"
178
+ "Category move error","Category move error"
179
+ "Category move error %s","Category move error %s"
180
+ "Category move operation is not possible: parent category is equal to child category.","Category move operation is not possible: parent category is equal to child category."
181
+ "Category move operation is not possible: the current category was not found.","Category move operation is not possible: the current category was not found."
182
+ "Category move operation is not possible: the new parent category was not found.","Category move operation is not possible: the new parent category was not found."
183
+ "Category must be an instance of Mage_Catalog_Model_Category.","Category must be an instance of Mage_Catalog_Model_Category."
184
+ "Center","Center"
185
+ "Change","Change"
186
+ "Change or Retrieve attribute store view","Change or Retrieve attribute store view"
187
+ "Change status","Change status"
188
+ "Check items to add to the cart or","Check items to add to the cart or"
189
+ "Choose an Option...","Choose an Option..."
190
+ "Clear All","Clear All"
191
+ "Clear Price","Clear Price"
192
+ "Click for price","Click for price"
193
+ "Close Window","Close Window"
194
+ "Collapse All","Collapse All"
195
+ "Comma-separated.","Comma-separated."
196
+ "Comparable","Comparable"
197
+ "Comparable on Front-end","Comparable on Front-end"
198
+ "Comparable on the Frontend","Comparable on the Frontend"
199
+ "Compare","Compare"
200
+ "Compare Products","Compare Products"
201
+ "Conditions Combination","Conditions Combination"
202
+ "Configurable Product","Configurable Product"
203
+ "Configurable Product Settings","Configurable Product Settings"
204
+ "Configure Product","Configure Product"
205
+ "Continue","Continue"
206
+ "Copy From Configurable","Copy From Configurable"
207
+ "Country/State","Country/State"
208
+ "Create","Create"
209
+ "Create (Upload)","Create (Upload)"
210
+ "Create Empty","Create Empty"
211
+ "Create Permanent Redirect for URLs if URL Key Changed","Create Permanent Redirect for URLs if URL Key Changed"
212
+ "Create Permanent Redirect for old URL","Create Permanent Redirect for old URL"
213
+ "Create Product Settings","Create Product Settings"
214
+ "Create Simple Associated Product","Create Simple Associated Product"
215
+ "Create attribute set based on another set","Create attribute set based on another set"
216
+ "Create new attribute","Create new attribute"
217
+ "Create new category","Create new category"
218
+ "Create new product","Create new product"
219
+ "Cross-sells","Cross-sells"
220
+ "Currently Shopping by:","Currently Shopping by:"
221
+ "Custom Design","Custom Design"
222
+ "Custom Options","Custom Options"
223
+ "Custom options","Custom options"
224
+ "Customer Group","Customer Group"
225
+ "Customers Reviews","Customers Reviews"
226
+ "Customers Tagged Product","Customers Tagged Product"
227
+ "Data Type for Saving in Database","Data Type for Saving in Database"
228
+ "Date & Time Custom Options","Date & Time Custom Options"
229
+ "Date Fields Order","Date Fields Order"
230
+ "Date Subscribed","Date Subscribed"
231
+ "Datetime","Datetime"
232
+ "Decimal","Decimal"
233
+ "Declare attribute value saving scope","Declare attribute value saving scope"
234
+ "Default ""What's This"" Text Message","Default ""What's This"" Text Message"
235
+ "Default Popup Text Message","Default Popup Text Message"
236
+ "Default Price","Default Price"
237
+ "Default Price Navigation Step","Default Price Navigation Step"
238
+ "Default Qty","Default Qty"
239
+ "Default Values","Default Values"
240
+ "Defines the base currency scope (""Currency Setup"" > ""Currency Options"" > ""Base Currency"").","Defines the base currency scope (""Currency Setup"" > ""Currency Options"" > ""Base Currency"")."
241
+ "Delete","Delete"
242
+ "Delete Attribute","Delete Attribute"
243
+ "Delete Attribute Set","Delete Attribute Set"
244
+ "Delete Category","Delete Category"
245
+ "Delete Group Price","Delete Group Price"
246
+ "Delete Option","Delete Option"
247
+ "Delete Row","Delete Row"
248
+ "Delete Search","Delete Search"
249
+ "Delete Selected Group","Delete Selected Group"
250
+ "Delete Tier","Delete Tier"
251
+ "Delete attribute","Delete attribute"
252
+ "Delete category","Delete category"
253
+ "Delete product","Delete product"
254
+ "Depends on design theme","Depends on design theme"
255
+ "Design","Design"
256
+ "Details","Details"
257
+ "Disabled","Disabled"
258
+ "Disallowed file type.","Disallowed file type."
259
+ "Display Actual Price","Display Actual Price"
260
+ "Display Page Control","Display Page Control"
261
+ "Display Price Interval as One Price","Display Price Interval as One Price"
262
+ "Display Product Count","Display Product Count"
263
+ "Display Type","Display Type"
264
+ "Display in Suggested Terms","Display in Suggested Terms"
265
+ "Double click on a group to rename it","Double click on a group to rename it"
266
+ "Double click on above image to view full picture","Double click on above image to view full picture"
267
+ "Downloadable Information","Downloadable Information"
268
+ "Duplicate","Duplicate"
269
+ "Duplicate amount found.","Duplicate amount found."
270
+ "Duplicate website group price customer group.","Duplicate website group price customer group."
271
+ "Duplicate website tier price customer group and quantity.","Duplicate website tier price customer group and quantity."
272
+ "Duplicate website, country and state tax found.","Duplicate website, country and state tax found."
273
+ "E.g. {{media url=""path/to/image.jpg""}} {{skin url=""path/to/picture.gif""}}. Dynamic directives parsing impacts catalog performance.","E.g. {{media url=""path/to/image.jpg""}} {{skin url=""path/to/picture.gif""}}. Dynamic directives parsing impacts catalog performance."
274
+ "Edit","Edit"
275
+ "Edit Attribute Set '%s'","Edit Attribute Set '%s'"
276
+ "Edit Product Attribute","Edit Product Attribute"
277
+ "Edit Product Attribute ""%s""","Edit Product Attribute ""%s"""
278
+ "Edit Search","Edit Search"
279
+ "Edit Search '%s'","Edit Search '%s'"
280
+ "Edit Set Name","Edit Set Name"
281
+ "Email","Email"
282
+ "Email to a Friend","Email to a Friend"
283
+ "Empty","Empty"
284
+ "Enable MAP","Enable MAP"
285
+ "Enable Qty Increments","Enable Qty Increments"
286
+ "Enable WYSIWYG","Enable WYSIWYG"
287
+ "Enable for reindexing a big number of SKUs.","Enable for reindexing a big number of SKUs."
288
+ "Enabled","Enabled"
289
+ "Error during retrieval of option value: %s","Error during retrieval of option value: %s"
290
+ "Exclude","Exclude"
291
+ "Expand All","Expand All"
292
+ "Failed","Failed"
293
+ "Failed to copy file %s. Please, delete media with non-existing images and try again.","Failed to copy file %s. Please, delete media with non-existing images and try again."
294
+ "Failed to move file: %s","Failed to move file: %s"
295
+ "Feature Products","Feature Products"
296
+ "Field is not complete","Field is not complete"
297
+ "File options format is not valid.","File options format is not valid."
298
+ "File upload failed","File upload failed"
299
+ "Filter model name must be declared.","Filter model name must be declared."
300
+ "Filter must be an object. Please set correct filter.","Filter must be an object. Please set correct filter."
301
+ "Filterable (no results)","Filterable (no results)"
302
+ "Filterable (with results)","Filterable (with results)"
303
+ "First Name","First Name"
304
+ "Fixed","Fixed"
305
+ "For internal use.","For internal use."
306
+ "For the last time placed.","For the last time placed."
307
+ "Frontend","Frontend"
308
+ "Frontend Model","Frontend Model"
309
+ "Frontend Properties","Frontend Properties"
310
+ "Gallery","Gallery"
311
+ "General Information","General Information"
312
+ "Get full information about attribute with list of options","Get full information about attribute with list of options"
313
+ "Get full information about custom option in product","Get full information about custom option in product"
314
+ "Get list of available custom option types","Get list of available custom option types"
315
+ "Get list of non-default attributes by product type and attributes set","Get list of non-default attributes by product type and attributes set"
316
+ "Get list of possible attribute types","Get list of possible attribute types"
317
+ "Get special price","Get special price"
318
+ "Global","Global"
319
+ "Globally Editable","Globally Editable"
320
+ "Go to Home Page","Go to Home Page"
321
+ "Grid","Grid"
322
+ "Group add","Group add"
323
+ "Group remove","Group remove"
324
+ "Grouped Product","Grouped Product"
325
+ "Groups","Groups"
326
+ "Home","Home"
327
+ "ID","ID"
328
+ "ID: %s","ID: %s"
329
+ "If empty, the Category Name will be used","If empty, the Category Name will be used"
330
+ "If empty, the Product Name will be used","If empty, the Product Name will be used"
331
+ "If you do not specify an option value for a specific store view then the default (Admin) value will be used.","If you do not specify an option value for a specific store view then the default (Admin) value will be used."
332
+ "Image","Image"
333
+ "Image content is not valid base64 data.","Image content is not valid base64 data."
334
+ "Image does not exist.","Image does not exist."
335
+ "Image file was not found.","Image file was not found."
336
+ "Image type and information need to be specified for each store view.","Image type and information need to be specified for each store view."
337
+ "In Cart","In Cart"
338
+ "In Stock","In Stock"
339
+ "In stock","In stock"
340
+ "Incl. Tax","Incl. Tax"
341
+ "Index product and categories URL rewrites","Index product and categories URL rewrites"
342
+ "Index product attributes for layered navigation building","Index product attributes for layered navigation building"
343
+ "Index product prices","Index product prices"
344
+ "Indexed category/products association","Indexed category/products association"
345
+ "Info","Info"
346
+ "Info Column Options Wrapper","Info Column Options Wrapper"
347
+ "Input Type","Input Type"
348
+ "Integer","Integer"
349
+ "Interval Division Limit","Interval Division Limit"
350
+ "Invalid Tier Prices","Invalid Tier Prices"
351
+ "Invalid attribute %s","Invalid attribute %s"
352
+ "Invalid attribute option specified for attribute %s (%s), skipping the record.","Invalid attribute option specified for attribute %s (%s), skipping the record."
353
+ "Invalid attribute set specified, skipping the record.","Invalid attribute set specified, skipping the record."
354
+ "Invalid block: %s.","Invalid block: %s."
355
+ "Invalid category IDs.","Invalid category IDs."
356
+ "Invalid category.","Invalid category."
357
+ "Invalid image file type.","Invalid image file type."
358
+ "Invalid image type.","Invalid image type."
359
+ "Invalid option ID specified for %s (%s), skipping the record.","Invalid option ID specified for %s (%s), skipping the record."
360
+ "Invalid product type specified, skipping the record.","Invalid product type specified, skipping the record."
361
+ "Invalid store specified","Invalid store specified"
362
+ "Invalid store specified, skipping the record.","Invalid store specified, skipping the record."
363
+ "Invalid tier prices. The product is not associated to the requested website.","Invalid tier prices. The product is not associated to the requested website."
364
+ "Inventory","Inventory"
365
+ "Is Default","Is Default"
366
+ "Is Required","Is Required"
367
+ "Items %s to %s of %s total","Items %s to %s of %s total"
368
+ "Items that you do not want to show in the catalog or search results should have status 'Disabled' in the desired store.","Items that you do not want to show in the catalog or search results should have status 'Disabled' in the desired store."
369
+ "Items that you don't want to show in the catalog or search results should have status 'Disabled' in the desired store.","Items that you don't want to show in the catalog or search results should have status 'Disabled' in the desired store."
370
+ "Keep your eyes open for our special Back to School items and save A LOT!","Keep your eyes open for our special Back to School items and save A LOT!"
371
+ "Label","Label"
372
+ "Last Name","Last Name"
373
+ "Last Notification","Last Notification"
374
+ "Layered Navigation","Layered Navigation"
375
+ "Learn More","Learn More"
376
+ "Line %d, Email: %s","Line %d, Email: %s"
377
+ "Line %d, SKU: %s","Line %d, SKU: %s"
378
+ "Link (Related, Up sell, Cross sell)","Link (Related, Up sell, Cross sell)"
379
+ "Link product does not exist.","Link product does not exist."
380
+ "Link to a Specified Category","Link to a Specified Category"
381
+ "Link to a Specified Product","Link to a Specified Product"
382
+ "List","List"
383
+ "List Mode","List Mode"
384
+ "List of Products that are set as New","List of Products that are set as New"
385
+ "List of types","List of types"
386
+ "Manage Attribute Sets","Manage Attribute Sets"
387
+ "Manage Attributes","Manage Attributes"
388
+ "Manage Catalog Categories","Manage Catalog Categories"
389
+ "Manage Categories","Manage Categories"
390
+ "Manage Label / Options","Manage Label / Options"
391
+ "Manage Options (values of your attribute)","Manage Options (values of your attribute)"
392
+ "Manage Product Attributes","Manage Product Attributes"
393
+ "Manage Product Sets","Manage Product Sets"
394
+ "Manage Products","Manage Products"
395
+ "Manage Stock","Manage Stock"
396
+ "Manage Titles (Size, Color, etc.)","Manage Titles (Size, Color, etc.)"
397
+ "Max Characters","Max Characters"
398
+ "Maximal Depth","Maximal Depth"
399
+ "Maximum Image Size","Maximum Image Size"
400
+ "Maximum Number of Price Intervals","Maximum Number of Price Intervals"
401
+ "Maximum Qty Allowed in Shopping Cart","Maximum Qty Allowed in Shopping Cart"
402
+ "Maximum allowed image size for '%s' is %sx%s px.","Maximum allowed image size for '%s' is %sx%s px."
403
+ "Maximum image height","Maximum image height"
404
+ "Maximum image width","Maximum image width"
405
+ "Maximum number of characters:","Maximum number of characters:"
406
+ "Maximum number of price intervals is 100","Maximum number of price intervals is 100"
407
+ "Media Image","Media Image"
408
+ "Minimum Advertised Price","Minimum Advertised Price"
409
+ "Minimum Lines per Page","Minimum Lines per Page"
410
+ "Minimum Qty Allowed in Shopping Cart","Minimum Qty Allowed in Shopping Cart"
411
+ "Minimum Qty for Item\'s Status to be Out of Stock","Minimum Qty for Item\'s Status to be Out of Stock"
412
+ "Missing SKU, skipping the record.","Missing SKU, skipping the record."
413
+ "More Views","More Views"
414
+ "Move","Move"
415
+ "Move category in tree","Move category in tree"
416
+ "Multi update product","Multi update product"
417
+ "Must be in the allowed values list.","Must be in the allowed values list."
418
+ "N/A","N/A"
419
+ "Name","Name"
420
+ "Name in %s","Name in %s"
421
+ "New Product","New Product"
422
+ "New Product Attribute","New Product Attribute"
423
+ "New Products","New Products"
424
+ "New Products Grid Template","New Products Grid Template"
425
+ "New Products List Template","New Products List Template"
426
+ "New Root Category","New Root Category"
427
+ "New Search","New Search"
428
+ "New Set Name","New Set Name"
429
+ "New Subcategory","New Subcategory"
430
+ "New products","New products"
431
+ "Next","Next"
432
+ "No","No"
433
+ "No image","No image"
434
+ "No layout updates","No layout updates"
435
+ "No options of this product are available.","No options of this product are available."
436
+ "No product collections found.","No product collections found."
437
+ "None","None"
438
+ "Not Visible Individually","Not Visible Individually"
439
+ "Notify Low Stock RSS","Notify Low Stock RSS"
440
+ "Notify for Quantity Below","Notify for Quantity Below"
441
+ "Number of Products per Page","Number of Products per Page"
442
+ "Number of Products to Display","Number of Products to Display"
443
+ "Number of Uses","Number of Uses"
444
+ "Number of results","Number of results"
445
+ "Number of results (For the last time placed)","Number of results (For the last time placed)"
446
+ "OK","OK"
447
+ "OR","OR"
448
+ "Old Price:","Old Price:"
449
+ "On Gesture","On Gesture"
450
+ "Option validation failed to add product to cart.","Option validation failed to add product to cart."
451
+ "Option values","Option values"
452
+ "Option:","Option:"
453
+ "Options","Options"
454
+ "Options Control","Options Control"
455
+ "Options is required","Options is required"
456
+ "Our customer service is available 24/7. Call us at (555) 555-0123.","Our customer service is available 24/7. Call us at (555) 555-0123."
457
+ "Out of Stock","Out of Stock"
458
+ "Out of stock","Out of stock"
459
+ "PM","PM"
460
+ "Page Title Separator","Page Title Separator"
461
+ "Parent Category","Parent Category"
462
+ "Pending","Pending"
463
+ "Pending Reviews RSS","Pending Reviews RSS"
464
+ "Percentage","Percentage"
465
+ "Please add rows to option.","Please add rows to option."
466
+ "Please be careful as once you click on the row it will load package data form the selected file and all unsaved form data will be lost.","Please be careful as once you click on the row it will load package data form the selected file and all unsaved form data will be lost."
467
+ "Please click on the Close Window button if it is not closed automatically.","Please click on the Close Window button if it is not closed automatically."
468
+ "Please enter a new group name","Please enter a new group name"
469
+ "Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -&gt; <a href=""%s"">Index Management</a>","Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -&gt; <a href=""%s"">Index Management</a>"
470
+ "Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>","Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>"
471
+ "Please refresh ""Product Attributes"" in System -&gt; <a href=""%s"">Index Management</a>","Please refresh ""Product Attributes"" in System -&gt; <a href=""%s"">Index Management</a>"
472
+ "Please select a static block ...","Please select a static block ..."
473
+ "Please select items.","Please select items."
474
+ "Please select one or more attributes.","Please select one or more attributes."
475
+ "Please select product(s).","Please select product(s)."
476
+ "Please select products for attributes update","Please select products for attributes update"
477
+ "Please set up merge date/time","Please set up merge date/time"
478
+ "Please set up merge date/time later then present date","Please set up merge date/time later then present date"
479
+ "Please specify date required option(s).","Please specify date required option(s)."
480
+ "Please specify the number of products, that will not be divided into subintervals.","Please specify the number of products, that will not be divided into subintervals."
481
+ "Please specify the product required option(s)","Please specify the product required option(s)"
482
+ "Please specify the product required option(s).","Please specify the product required option(s)."
483
+ "Please specify the product\'s option(s).","Please specify the product\'s option(s)."
484
+ "Please specify the product\'s required option(s).","Please specify the product\'s required option(s)."
485
+ "Please specify the quantity of product(s).","Please specify the quantity of product(s)."
486
+ "Please specify time required option(s).","Please specify time required option(s)."
487
+ "Please wait...","Please wait..."
488
+ "Position","Position"
489
+ "Position in Layered Navigation","Position in Layered Navigation"
490
+ "Position of attribute in layered navigation block","Position of attribute in layered navigation block"
491
+ "Prev","Prev"
492
+ "Previous","Previous"
493
+ "Price","Price"
494
+ "Price Navigation Step Calculation","Price Navigation Step Calculation"
495
+ "Price Type","Price Type"
496
+ "Price is not available","Price is not available"
497
+ "Price values for options should be specified in system base currency.","Price values for options should be specified in system base currency."
498
+ "Price:","Price:"
499
+ "Price: %s","Price: %s"
500
+ "Print This Page","Print This Page"
501
+ "Product","Product"
502
+ "Product API","Product API"
503
+ "Product Alerts","Product Alerts"
504
+ "Product Attribute","Product Attribute"
505
+ "Product Attributes","Product Attributes"
506
+ "Product Categories","Product Categories"
507
+ "Product Description","Product Description"
508
+ "Product Extra Info","Product Extra Info"
509
+ "Product Flat Data","Product Flat Data"
510
+ "Product ID","Product ID"
511
+ "Product Image Placeholders","Product Image Placeholders"
512
+ "Product Image Watermarks","Product Image Watermarks"
513
+ "Product Images","Product Images"
514
+ "Product Images API","Product Images API"
515
+ "Product In Websites","Product In Websites"
516
+ "Product Info Column","Product Info Column"
517
+ "Product Information","Product Information"
518
+ "Product Link Block Template","Product Link Block Template"
519
+ "Product Link Inline Template","Product Link Inline Template"
520
+ "Product Listing Sort by","Product Listing Sort by"
521
+ "Product Name","Product Name"
522
+ "Product Prices","Product Prices"
523
+ "Product Reviews","Product Reviews"
524
+ "Product Tags","Product Tags"
525
+ "Product Tier Price API","Product Tier Price API"
526
+ "Product Type","Product Type"
527
+ "Product URL Suffix","Product URL Suffix"
528
+ "Product View Extra Hint","Product View Extra Hint"
529
+ "Product attribute sets API","Product attribute sets API"
530
+ "Product attributes API","Product attributes API"
531
+ "Product collection expected.","Product collection expected."
532
+ "Product is not loaded","Product is not loaded"
533
+ "Product links API (related, cross sells, up sells)","Product links API (related, cross sells, up sells)"
534
+ "Product types API","Product types API"
535
+ "Product with this combination of attributes already associated to configurable.","Product with this combination of attributes already associated to configurable."
536
+ "Products","Products"
537
+ "Products Comparison List","Products Comparison List"
538
+ "Products Information","Products Information"
539
+ "Products Reviews","Products Reviews"
540
+ "Products Sitemap","Products Sitemap"
541
+ "Products only","Products only"
542
+ "Products per Page on Grid Allowed Values","Products per Page on Grid Allowed Values"
543
+ "Products per Page on Grid Default Value","Products per Page on Grid Default Value"
544
+ "Products per Page on List Allowed Values","Products per Page on List Allowed Values"
545
+ "Products per Page on List Default Value","Products per Page on List Default Value"
546
+ "Properties","Properties"
547
+ "Qty","Qty"
548
+ "Qty Increments","Qty Increments"
549
+ "Qty Uses Decimals","Qty Uses Decimals"
550
+ "Qty for Item\'s Status to Become Out of Stock","Qty for Item\'s Status to Become Out of Stock"
551
+ "Qty:","Qty:"
552
+ "Quantity","Quantity"
553
+ "Quick Create","Quick Create"
554
+ "Quick Overview","Quick Overview"
555
+ "Quick simple product creation","Quick simple product creation"
556
+ "Records for ""%s"" store found.","Records for ""%s"" store found."
557
+ "Redirect","Redirect"
558
+ "Redirect URL","Redirect URL"
559
+ "Regular Price:","Regular Price:"
560
+ "Related Products","Related Products"
561
+ "Remove","Remove"
562
+ "Remove Product From Websites","Remove Product From Websites"
563
+ "Remove This Item","Remove This Item"
564
+ "Remove attribute from attribute set","Remove attribute from attribute set"
565
+ "Remove attribute set","Remove attribute set"
566
+ "Remove custom option","Remove custom option"
567
+ "Remove group from attribute set","Remove group from attribute set"
568
+ "Remove option","Remove option"
569
+ "Remove product assignment","Remove product assignment"
570
+ "Remove product image","Remove product image"
571
+ "Remove product link","Remove product link"
572
+ "Remove value from custom option","Remove value from custom option"
573
+ "Rename existing group","Rename existing group"
574
+ "Rename group","Rename group"
575
+ "Reorganize EAV category structure to flat structure","Reorganize EAV category structure to flat structure"
576
+ "Reorganize EAV product structure to flat structure","Reorganize EAV product structure to flat structure"
577
+ "Reset","Reset"
578
+ "Results","Results"
579
+ "Retrieve attribute data","Retrieve attribute data"
580
+ "Retrieve attribute list","Retrieve attribute list"
581
+ "Retrieve attribute options","Retrieve attribute options"
582
+ "Retrieve categories tree","Retrieve categories tree"
583
+ "Retrieve category attributes","Retrieve category attributes"
584
+ "Retrieve category data","Retrieve category data"
585
+ "Retrieve hierarchical tree","Retrieve hierarchical tree"
586
+ "Retrieve linked products","Retrieve linked products"
587
+ "Retrieve list of assigned products","Retrieve list of assigned products"
588
+ "Retrieve list of option values","Retrieve list of option values"
589
+ "Retrieve list of product custom options","Retrieve list of product custom options"
590
+ "Retrieve one level of categories by website/store view/parent category","Retrieve one level of categories by website/store view/parent category"
591
+ "Retrieve option value info","Retrieve option value info"
592
+ "Retrieve product","Retrieve product"
593
+ "Retrieve product attribute sets","Retrieve product attribute sets"
594
+ "Retrieve product image","Retrieve product image"
595
+ "Retrieve product image list","Retrieve product image list"
596
+ "Retrieve product image types","Retrieve product image types"
597
+ "Retrieve product link type attributes","Retrieve product link type attributes"
598
+ "Retrieve product link types","Retrieve product link types"
599
+ "Retrieve product tier prices","Retrieve product tier prices"
600
+ "Retrieve product types","Retrieve product types"
601
+ "Retrieve products data","Retrieve products data"
602
+ "Retrieve products list by filters","Retrieve products list by filters"
603
+ "Reviews","Reviews"
604
+ "Roll Over for preview","Roll Over for preview"
605
+ "Root","Root"
606
+ "SKU","SKU"
607
+ "SKU length should be %s characters maximum.","SKU length should be %s characters maximum."
608
+ "Save","Save"
609
+ "Save Attribute","Save Attribute"
610
+ "Save Attribute Set","Save Attribute Set"
611
+ "Save Category","Save Category"
612
+ "Save Search","Save Search"
613
+ "Save and Continue Edit","Save and Continue Edit"
614
+ "Saved %d record(s)","Saved %d record(s)"
615
+ "Scope","Scope"
616
+ "Scope must not be changed, because the attribute is used in configurable products.","Scope must not be changed, because the attribute is used in configurable products."
617
+ "Search","Search"
618
+ "Search Engine Optimizations","Search Engine Optimizations"
619
+ "Search Information","Search Information"
620
+ "Search Query","Search Query"
621
+ "Search Term with such search query already exists.","Search Term with such search query already exists."
622
+ "Search Weight","Search Weight"
623
+ "Searchable","Searchable"
624
+ "See price before order confirmation.","See price before order confirmation."
625
+ "Select Category...","Select Category..."
626
+ "Select Configurable Attributes ","Select Configurable Attributes "
627
+ "Select Product...","Select Product..."
628
+ "Select type of option","Select type of option"
629
+ "Select type options required values rows.","Select type options required values rows."
630
+ "Selected Product Types","Selected Product Types"
631
+ "Send Count","Send Count"
632
+ "Set Ascending Direction","Set Ascending Direction"
633
+ "Set Descending Direction","Set Descending Direction"
634
+ "Set Name","Set Name"
635
+ "Set Root Category for Store","Set Root Category for Store"
636
+ "Set root category for this store in the <a href=""%s"">configuration</a>","Set root category for this store in the <a href=""%s"">configuration</a>"
637
+ "Set special price","Set special price"
638
+ "Set/Get current store view","Set/Get current store view"
639
+ "Settings","Settings"
640
+ "Shop By","Shop By"
641
+ "Shopping Options","Shopping Options"
642
+ "Show","Show"
643
+ "Show Details","Show Details"
644
+ "Show Tags","Show Tags"
645
+ "Simple Product","Simple Product"
646
+ "Site Map","Site Map"
647
+ "Sitemap","Sitemap"
648
+ "Skip import row, is not valid value ""%s"" for field ""%s""","Skip import row, is not valid value ""%s"" for field ""%s"""
649
+ "Skip import row, required field ""%s"" for the new customer is not defined.","Skip import row, required field ""%s"" for the new customer is not defined."
650
+ "Skip import row, the value ""%s"" is invalid for field ""%s""","Skip import row, the value ""%s"" is invalid for field ""%s"""
651
+ "Skipping import row, required field ""%s"" for new products is not defined.","Skipping import row, required field ""%s"" for new products is not defined."
652
+ "Skipping import row, required field ""%s"" is not defined.","Skipping import row, required field ""%s"" is not defined."
653
+ "Skipping import row, store ""%s"" field does not exist.","Skipping import row, store ""%s"" field does not exist."
654
+ "Skipping import row, the value ""%s"" is not valid for the ""%s"" field.","Skipping import row, the value ""%s"" is not valid for the ""%s"" field."
655
+ "Some of the processed products have no SKU value defined. Please fill it prior to performing operations on these products.","Some of the processed products have no SKU value defined. Please fill it prior to performing operations on these products."
656
+ "Some of the selected item options are not currently available.","Some of the selected item options are not currently available."
657
+ "Sort By","Sort By"
658
+ "Sort Order","Sort Order"
659
+ "Source Model","Source Model"
660
+ "Special Expires On: %s","Special Expires On: %s"
661
+ "Special Price:","Special Price:"
662
+ "Special Price: %s","Special Price: %s"
663
+ "Starting at:","Starting at:"
664
+ "Static","Static"
665
+ "Static block and products","Static block and products"
666
+ "Static block only","Static block only"
667
+ "Status","Status"
668
+ "Stock Availability","Stock Availability"
669
+ "Store","Store"
670
+ "Store View","Store View"
671
+ "Stretch","Stretch"
672
+ "Subscribe to RSS Feed","Subscribe to RSS Feed"
673
+ "Super product attributes configuration","Super product attributes configuration"
674
+ "Synonym For","Synonym For"
675
+ "System Properties","System Properties"
676
+ "Tag Name","Tag Name"
677
+ "Tax","Tax"
678
+ "Template","Template"
679
+ "Text","Text"
680
+ "The Flat Catalog module has a limit of %2\$d filterable and/or sortable attributes. Currently there are %1\$d of them. Please reduce the number of filterable/sortable attributes in order to use this module","The Flat Catalog module has a limit of %2\$d filterable and/or sortable attributes. Currently there are %1\$d of them. Please reduce the number of filterable/sortable attributes in order to use this module"
681
+ "The From Date value should be less than or equal to the To Date value.","The From Date value should be less than or equal to the To Date value."
682
+ "The attribute code \'%s\' is reserved by system. Please try another attribute code","The attribute code \'%s\' is reserved by system. Please try another attribute code"
683
+ "The attribute model is not defined","The attribute model is not defined"
684
+ "The attribute set has been saved.","The attribute set has been saved."
685
+ "The base directory to upload file is not specified.","The base directory to upload file is not specified."
686
+ "The category has been deleted.","The category has been deleted."
687
+ "The category has been saved.","The category has been saved."
688
+ "The comparison list was cleared.","The comparison list was cleared."
689
+ "The file '%s' for '%s' has an invalid extension","The file '%s' for '%s' has an invalid extension"
690
+ "The file '%s' you uploaded is larger than %s Megabytes allowed by server","The file '%s' you uploaded is larger than %s Megabytes allowed by server"
691
+ "The file you uploaded is larger than %s Megabytes allowed by server","The file you uploaded is larger than %s Megabytes allowed by server"
692
+ "The filters must be an array.","The filters must be an array."
693
+ "The image contents is not valid base64 data.","The image contents is not valid base64 data."
694
+ "The image is not specified.","The image is not specified."
695
+ "The model collection resource name is not defined.","The model collection resource name is not defined."
696
+ "The product %s has been added to comparison list.","The product %s has been added to comparison list."
697
+ "The product %s has been removed from comparison list.","The product %s has been removed from comparison list."
698
+ "The product attribute has been deleted.","The product attribute has been deleted."
699
+ "The product attribute has been saved.","The product attribute has been saved."
700
+ "The product has been created.","The product has been created."
701
+ "The product has been deleted.","The product has been deleted."
702
+ "The product has been duplicated.","The product has been duplicated."
703
+ "The product has been saved.","The product has been saved."
704
+ "The product has required options","The product has required options"
705
+ "The review has been deleted","The review has been deleted"
706
+ "The review has been saved.","The review has been saved."
707
+ "The review was removed by another user or does not exist.","The review was removed by another user or does not exist."
708
+ "The search was deleted.","The search was deleted."
709
+ "The text is too long","The text is too long"
710
+ "There are no %s available.","There are no %s available."
711
+ "There are no customers for this alert","There are no customers for this alert"
712
+ "There are no customers for this alert.","There are no customers for this alert."
713
+ "There are no products matching the selection.","There are no products matching the selection."
714
+ "There was an error while request processing.","There was an error while request processing."
715
+ "This Attribute no longer exists","This Attribute no longer exists"
716
+ "This attribute cannot be deleted.","This attribute cannot be deleted."
717
+ "This attribute cannot be edited.","This attribute cannot be edited."
718
+ "This attribute cannot be updated.","This attribute cannot be updated."
719
+ "This attribute is used in configurable products.","This attribute is used in configurable products."
720
+ "This attribute is used in configurable products. You cannot remove it from the attribute set.","This attribute is used in configurable products. You cannot remove it from the attribute set."
721
+ "This attribute no longer exists","This attribute no longer exists"
722
+ "This attribute set no longer exists.","This attribute set no longer exists."
723
+ "This group contains attributes, used in configurable products. Please move these attributes to another group and try again.","This group contains attributes, used in configurable products. Please move these attributes to another group and try again."
724
+ "This group contains system attributes. Please move system attributes to another group and try again.","This group contains system attributes. Please move system attributes to another group and try again."
725
+ "This is a required option","This is a required option"
726
+ "This product no longer exists.","This product no longer exists."
727
+ "This search no longer exists.","This search no longer exists."
728
+ "This setting will be applied when all prices in the specific price interval are equal.","This setting will be applied when all prices in the specific price interval are equal."
729
+ "Tier Pricing","Tier Pricing"
730
+ "Tile","Tile"
731
+ "Time Format","Time Format"
732
+ "Title","Title"
733
+ "To reindex the enabled product(s), the store or product must be specified","To reindex the enabled product(s), the store or product must be specified"
734
+ "To see product price, add this item to your cart. You can always remove it later.","To see product price, add this item to your cart. You can always remove it later."
735
+ "Top/Left","Top/Left"
736
+ "Top/Right","Top/Right"
737
+ "Total Qty Base Items","Total Qty Base Items"
738
+ "Total Qty Content Items","Total Qty Content Items"
739
+ "Total incl. Tax: %1$s","Total incl. Tax: %1$s"
740
+ "Total of %d record(s) have been deleted.","Total of %d record(s) have been deleted."
741
+ "Total of %d record(s) have been updated.","Total of %d record(s) have been updated."
742
+ "Total of %d record(s) were updated","Total of %d record(s) were updated"
743
+ "Type","Type"
744
+ "URL Rewrite Management","URL Rewrite Management"
745
+ "Unable to complete this request.","Unable to complete this request."
746
+ "Unable to find a search term to delete.","Unable to find a search term to delete."
747
+ "Unable to find an attribute to delete.","Unable to find an attribute to delete."
748
+ "Unable to get the product ID.","Unable to get the product ID."
749
+ "Unassigned Attributes","Unassigned Attributes"
750
+ "Unknown EAV indexer type ""%s"".","Unknown EAV indexer type ""%s""."
751
+ "Unknown attribute: %s.","Unknown attribute: %s."
752
+ "Unsupported product type ""%s"".","Unsupported product type ""%s""."
753
+ "Up-sells","Up-sells"
754
+ "Update","Update"
755
+ "Update Attributes","Update Attributes"
756
+ "Update Tier Price","Update Tier Price"
757
+ "Update assigned product","Update assigned product"
758
+ "Update attribute","Update attribute"
759
+ "Update attributes","Update attributes"
760
+ "Update category","Update category"
761
+ "Update custom option of product","Update custom option of product"
762
+ "Update product","Update product"
763
+ "Update product image","Update product image"
764
+ "Update product link","Update product link"
765
+ "Update product tier prices","Update product tier prices"
766
+ "Update value of custom option","Update value of custom option"
767
+ "Upload new product image ","Upload new product image "
768
+ "Use Canonical Link Meta Tag For Categories","Use Canonical Link Meta Tag For Categories"
769
+ "Use Canonical Link Meta Tag For Products","Use Canonical Link Meta Tag For Products"
770
+ "Use Categories Path for Product URLs","Use Categories Path for Product URLs"
771
+ "Use Config Settings","Use Config Settings"
772
+ "Use Default Value","Use Default Value"
773
+ "Use Flat Catalog Category","Use Flat Catalog Category"
774
+ "Use Flat Catalog Product","Use Flat Catalog Product"
775
+ "Use In Layered Navigation","Use In Layered Navigation"
776
+ "Use In Search Results Layered Navigation","Use In Search Results Layered Navigation"
777
+ "Use JavaScript Calendar","Use JavaScript Calendar"
778
+ "Use Static URLs for Media Content in WYSIWYG for Catalog","Use Static URLs for Media Content in WYSIWYG for Catalog"
779
+ "Use To Create Configurable Product","Use To Create Configurable Product"
780
+ "Use Tree Like Category Sitemap","Use Tree Like Category Sitemap"
781
+ "Use config","Use config"
782
+ "Use default","Use default"
783
+ "Use for Promo Rule Conditions","Use for Promo Rule Conditions"
784
+ "Use four-digit year format.","Use four-digit year format."
785
+ "Use in Advanced Search","Use in Advanced Search"
786
+ "Use in Layered Navigation","Use in Layered Navigation"
787
+ "Use in Layered Navigation<br/>(Can be used only with catalog input type 'Dropdown')","Use in Layered Navigation<br/>(Can be used only with catalog input type 'Dropdown')"
788
+ "Use in Quick Search","Use in Quick Search"
789
+ "Used for Sorting in Product Listing","Used for Sorting in Product Listing"
790
+ "Used in Product Listing","Used in Product Listing"
791
+ "Value for ""%s"" is invalid.","Value for ""%s"" is invalid."
792
+ "Value for ""%s"" is invalid: %s","Value for ""%s"" is invalid: %s"
793
+ "Varchar","Varchar"
794
+ "View as","View as"
795
+ "Virtual Product","Virtual Product"
796
+ "Visibility","Visibility"
797
+ "Visible","Visible"
798
+ "Visible on Catalog Pages on Front-end","Visible on Catalog Pages on Front-end"
799
+ "Visible on Product View Page on Front-end","Visible on Product View Page on Front-end"
800
+ "WYSIWYG Editor","WYSIWYG Editor"
801
+ "Watermark","Watermark"
802
+ "Watermark Default Size","Watermark Default Size"
803
+ "Watermark Opacity, Percent","Watermark Opacity, Percent"
804
+ "Watermark Position","Watermark Position"
805
+ "We Also Recommend","We Also Recommend"
806
+ "Website","Website"
807
+ "Website Item Must be checked","Website Item Must be checked"
808
+ "Website Store Must be checked","Website Store Must be checked"
809
+ "Websites","Websites"
810
+ "What's this?","What's this?"
811
+ "Whether to show ""All"" option in the ""Show X Per Page"" dropdown.","Whether to show ""All"" option in the ""Show X Per Page"" dropdown."
812
+ "Will make search for the query above return results for this search.","Will make search for the query above return results for this search."
813
+ "Wrong BuyRequest instance in options group.","Wrong BuyRequest instance in options group."
814
+ "Wrong configuration item instance in options group.","Wrong configuration item instance in options group."
815
+ "Wrong configuration item option instance in options group.","Wrong configuration item option instance in options group."
816
+ "Wrong option instance type in options group.","Wrong option instance type in options group."
817
+ "Wrong option type to get group instance.","Wrong option type to get group instance."
818
+ "Wrong product instance type in options group.","Wrong product instance type in options group."
819
+ "Wrong product type filter specified","Wrong product type filter specified"
820
+ "Wrong product type to extract configurable options.","Wrong product type to extract configurable options."
821
+ "Year Range","Year Range"
822
+ "Yes","Yes"
823
+ "You cannot remove system attribute from this set.","You cannot remove system attribute from this set."
824
+ "You have no items to compare.","You have no items to compare."
825
+ "You may also be interested in the following product(s)","You may also be interested in the following product(s)"
826
+ "Zoom In","Zoom In"
827
+ "Zoom Out","Zoom Out"
828
+ "and","and"
829
+ "and above","and above"
830
+ "categories","categories"
831
+ "each","each"
832
+ "ex. http://domain.com","ex. http://domain.com"
833
+ "leave blank if its not an image","leave blank if its not an image"
834
+ "per page","per page"
835
+ "products","products"
836
+ "px.","px."
837
+ "save","save"
838
+ "select all","select all"
839
+ "unselect all","unselect all"
840
+ "x","x"
app/locale/en_US/Mage_CatalogInventory.csv ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """%s"" is not available in the requested quantity. %s of the items will be backordered.","""%s"" is not available in the requested quantity. %s of the items will be backordered."
2
+ "%s is available for purchase in increments of %s only.","%s is available for purchase in increments of %s only."
3
+ "%s is not a correct comparsion method.","%s is not a correct comparsion method."
4
+ "<strong>Note</strong> that these settings are applicable to cart line items, not the whole cart.","<strong>Note</strong> that these settings are applicable to cart line items, not the whole cart."
5
+ "Add Minimum Qty","Add Minimum Qty"
6
+ "Allow Qty Below 0","Allow Qty Below 0"
7
+ "Allow Qty Below 0 and Notify Customer","Allow Qty Below 0 and Notify Customer"
8
+ "Automatically Return Credit Memo Item to Stock","Automatically Return Credit Memo Item to Stock"
9
+ "Backorders","Backorders"
10
+ "By Fixed value","By Fixed value"
11
+ "By Percentage","By Percentage"
12
+ "Cannot specify product identifier for the order item.","Cannot specify product identifier for the order item."
13
+ "Catalog Inventory","Catalog Inventory"
14
+ "Decrease Stock When Order is Placed","Decrease Stock When Order is Placed"
15
+ "Display Out of Stock Products","Display Out of Stock Products"
16
+ "Display products availability in stock in the frontend","Display products availability in stock in the frontend"
17
+ "Enable Qty Increments","Enable Qty Increments"
18
+ "In Stock","In Stock"
19
+ "Index Product Stock Status","Index Product Stock Status"
20
+ "Inventory","Inventory"
21
+ "Inventory API","Inventory API"
22
+ "Inventory Section","Inventory Section"
23
+ "Manage Stock","Manage Stock"
24
+ "Maximum Qty Allowed in Shopping Cart","Maximum Qty Allowed in Shopping Cart"
25
+ "Minimum Qty","Minimum Qty"
26
+ "Minimum Qty Allowed in Shopping Cart","Minimum Qty Allowed in Shopping Cart"
27
+ "Multi update product stock data","Multi update product stock data"
28
+ "No Backorders","No Backorders"
29
+ "Not all products are available in the requested quantity","Not all products are available in the requested quantity"
30
+ "Notify for Quantity Below","Notify for Quantity Below"
31
+ "Only X left Threshold","Only X left Threshold"
32
+ "Out of Stock","Out of Stock"
33
+ "Product Stock Options","Product Stock Options"
34
+ "Products will still be shown by direct product URLs.","Products will still be shown by direct product URLs."
35
+ "Qty Increments","Qty Increments"
36
+ "Qty for Item's Status to Become Out of Stock","Qty for Item's Status to Become Out of Stock"
37
+ "Retrieve stock data","Retrieve stock data"
38
+ "Retrieve stock data by product ids","Retrieve stock data by product ids"
39
+ "Rule price","Rule price"
40
+ "Set Items' Status to be In Stock When Order is Cancelled","Set Items' Status to be In Stock When Order is Cancelled"
41
+ "Some of the products are currently out of stock.","Some of the products are currently out of stock."
42
+ "Some of the products cannot be ordered in requested quantity.","Some of the products cannot be ordered in requested quantity."
43
+ "Some of the products cannot be ordered in the requested quantity.","Some of the products cannot be ordered in the requested quantity."
44
+ "Stock Options","Stock Options"
45
+ "Stock Status","Stock Status"
46
+ "The maximum quantity allowed for purchase is %s.","The maximum quantity allowed for purchase is %s."
47
+ "The minimum quantity allowed for purchase is %s.","The minimum quantity allowed for purchase is %s."
48
+ "The requested quantity for ""%s"" is not available.","The requested quantity for ""%s"" is not available."
49
+ "The stock item for Product in option is not valid.","The stock item for Product in option is not valid."
50
+ "The stock item for Product is not valid.","The stock item for Product is not valid."
51
+ "This product is available for purchase in increments of %s only.","This product is available for purchase in increments of %s only."
52
+ "This product is currently out of stock.","This product is currently out of stock."
53
+ "This product is not available in the requested quantity. %s of the items will be backordered.","This product is not available in the requested quantity. %s of the items will be backordered."
54
+ "To Fixed Value","To Fixed Value"
55
+ "To Percentage","To Percentage"
56
+ "Undefined product type.","Undefined product type."
57
+ "Update","Update"
58
+ "Update product stock data","Update product stock data"
59
+ "Update the Product","Update the Product"
app/locale/en_US/Mage_CatalogRule.csv ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%d Catalog Price Rules based on ""%s"" attribute have been disabled.","%d Catalog Price Rules based on ""%s"" attribute have been disabled."
2
+ "Actions","Actions"
3
+ "Active","Active"
4
+ "Add New Rule","Add New Rule"
5
+ "An error occurred while deleting the rule. Please review the log and try again.","An error occurred while deleting the rule. Please review the log and try again."
6
+ "An error occurred while saving the rule data. Please review the log and try again.","An error occurred while saving the rule data. Please review the log and try again."
7
+ "Apply","Apply"
8
+ "Apply Rules","Apply Rules"
9
+ "Attribute Set","Attribute Set"
10
+ "By Fixed Amount","By Fixed Amount"
11
+ "By Percentage of the Original Price","By Percentage of the Original Price"
12
+ "Catalog","Catalog"
13
+ "Catalog Price Rule","Catalog Price Rule"
14
+ "Catalog Price Rules","Catalog Price Rules"
15
+ "Category","Category"
16
+ "Conditions","Conditions"
17
+ "Conditions (leave blank for all products)","Conditions (leave blank for all products)"
18
+ "Conditions Combination","Conditions Combination"
19
+ "Customer Groups","Customer Groups"
20
+ "Date Expire","Date Expire"
21
+ "Date From","Date From"
22
+ "Date Start","Date Start"
23
+ "Date To","Date To"
24
+ "Description","Description"
25
+ "Discount Amount","Discount Amount"
26
+ "Edit Rule","Edit Rule"
27
+ "Edit Rule '%s'","Edit Rule '%s'"
28
+ "Enable Discount to Subproducts","Enable Discount to Subproducts"
29
+ "Expiration Date","Expiration Date"
30
+ "From Date","From Date"
31
+ "General Information","General Information"
32
+ "ID","ID"
33
+ "Inactive","Inactive"
34
+ "New Rule","New Rule"
35
+ "No","No"
36
+ "Options","Options"
37
+ "Priority","Priority"
38
+ "Product Attribute","Product Attribute"
39
+ "Promotions","Promotions"
40
+ "Rule Information","Rule Information"
41
+ "Rule Name","Rule Name"
42
+ "Save and Apply","Save and Apply"
43
+ "Save and Continue Edit","Save and Continue Edit"
44
+ "Start Date","Start Date"
45
+ "Status","Status"
46
+ "Stop Further Rules Processing","Stop Further Rules Processing"
47
+ "The rule has been deleted.","The rule has been deleted."
48
+ "The rule has been saved.","The rule has been saved."
49
+ "The rules have been applied.","The rules have been applied."
50
+ "There are rules that have been changed but were not applied. Only users with exclusive access can apply rules.","There are rules that have been changed but were not applied. Only users with exclusive access can apply rules."
51
+ "There are rules that have been changed but were not applied. Please, click Apply Rules in order to see immediate effect in the catalog.","There are rules that have been changed but were not applied. Please, click Apply Rules in order to see immediate effect in the catalog."
52
+ "This rule no longer exists.","This rule no longer exists."
53
+ "To Date","To Date"
54
+ "To Fixed Amount","To Fixed Amount"
55
+ "To Percentage of the Original Price","To Percentage of the Original Price"
56
+ "Type","Type"
57
+ "Unable to apply rules.","Unable to apply rules."
58
+ "Unable to find a rule to delete.","Unable to find a rule to delete."
59
+ "Update Prices Using the Following Information","Update Prices Using the Following Information"
60
+ "Update product's %s %s: %s","Update product's %s %s: %s"
61
+ "Website","Website"
62
+ "Websites","Websites"
63
+ "Wrong rule specified.","Wrong rule specified."
64
+ "Yes","Yes"
app/locale/en_US/Mage_CatalogSearch.csv ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s and greater","%s and greater"
2
+ "<strong>%d item(s)</strong> were found using the following search criteria","<strong>%d item(s)</strong> were found using the following search criteria"
3
+ "Advanced Search","Advanced Search"
4
+ "Advanced Search Form","Advanced Search Form"
5
+ "Advanced Search Result","Advanced Search Result"
6
+ "All","All"
7
+ "Applies for ""Like"" search type only.","Applies for ""Like"" search type only."
8
+ "Apply Layered Navigation if Search Results are Less Than","Apply Layered Navigation if Search Results are Less Than"
9
+ "Attribute setting change related with Search Index. Please run <a href=""%s"">Rebuild Search Index</a> process.","Attribute setting change related with Search Index. Please run <a href=""%s"">Rebuild Search Index</a> process."
10
+ "Autogenerated Site Map","Autogenerated Site Map"
11
+ "Catalog Advanced Search","Catalog Advanced Search"
12
+ "Catalog Search","Catalog Search"
13
+ "Catalog Search Index","Catalog Search Index"
14
+ "Don't see what you're looking for?","Don't see what you're looking for?"
15
+ "Enter ""0"" to enable layered navigation for any number of results.","Enter ""0"" to enable layered navigation for any number of results."
16
+ "Go","Go"
17
+ "Go to Home Page","Go to Home Page"
18
+ "Grid","Grid"
19
+ "Home","Home"
20
+ "List","List"
21
+ "Maximum Query Length","Maximum Query Length"
22
+ "Maximum Query Words Count","Maximum Query Words Count"
23
+ "Maximum Search query length is %s. Your query was cut.","Maximum Search query length is %s. Your query was cut."
24
+ "Maximum words count is %1$s. In your search query was cut next part: %2$s.","Maximum words count is %1$s. In your search query was cut next part: %2$s."
25
+ "Minimal Query Length","Minimal Query Length"
26
+ "Minimum Search query length is %s","Minimum Search query length is %s"
27
+ "Modify your search","Modify your search"
28
+ "No","No"
29
+ "No items were found using the following search criteria.","No items were found using the following search criteria."
30
+ "Please specify at least one search term.","Please specify at least one search term."
31
+ "Popular Search Terms","Popular Search Terms"
32
+ "Quick Search Form","Quick Search Form"
33
+ "Rebuild Catalog product fulltext search index","Rebuild Catalog product fulltext search index"
34
+ "Relevance","Relevance"
35
+ "Results","Results"
36
+ "Search","Search"
37
+ "Search Settings","Search Settings"
38
+ "Search Terms","Search Terms"
39
+ "Search Type","Search Type"
40
+ "Search entire store here...","Search entire store here..."
41
+ "Search results for '%s'","Search results for '%s'"
42
+ "Search results for: '%s'","Search results for: '%s'"
43
+ "Search:","Search:"
44
+ "Specified date is invalid.","Specified date is invalid."
45
+ "Subscribe to Feed","Subscribe to Feed"
46
+ "There are no search terms available.","There are no search terms available."
47
+ "Yes","Yes"
48
+ "Your search returns no results.","Your search returns no results."
49
+ "up to %s","up to %s"
app/locale/en_US/Mage_Centinel.csv ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "3D Secure CAVV","3D Secure CAVV"
2
+ "3D Secure Card Validation","3D Secure Card Validation"
3
+ "3D Secure Cardholder Validation","3D Secure Cardholder Validation"
4
+ "3D Secure Electronic Commerce Indicator","3D Secure Electronic Commerce Indicator"
5
+ "3D Secure Verification Result","3D Secure Verification Result"
6
+ "3D Secure XID","3D Secure XID"
7
+ "Card Issuer Liability","Card Issuer Liability"
8
+ "Card Verification","Card Verification"
9
+ "Enrolled","Enrolled"
10
+ "Enrolled but Authentication Unavailable","Enrolled but Authentication Unavailable"
11
+ "Failed","Failed"
12
+ "MasterCard SecureCode","MasterCard SecureCode"
13
+ "Merchant Liability","Merchant Liability"
14
+ "Not Enrolled","Not Enrolled"
15
+ "Order cannot be placed.","Order cannot be placed."
16
+ "Payment information error. Please start over.","Payment information error. Please start over."
17
+ "Please continue with placing order.","Please continue with placing order."
18
+ "Please verify the card with the issuer bank before placing the order.","Please verify the card with the issuer bank before placing the order."
19
+ "Please verify the card with the issuer bank:","Please verify the card with the issuer bank:"
20
+ "Start/Reset Validation...","Start/Reset Validation..."
21
+ "Successful","Successful"
22
+ "Successful attempt","Successful attempt"
23
+ "The card has failed verification with the issuer bank.","The card has failed verification with the issuer bank."
24
+ "There has been wrong payment information submitted or the time limit has expired. Please, try again.","There has been wrong payment information submitted or the time limit has expired. Please, try again."
25
+ "There has been wrong payment information submitted or time limit has expired. Please, try again.","There has been wrong payment information submitted or time limit has expired. Please, try again."
26
+ "This card has failed validation and cannot be used.","This card has failed validation and cannot be used."
27
+ "To ensure the security of your transactions","To ensure the security of your transactions"
28
+ "Unable to complete","Unable to complete"
29
+ "Validation failed.","Validation failed."
30
+ "Verification Failed","Verification Failed"
31
+ "Verification Successful","Verification Successful"
32
+ "Verification cannot be processed","Verification cannot be processed"
33
+ "Verified by Visa","Verified by Visa"
app/locale/en_US/Mage_Checkout.csv ADDED
@@ -0,0 +1,336 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "%s was added to your shopping cart.","%s was added to your shopping cart."
2
+ "%s was updated in your shopping cart.","%s was updated in your shopping cart."
3
+ "* Required Fields","* Required Fields"
4
+ "Add New Address","Add New Address"
5
+ "Add New Condition","Add New Condition"
6
+ "Add coupon code for shopping cart","Add coupon code for shopping cart"
7
+ "Add gift messages to shopping cart","Add gift messages to shopping cart"
8
+ "Add product to shopping cart","Add product to shopping cart"
9
+ "Add product(s) to shopping cart","Add product(s) to shopping cart"
10
+ "Add to Cart","Add to Cart"
11
+ "Add to Compare","Add to Compare"
12
+ "Add to Wishlist","Add to Wishlist"
13
+ "Additional Product Info","Additional Product Info"
14
+ "Address","Address"
15
+ "Address %s of %s","Address %s of %s"
16
+ "After Adding a Product Redirect to Shopping Cart","After Adding a Product Redirect to Shopping Cart"
17
+ "Allow Guest Checkout","Allow Guest Checkout"
18
+ "Already registered?","Already registered?"
19
+ "An error occurred in the process of payment","An error occurred in the process of payment"
20
+ "An error occurred while deleting this condition.","An error occurred while deleting this condition."
21
+ "An error occurred while saving this condition.","An error occurred while saving this condition."
22
+ "Apply Coupon","Apply Coupon"
23
+ "Are you sure you would like to remove this item from the shopping cart?","Are you sure you would like to remove this item from the shopping cart?"
24
+ "Back","Back"
25
+ "Back to Billing Information","Back to Billing Information"
26
+ "Back to Select Addresses","Back to Select Addresses"
27
+ "Back to Shipping Information","Back to Shipping Information"
28
+ "Back to Shopping Cart","Back to Shopping Cart"
29
+ "Based on your selection, you may be interested in the following items:","Based on your selection, you may be interested in the following items:"
30
+ "Billing Address","Billing Address"
31
+ "Billing Information","Billing Information"
32
+ "Billing Information - %s","Billing Information - %s"
33
+ "Cancel Coupon","Cancel Coupon"
34
+ "Cannot add item to the shopping cart.","Cannot add item to the shopping cart."
35
+ "Cannot add the item to shopping cart","Cannot add the item to shopping cart"
36
+ "Cannot add the item to shopping cart.","Cannot add the item to shopping cart."
37
+ "Cannot apply the coupon code.","Cannot apply the coupon code."
38
+ "Cannot configure product.","Cannot configure product."
39
+ "Cannot open the overview page","Cannot open the overview page"
40
+ "Cannot process the item.","Cannot process the item."
41
+ "Cannot remove the item.","Cannot remove the item."
42
+ "Cannot update shopping cart.","Cannot update shopping cart."
43
+ "Cannot update the item.","Cannot update the item."
44
+ "Card Verification Number Visual Reference","Card Verification Number Visual Reference"
45
+ "Cart Product API","Cart Product API"
46
+ "Cart Subtotal:","Cart Subtotal:"
47
+ "Change","Change"
48
+ "Change Billing Address","Change Billing Address"
49
+ "Checkbox Text","Checkbox Text"
50
+ "Checkout","Checkout"
51
+ "Checkout Conditions","Checkout Conditions"
52
+ "Checkout Method","Checkout Method"
53
+ "Checkout Options","Checkout Options"
54
+ "Checkout Progress Wrapper","Checkout Progress Wrapper"
55
+ "Checkout Section","Checkout Section"
56
+ "Checkout Terms and Conditions","Checkout Terms and Conditions"
57
+ "Checkout as Guest","Checkout as Guest"
58
+ "Checkout as a Guest or Register","Checkout as a Guest or Register"
59
+ "Checkout with Multiple Addresses","Checkout with Multiple Addresses"
60
+ "City","City"
61
+ "Clear Shopping Cart","Clear Shopping Cart"
62
+ "Click <a href=""%s"" onclick=""this.target=\'_blank\'"">here to print</a> a copy of your order confirmation.","Click <a href=""%s"" onclick=""this.target=\'_blank\'"">here to print</a> a copy of your order confirmation."
63
+ "Click <a href=""%s"">here</a> to continue shopping.","Click <a href=""%s"">here</a> to continue shopping."
64
+ "Close","Close"
65
+ "Company","Company"
66
+ "Condition Name","Condition Name"
67
+ "Configurable Product Image","Configurable Product Image"
68
+ "Configure Cart Item","Configure Cart Item"
69
+ "Confirm Password","Confirm Password"
70
+ "Content","Content"
71
+ "Content Height","Content Height"
72
+ "Content Height (css)","Content Height (css)"
73
+ "Continue","Continue"
74
+ "Continue Shopping","Continue Shopping"
75
+ "Continue to Billing Information","Continue to Billing Information"
76
+ "Continue to Review Your Order","Continue to Review Your Order"
77
+ "Continue to Shipping Information","Continue to Shipping Information"
78
+ "Country","Country"
79
+ "Coupon code ""%s"" is not valid.","Coupon code ""%s"" is not valid."
80
+ "Coupon code ""%s"" was applied.","Coupon code ""%s"" was applied."
81
+ "Coupon code was canceled.","Coupon code was canceled."
82
+ "Create Billing Address","Create Billing Address"
83
+ "Create Shipping Address","Create Shipping Address"
84
+ "Create an order from shopping cart","Create an order from shopping cart"
85
+ "Create shopping cart","Create shopping cart"
86
+ "Customer Address is not valid.","Customer Address is not valid."
87
+ "Customer Information","Customer Information"
88
+ "Customer's information","Customer's information"
89
+ "Data saving problem","Data saving problem"
90
+ "Default Billing","Default Billing"
91
+ "Default Shipping","Default Shipping"
92
+ "Delete Condition","Delete Condition"
93
+ "Details","Details"
94
+ "Disabled","Disabled"
95
+ "Discount Codes","Discount Codes"
96
+ "Display Cart Summary","Display Cart Summary"
97
+ "Display Shopping Cart Sidebar","Display Shopping Cart Sidebar"
98
+ "Display item quantities","Display item quantities"
99
+ "Display number of items in cart","Display number of items in cart"
100
+ "Display number of items in wishlist","Display number of items in wishlist"
101
+ "Easy access to your order history and status","Easy access to your order history and status"
102
+ "Edit","Edit"
103
+ "Edit Address","Edit Address"
104
+ "Edit Billing Address","Edit Billing Address"
105
+ "Edit Condition","Edit Condition"
106
+ "Edit Items","Edit Items"
107
+ "Edit Shipping Address","Edit Shipping Address"
108
+ "Edit Terms and Conditions","Edit Terms and Conditions"
109
+ "Edit Your Cart","Edit Your Cart"
110
+ "Edit item","Edit item"
111
+ "Edit item parameters","Edit item parameters"
112
+ "Email Address","Email Address"
113
+ "Enable Onepage Checkout","Enable Onepage Checkout"
114
+ "Enable Terms and Conditions","Enable Terms and Conditions"
115
+ "Enabled","Enabled"
116
+ "Enter a New Address","Enter a New Address"
117
+ "Enter your coupon code if you have one.","Enter your coupon code if you have one."
118
+ "Enter your destination to get a shipping estimate.","Enter your destination to get a shipping estimate."
119
+ "Estimate Shipping and Tax","Estimate Shipping and Tax"
120
+ "Excl. Tax","Excl. Tax"
121
+ "Fast and easy check out","Fast and easy check out"
122
+ "Fax","Fax"
123
+ "Forgot an Item?","Forgot an Item?"
124
+ "Forgot your password?","Forgot your password?"
125
+ "Get a Quote","Get a Quote"
126
+ "Get list of available payment methods","Get list of available payment methods"
127
+ "Get list of available shipping methods","Get list of available shipping methods"
128
+ "Get list of products in shopping cart","Get list of products in shopping cart"
129
+ "Get terms and conditions","Get terms and conditions"
130
+ "Get total prices for shopping cart","Get total prices for shopping cart"
131
+ "Gift Message","Gift Message"
132
+ "Grand Total:","Grand Total:"
133
+ "Grouped Product Image","Grouped Product Image"
134
+ "HTML","HTML"
135
+ "ID","ID"
136
+ "Incl. Tax","Incl. Tax"
137
+ "Invalid checkout type.","Invalid checkout type."
138
+ "Invalid data.","Invalid data."
139
+ "Invalid email address ""%s""","Invalid email address ""%s"""
140
+ "Invalid method: %s","Invalid method: %s"
141
+ "Invalid shipping method.","Invalid shipping method."
142
+ "Item not found or already ordered","Item not found or already ordered"
143
+ "Items","Items"
144
+ "Items After","Items After"
145
+ "Items Before","Items Before"
146
+ "Load customer quote error","Load customer quote error"
147
+ "Loading next step...","Loading next step..."
148
+ "Login","Login"
149
+ "Login/Registration Before","Login/Registration Before"
150
+ "Manage Terms and Conditions","Manage Terms and Conditions"
151
+ "Maximum Display Recently Added Item(s)","Maximum Display Recently Added Item(s)"
152
+ "Maximum qty allowed for Shipping to multiple addresses is %s","Maximum qty allowed for Shipping to multiple addresses is %s"
153
+ "Minimum order amount is %s","Minimum order amount is %s"
154
+ "Move","Move"
155
+ "Move to Wishlist","Move to Wishlist"
156
+ "Multishipping Checkout","Multishipping Checkout"
157
+ "Multishipping Checkout Address (Any) Form","Multishipping Checkout Address (Any) Form"
158
+ "Multishipping Checkout Billing Address Creation","Multishipping Checkout Billing Address Creation"
159
+ "Multishipping Checkout Billing Address Edit Form","Multishipping Checkout Billing Address Edit Form"
160
+ "Multishipping Checkout Billing Address Selection","Multishipping Checkout Billing Address Selection"
161
+ "Multishipping Checkout Billing Information Step","Multishipping Checkout Billing Information Step"
162
+ "Multishipping Checkout Customer Address Edit Form","Multishipping Checkout Customer Address Edit Form"
163
+ "Multishipping Checkout Overview","Multishipping Checkout Overview"
164
+ "Multishipping Checkout Shipping Address Creation","Multishipping Checkout Shipping Address Creation"
165
+ "Multishipping Checkout Shipping Address Edit Form","Multishipping Checkout Shipping Address Edit Form"
166
+ "Multishipping Checkout Shipping Address Selection","Multishipping Checkout Shipping Address Selection"
167
+ "Multishipping Checkout Shipping Information Step","Multishipping Checkout Shipping Information Step"
168
+ "Multishipping Checkout Success","Multishipping Checkout Success"
169
+ "My Cart","My Cart"
170
+ "My Cart (%s item)","My Cart (%s item)"
171
+ "My Cart (%s items)","My Cart (%s items)"
172
+ "My Cart Extra Actions","My Cart Extra Actions"
173
+ "My Cart Link","My Cart Link"
174
+ "New Address","New Address"
175
+ "New Condition","New Condition"
176
+ "New Terms and Conditions","New Terms and Conditions"
177
+ "No Payment Methods","No Payment Methods"
178
+ "ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER","ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER"
179
+ "One Page Checkout","One Page Checkout"
180
+ "One Page Checkout Failure","One Page Checkout Failure"
181
+ "One Page Checkout Overview","One Page Checkout Overview"
182
+ "One Page Checkout Success","One Page Checkout Success"
183
+ "One item of products do not have identifier or sku","One item of products do not have identifier or sku"
184
+ "One item of products is not belong any of quote item","One item of products is not belong any of quote item"
185
+ "Order #","Order #"
186
+ "Order Review","Order Review"
187
+ "Order Success","Order Success"
188
+ "Order place error.","Order place error."
189
+ "Other Items in Your Order","Other Items in Your Order"
190
+ "Overview Items After","Overview Items After"
191
+ "Password","Password"
192
+ "Payment Failed Email Reciever","Payment Failed Email Reciever"
193
+ "Payment Failed Email Sender","Payment Failed Email Sender"
194
+ "Payment Failed Emails","Payment Failed Emails"
195
+ "Payment Failed Template","Payment Failed Template"
196
+ "Payment Information","Payment Information"
197
+ "Payment Method","Payment Method"
198
+ "Payment Methods After Checkout Button","Payment Methods After Checkout Button"
199
+ "Payment Methods Before Checkout Button","Payment Methods Before Checkout Button"
200
+ "Payment method information","Payment method information"
201
+ "Payment method is not defined","Payment method is not defined"
202
+ "Payment methods in shopping cart","Payment methods in shopping cart"
203
+ "Payment profile # %s: ""%s"".","Payment profile # %s: ""%s""."
204
+ "Place Order","Place Order"
205
+ "Please agree to all Terms and Conditions before placing the order.","Please agree to all Terms and Conditions before placing the order."
206
+ "Please agree to all Terms and Conditions before placing the orders.","Please agree to all Terms and Conditions before placing the orders."
207
+ "Please agree to all the terms and conditions before placing the order.","Please agree to all the terms and conditions before placing the order."
208
+ "Please check billing address information.","Please check billing address information."
209
+ "Please check shipping address information.","Please check shipping address information."
210
+ "Please check shipping addresses information.","Please check shipping addresses information."
211
+ "Please choose to register or to checkout as a guest","Please choose to register or to checkout as a guest"
212
+ "Please log in below:","Please log in below:"
213
+ "Please select region, state or province","Please select region, state or province"
214
+ "Please select shipping address for applicable items","Please select shipping address for applicable items"
215
+ "Please select shipping methods for all addresses","Please select shipping methods for all addresses"
216
+ "Please select valid payment method.","Please select valid payment method."
217
+ "Please specify payment method.","Please specify payment method."
218
+ "Please specify shipping method.","Please specify shipping method."
219
+ "Please specify shipping methods for all addresses.","Please specify shipping methods for all addresses."
220
+ "Price","Price"
221
+ "Proceed to Checkout","Proceed to Checkout"
222
+ "Product","Product"
223
+ "Product Name","Product Name"
224
+ "Products","Products"
225
+ "Qty","Qty"
226
+ "Qty:","Qty:"
227
+ "Quantity was recalculated from %d to %d","Quantity was recalculated from %d to %d"
228
+ "Quote Lifetime (days)","Quote Lifetime (days)"
229
+ "Quote item does not exist.","Quote item does not exist."
230
+ "Quote item is not found.","Quote item is not found."
231
+ "Recently added item(s)","Recently added item(s)"
232
+ "Register","Register"
233
+ "Register and save time!","Register and save time!"
234
+ "Register to Create an Account","Register to Create an Account"
235
+ "Register with us for future convenience:","Register with us for future convenience:"
236
+ "Remove Item","Remove Item"
237
+ "Remove This Item","Remove This Item"
238
+ "Remove coupon code from shopping cart","Remove coupon code from shopping cart"
239
+ "Remove item","Remove item"
240
+ "Remove product from shopping cart","Remove product from shopping cart"
241
+ "Remove product(s) from shopping cart","Remove product(s) from shopping cart"
242
+ "Require Customer To Be Logged In To Checkout","Require Customer To Be Logged In To Checkout"
243
+ "Retrieve information about shopping cart","Retrieve information about shopping cart"
244
+ "Review Order","Review Order"
245
+ "Review Order - %s","Review Order - %s"
246
+ "Sales","Sales"
247
+ "Save Condition","Save Condition"
248
+ "Save in address book","Save in address book"
249
+ "See price before order confirmation.","See price before order confirmation."
250
+ "Select Address","Select Address"
251
+ "Select Addresses","Select Addresses"
252
+ "Select Shipping Method","Select Shipping Method"
253
+ "Select State/Province...","Select State/Province..."
254
+ "Select a billing address from your address book or enter a new address.","Select a billing address from your address book or enter a new address."
255
+ "Select a shipping address from your address book or enter a new address.","Select a shipping address from your address book or enter a new address."
256
+ "Send Payment Failed Email Copy Method","Send Payment Failed Email Copy Method"
257
+ "Send Payment Failed Email Copy To","Send Payment Failed Email Copy To"
258
+ "Send To","Send To"
259
+ "Separate by "","".","Separate by "",""."
260
+ "Set customer for shopping cart","Set customer for shopping cart"
261
+ "Set customer's addresses in shopping cart","Set customer's addresses in shopping cart"
262
+ "Set payment method","Set payment method"
263
+ "Set shipping method","Set shipping method"
264
+ "Ship to Multiple Addresses","Ship to Multiple Addresses"
265
+ "Ship to different address","Ship to different address"
266
+ "Ship to this address","Ship to this address"
267
+ "Shipping Address","Shipping Address"
268
+ "Shipping Information","Shipping Information"
269
+ "Shipping Method","Shipping Method"
270
+ "Shipping Methods","Shipping Methods"
271
+ "Shipping To","Shipping To"
272
+ "Shipping information","Shipping information"
273
+ "Shipping method has not been selected yet","Shipping method has not been selected yet"
274
+ "Shipping methods in shopping cart","Shipping methods in shopping cart"
275
+ "Shipping selection is not applicable.","Shipping selection is not applicable."
276
+ "Shopping Cart","Shopping Cart"
277
+ "Shopping Cart Form Before","Shopping Cart Form Before"
278
+ "Shopping Cart Sidebar","Shopping Cart Sidebar"
279
+ "Shopping Cart Sidebar Extra Actions","Shopping Cart Sidebar Extra Actions"
280
+ "Shopping Cart is Empty","Shopping Cart is Empty"
281
+ "Shopping cart ability to set coupon code","Shopping cart ability to set coupon code"
282
+ "Show Content as","Show Content as"
283
+ "Some of the requested products are not available in the desired quantity.","Some of the requested products are not available in the desired quantity."
284
+ "Some of the requested products are unavailable.","Some of the requested products are unavailable."
285
+ "Some products quantities were recalculated because of quantity increment mismatch","Some products quantities were recalculated because of quantity increment mismatch"
286
+ "Sorry, guest checkout is not enabled. Please try again or contact store owner.","Sorry, guest checkout is not enabled. Please try again or contact store owner."
287
+ "Sorry, no quotes are available for this order at this time.","Sorry, no quotes are available for this order at this time."
288
+ "State/Province","State/Province"
289
+ "Status","Status"
290
+ "Store View","Store View"
291
+ "Street Address","Street Address"
292
+ "Street Address %s","Street Address %s"
293
+ "Submitting order information...","Submitting order information..."
294
+ "Subtotal","Subtotal"
295
+ "Subtotal must exceed minimum order amount","Subtotal must exceed minimum order amount"
296
+ "Telephone","Telephone"
297
+ "Terms and Conditions","Terms and Conditions"
298
+ "Terms and Conditions Information","Terms and Conditions Information"
299
+ "Terms and conditions","Terms and conditions"
300
+ "Text","Text"
301
+ "Thank you for your purchase!","Thank you for your purchase!"
302
+ "The condition has been deleted","The condition has been deleted"
303
+ "The condition has been saved.","The condition has been saved."
304
+ "The onepage checkout is disabled.","The onepage checkout is disabled."
305
+ "The product could not be found.","The product could not be found."
306
+ "The product does not exist.","The product does not exist."
307
+ "There are <a href=""%s"">%s items</a> in your cart.","There are <a href=""%s"">%s items</a> in your cart."
308
+ "There is <a href=""%s"">1 item</a> in your cart.","There is <a href=""%s"">1 item</a> in your cart."
309
+ "There is already a customer registered using this email address. Please login using this email address or enter a different email address to register your account.","There is already a customer registered using this email address. Please login using this email address or enter a different email address to register your account."
310
+ "There was an error processing your order. Please contact us or try again later.","There was an error processing your order. Please contact us or try again later."
311
+ "This condition no longer exists.","This condition no longer exists."
312
+ "Total","Total"
313
+ "Total for this address","Total for this address"
314
+ "Unable to set Payment Method.","Unable to set Payment Method."
315
+ "Unit Price","Unit Price"
316
+ "Update Cart","Update Cart"
317
+ "Update Qty &amp; Addresses","Update Qty &amp; Addresses"
318
+ "Update Shopping Cart","Update Shopping Cart"
319
+ "Update Total","Update Total"
320
+ "Update product quantities in shopping cart","Update product quantities in shopping cart"
321
+ "Update product(s) quantities in shopping cart","Update product(s) quantities in shopping cart"
322
+ "Use Billing Address","Use Billing Address"
323
+ "VAT Number","VAT Number"
324
+ "We are processing your order and you will soon receive an email with details of the order. Once the order has shipped you will receive another email with a link to track its progress.","We are processing your order and you will soon receive an email with details of the order. Once the order has shipped you will receive another email with a link to track its progress."
325
+ "What's this?","What's this?"
326
+ "You have no items in your shopping cart.","You have no items in your shopping cart."
327
+ "You will receive an order confirmation email with details of your order and a link to track its progress.","You will receive an order confirmation email with details of your order and a link to track its progress."
328
+ "Your Checkout Progress","Your Checkout Progress"
329
+ "Your billing agreement # is: %s.","Your billing agreement # is: %s."
330
+ "Your order # is: %s.","Your order # is: %s."
331
+ "Your order cannot be completed at this time as there is no payment methods available for it.","Your order cannot be completed at this time as there is no payment methods available for it."
332
+ "Your order cannot be completed at this time as there is no shipping methods available for it. Please make necessary changes in your shipping address.","Your order cannot be completed at this time as there is no shipping methods available for it. Please make necessary changes in your shipping address."
333
+ "Your order has been received.","Your order has been received."
334
+ "Your order number is ","Your order number is "
335
+ "Your recurring payment profiles:","Your recurring payment profiles:"
336
+ "Zip/Postal Code","Zip/Postal Code"
app/locale/en_US/Mage_Cms.csv ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "A block identifier with the same properties already exists in the selected store.","A block identifier with the same properties already exists in the selected store."
2
+ "A directory with the same name already exists. Please try another folder name.","A directory with the same name already exists. Please try another folder name."
3
+ "A page URL key for specified store already exists.","A page URL key for specified store already exists."
4
+ "Action","Action"
5
+ "Add New Block","Add New Block"
6
+ "Add New Page","Add New Page"
7
+ "All Countries","All Countries"
8
+ "An error occurred while saving the page.","An error occurred while saving the page."
9
+ "Anchor Custom Text","Anchor Custom Text"
10
+ "Anchor Custom Title","Anchor Custom Title"
11
+ "Are you sure you want to delete current folder?","Are you sure you want to delete current folder?"
12
+ "Are you sure you want to delete the selected file?","Are you sure you want to delete the selected file?"
13
+ "Block","Block"
14
+ "Block Information","Block Information"
15
+ "Block Title","Block Title"
16
+ "CMS","CMS"
17
+ "CMS Content Wrapper","CMS Content Wrapper"
18
+ "CMS Home Page","CMS Home Page"
19
+ "CMS No Cookies Page","CMS No Cookies Page"
20
+ "CMS No Route Page","CMS No Route Page"
21
+ "CMS No-Route Page","CMS No-Route Page"
22
+ "CMS Page","CMS Page"
23
+ "CMS Page Link","CMS Page Link"
24
+ "CMS Page Link Block Template","CMS Page Link Block Template"
25
+ "CMS Page Link Inline Template","CMS Page Link Inline Template"
26
+ "CMS Pages (All)","CMS Pages (All)"
27
+ "CMS Static Block","CMS Static Block"
28
+ "CMS Static Block Default Template","CMS Static Block Default Template"
29
+ "Cannot create new directory.","Cannot create new directory."
30
+ "Cannot delete directory %s.","Cannot delete directory %s."
31
+ "Cannot delete root directory %s.","Cannot delete root directory %s."
32
+ "Cannot upload file.","Cannot upload file."
33
+ "Collapse All","Collapse All"
34
+ "Content","Content"
35
+ "Content Heading","Content Heading"
36
+ "Content Management","Content Management"
37
+ "Contents of a Static Block","Contents of a Static Block"
38
+ "Create Folder...","Create Folder..."
39
+ "Custom Design","Custom Design"
40
+ "Custom Design From","Custom Design From"
41
+ "Custom Design To","Custom Design To"
42
+ "Custom Layout","Custom Layout"
43
+ "Custom Layout Update XML","Custom Layout Update XML"
44
+ "Custom Theme","Custom Theme"
45
+ "Customer Tax Class Information","Customer Tax Class Information"
46
+ "Date Created","Date Created"
47
+ "Delete Block","Delete Block"
48
+ "Delete File","Delete File"
49
+ "Delete Folder","Delete Folder"
50
+ "Delete Page","Delete Page"
51
+ "Description","Description"
52
+ "Design","Design"
53
+ "Disabled","Disabled"
54
+ "Disabled Completely","Disabled Completely"
55
+ "Disabled by Default","Disabled by Default"
56
+ "Edit Block","Edit Block"
57
+ "Edit Block '%s'","Edit Block '%s'"
58
+ "Edit Page","Edit Page"
59
+ "Edit Page '%s'","Edit Page '%s'"
60
+ "Enable WYSIWYG Editor","Enable WYSIWYG Editor"
61
+ "Enabled","Enabled"
62
+ "Enabled by Default","Enabled by Default"
63
+ "Expand All","Expand All"
64
+ "General Information","General Information"
65
+ "Go to Home Page","Go to Home Page"
66
+ "Home","Home"
67
+ "ID","ID"
68
+ "Identifier","Identifier"
69
+ "If empty, the Page Title will be used","If empty, the Page Title will be used"
70
+ "Images (%s)","Images (%s)"
71
+ "Insert File","Insert File"
72
+ "Invalid folder name. Please, use alphanumeric characters, underscores and dashes.","Invalid folder name. Please, use alphanumeric characters, underscores and dashes."
73
+ "Keywords","Keywords"
74
+ "Last Modified","Last M