zendesk - Version 1.1.3

Version Notes

Added support for 11 languages:
- German
- Spanish
- French
- Italian
- Japanese
- Korean
- Nederlands (Dutch)
- Portuguese (Brasil)
- Russian
- Traditional Chinese
- Simplified Chinese

Download this release

Release Info

Developer Jason Smale
Extension zendesk
Version 1.1.3
Comparing to
See all releases


Code changes from version 1.1.2 to 1.1.3

Files changed (51) hide show
  1. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Config/Buttons/Generate.php +10 -8
  2. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Config/Buttons/Signup.php +10 -8
  3. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Config/Link.php +10 -8
  4. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Edit.php +10 -8
  5. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Edit/Form.php +12 -10
  6. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Dashboard.php +16 -0
  7. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Dashboard/Grids.php +10 -8
  8. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Dashboard/Tab/View.php +10 -8
  9. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Menu.php +10 -8
  10. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Order/View.php +10 -8
  11. app/code/community/Zendesk/Zendesk/Block/Adminhtml/Order/View/Tickets.php +10 -8
  12. app/code/community/Zendesk/Zendesk/Block/Supporttab.php +10 -8
  13. app/code/community/Zendesk/Zendesk/Helper/Data.php +10 -8
  14. app/code/community/Zendesk/Zendesk/LICENSE.txt +10 -14
  15. app/code/community/Zendesk/Zendesk/Model/Api/Abstract.php +10 -9
  16. app/code/community/Zendesk/Zendesk/Model/Api/Requesters.php +10 -8
  17. app/code/community/Zendesk/Zendesk/Model/Api/Tickets.php +10 -8
  18. app/code/community/Zendesk/Zendesk/Model/Api/Users.php +10 -8
  19. app/code/community/Zendesk/Zendesk/Model/Api/Views.php +10 -8
  20. app/code/community/Zendesk/Zendesk/Model/Observer.php +10 -8
  21. app/code/community/Zendesk/Zendesk/Model/Source/Views.php +10 -8
  22. app/code/community/Zendesk/Zendesk/controllers/Adminhtml/ZendeskController.php +10 -8
  23. app/code/community/Zendesk/Zendesk/controllers/ApiController.php +10 -8
  24. app/code/community/Zendesk/Zendesk/controllers/IndexController.php +15 -13
  25. app/code/community/Zendesk/Zendesk/etc/config.xml +15 -13
  26. app/code/community/Zendesk/Zendesk/etc/system.xml +16 -14
  27. app/design/adminhtml/default/default/layout/zendesk.xml +10 -8
  28. app/design/adminhtml/default/default/template/zendesk/config/button-generate.phtml +10 -8
  29. app/design/adminhtml/default/default/template/zendesk/config/button-signup.phtml +10 -8
  30. app/design/adminhtml/default/default/template/zendesk/config/link.phtml +10 -8
  31. app/design/adminhtml/default/default/template/zendesk/customer/tickets.phtml +10 -8
  32. app/design/adminhtml/default/default/template/zendesk/dashboard/empty.phtml +10 -8
  33. app/design/adminhtml/default/default/template/zendesk/dashboard/index.phtml +10 -8
  34. app/design/adminhtml/default/default/template/zendesk/dashboard/tabs/view.phtml +10 -8
  35. app/design/adminhtml/default/default/template/zendesk/left-menu.phtml +10 -8
  36. app/design/adminhtml/default/default/template/zendesk/order/tickets.phtml +10 -8
  37. app/design/frontend/base/default/layout/zendesk.xml +10 -8
  38. app/etc/modules/Zendesk_Zendesk.xml +10 -8
  39. app/locale/de_DE/Zendesk_Zendesk.csv +76 -0
  40. app/locale/en_US/Zendesk_Zendesk.csv +11 -5
  41. app/locale/es_ES/Zendesk_Zendesk.csv +76 -0
  42. app/locale/fr_FR/Zendesk_Zendesk.csv +76 -0
  43. app/locale/it_IT/Zendesk_Zendesk.csv +76 -0
  44. app/locale/ja_JP/Zendesk_Zendesk.csv +76 -0
  45. app/locale/ko_KR/Zendesk_Zendesk.csv +76 -0
  46. app/locale/nl_NL/Zendesk_Zendesk.csv +76 -0
  47. app/locale/pt_BR/Zendesk_Zendesk.csv +76 -0
  48. app/locale/ru_RU/Zendesk_Zendesk.csv +76 -0
  49. app/locale/zh_CN/Zendesk_Zendesk.csv +76 -0
  50. app/locale/zh_TW/Zendesk_Zendesk.csv +76 -0
  51. package.xml +19 -5
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Config/Buttons/Generate.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Config_Buttons_Generate extends Mage_Adminhtml_Block_System_Config_Form_Field
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Config_Buttons_Generate extends Mage_Adminhtml_Block_System_Config_Form_Field
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Config/Buttons/Signup.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Config_Buttons_Signup extends Mage_Adminhtml_Block_System_Config_Form_Field
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Config_Buttons_Signup extends Mage_Adminhtml_Block_System_Config_Form_Field
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Config/Link.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Config_Link extends Mage_Adminhtml_Block_System_Config_Form_Field
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Config_Link extends Mage_Adminhtml_Block_System_Config_Form_Field
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Edit.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Create_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Create_Edit extends Mage_Adminhtml_Block_Widget_Form_Container
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Edit/Form.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Create_Edit_form extends Mage_Adminhtml_Block_Widget_Form
@@ -103,8 +105,8 @@ class Zendesk_Zendesk_Block_Adminhtml_Create_Edit_form extends Mage_Adminhtml_Bl
103
 
104
  $fieldset->addField('order', 'text', array(
105
  'name' => 'order',
106
- 'label' => Mage::helper('zendesk')->__('Order Number'),
107
- 'title' => Mage::helper('zendesk')->__('Order Number'),
108
  'required' => false
109
  ));
110
 
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Create_Edit_form extends Mage_Adminhtml_Block_Widget_Form
105
 
106
  $fieldset->addField('order', 'text', array(
107
  'name' => 'order',
108
+ 'label' => Mage::helper('zendesk')->__('Order number'),
109
+ 'title' => Mage::helper('zendesk')->__('Order number'),
110
  'required' => false
111
  ));
112
 
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Dashboard.php CHANGED
@@ -1,4 +1,20 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  class Zendesk_Zendesk_Block_Adminhtml_Dashboard extends Mage_Adminhtml_Block_Template
3
  {
4
 
1
  <?php
2
+ /**
3
+ * Copyright 2012 Zendesk.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
  class Zendesk_Zendesk_Block_Adminhtml_Dashboard extends Mage_Adminhtml_Block_Template
19
  {
20
 
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Dashboard/Grids.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Dashboard_Grids extends Mage_Adminhtml_Block_Widget_Tabs
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Dashboard_Grids extends Mage_Adminhtml_Block_Widget_Tabs
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Dashboard/Tab/View.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Dashboard_Tab_View extends Mage_Adminhtml_Block_Widget_Container
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Dashboard_Tab_View extends Mage_Adminhtml_Block_Widget_Container
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Menu.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Menu extends Mage_Adminhtml_Block_Template
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Menu extends Mage_Adminhtml_Block_Template
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Order/View.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Order_View extends Mage_Adminhtml_Block_Sales_Order_View
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Order_View extends Mage_Adminhtml_Block_Sales_Order_View
app/code/community/Zendesk/Zendesk/Block/Adminhtml/Order/View/Tickets.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Adminhtml_Order_View_Tickets extends Mage_Adminhtml_Block_Sales_Order_Abstract
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Adminhtml_Order_View_Tickets extends Mage_Adminhtml_Block_Sales_Order_Abstract
app/code/community/Zendesk/Zendesk/Block/Supporttab.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Block_Supporttab extends Mage_Core_Block_Template
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Block_Supporttab extends Mage_Core_Block_Template
app/code/community/Zendesk/Zendesk/Helper/Data.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Helper_Data extends Mage_Core_Helper_Abstract
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Helper_Data extends Mage_Core_Helper_Abstract
app/code/community/Zendesk/Zendesk/LICENSE.txt CHANGED
@@ -1,17 +1,13 @@
1
- Copyright (c) 2012 Zendesk Pty Ltd
2
 
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of this
4
- software and associated documentation files (the "Software"), to deal in the Software
5
- without restriction, including without limitation the rights to use, copy, modify, merge,
6
- publish, distribute, sublicense, and/or sell copies of the Software, and to permit
7
- persons to whom the Software is furnished to do so, subject to the following conditions:
8
 
9
- The above copyright notice and this permission notice shall be included in all copies or
10
- substantial portions of the Software.
11
 
12
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13
- INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14
- PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
15
- FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
16
- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
17
- DEALINGS IN THE SOFTWARE.
1
+ Copyright 2012 Zendesk
2
 
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
 
 
6
 
7
+ http://www.apache.org/licenses/LICENSE-2.0
 
8
 
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
 
app/code/community/Zendesk/Zendesk/Model/Api/Abstract.php CHANGED
@@ -1,19 +1,20 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
-
17
  class Zendesk_Zendesk_Model_Api_Abstract extends Mage_Core_Model_Abstract
18
  {
19
  protected function _getUrl($path)
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
 
18
  class Zendesk_Zendesk_Model_Api_Abstract extends Mage_Core_Model_Abstract
19
  {
20
  protected function _getUrl($path)
app/code/community/Zendesk/Zendesk/Model/Api/Requesters.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Model_Api_Requesters extends Zendesk_Zendesk_Model_Api_Users
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Model_Api_Requesters extends Zendesk_Zendesk_Model_Api_Users
app/code/community/Zendesk/Zendesk/Model/Api/Tickets.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Model_Api_Tickets extends Zendesk_Zendesk_Model_Api_Abstract
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Model_Api_Tickets extends Zendesk_Zendesk_Model_Api_Abstract
app/code/community/Zendesk/Zendesk/Model/Api/Users.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Model_Api_Users extends Zendesk_Zendesk_Model_Api_Abstract
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Model_Api_Users extends Zendesk_Zendesk_Model_Api_Abstract
app/code/community/Zendesk/Zendesk/Model/Api/Views.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Model_Api_Views extends Zendesk_Zendesk_Model_Api_Abstract
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Model_Api_Views extends Zendesk_Zendesk_Model_Api_Abstract
app/code/community/Zendesk/Zendesk/Model/Observer.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Model_Observer
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Model_Observer
app/code/community/Zendesk/Zendesk/Model/Source/Views.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Model_Source_Views
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Model_Source_Views
app/code/community/Zendesk/Zendesk/controllers/Adminhtml/ZendeskController.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_Adminhtml_ZendeskController extends Mage_Adminhtml_Controller_Action
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_Adminhtml_ZendeskController extends Mage_Adminhtml_Controller_Action
app/code/community/Zendesk/Zendesk/controllers/ApiController.php CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
 
16
  class Zendesk_Zendesk_ApiController extends Mage_Core_Controller_Front_Action
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
 
18
  class Zendesk_Zendesk_ApiController extends Mage_Core_Controller_Front_Action
app/code/community/Zendesk/Zendesk/controllers/IndexController.php CHANGED
@@ -1,17 +1,19 @@
1
  <?php
2
- /**
3
- * Zendesk Magento integration
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
- *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
14
- */
 
 
15
 
16
  class Zendesk_Zendesk_IndexController extends Mage_Core_Controller_Front_Action
17
  {
1
  <?php
2
+ /**
3
+ * Copyright 2012 Zendesk.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
 
18
  class Zendesk_Zendesk_IndexController extends Mage_Core_Controller_Front_Action
19
  {
app/code/community/Zendesk/Zendesk/etc/config.xml CHANGED
@@ -1,23 +1,25 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Zendesk Magento integration
5
  *
6
- * NOTICE OF LICENSE
 
 
7
  *
8
- * This source file is subject to The MIT License (MIT) that is bundled with
9
- * 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/mit-license.php
12
  *
13
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
14
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
15
  */
16
  -->
17
  <config>
18
  <modules>
19
  <Zendesk_Zendesk>
20
- <version>1.1.2</version>
21
  </Zendesk_Zendesk>
22
  </modules>
23
  <zendesk>
@@ -148,12 +150,12 @@
148
  <sort_order>1</sort_order>
149
  </zendesk_dashboard>
150
  <zendesk_create module="zendesk">
151
- <title>Create</title>
152
  <action>adminhtml/zendesk/create</action>
153
  <sort_order>2</sort_order>
154
  </zendesk_create>
155
  <zendesk_launch module="zendesk">
156
- <title>Launch</title>
157
  <action>adminhtml/zendesk/launch</action>
158
  <sort_order>3</sort_order>
159
  </zendesk_launch>
@@ -175,10 +177,10 @@
175
  <title>Dashboard</title>
176
  </zendesk_dashboard>
177
  <zendesk_create translate="title" module="zendesk">
178
- <title>Create</title>
179
  </zendesk_create>
180
  <zendesk_launch translate="title" module="zendesk">
181
- <title>Launch</title>
182
  </zendesk_launch>
183
  <zendesk_settings translate="title" module="zendesk">
184
  <title>Settings</title>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2012 Zendesk.
5
  *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
  *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
11
  *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
  */
18
  -->
19
  <config>
20
  <modules>
21
  <Zendesk_Zendesk>
22
+ <version>1.1.3</version>
23
  </Zendesk_Zendesk>
24
  </modules>
25
  <zendesk>
150
  <sort_order>1</sort_order>
151
  </zendesk_dashboard>
152
  <zendesk_create module="zendesk">
153
+ <title>Create Ticket</title>
154
  <action>adminhtml/zendesk/create</action>
155
  <sort_order>2</sort_order>
156
  </zendesk_create>
157
  <zendesk_launch module="zendesk">
158
+ <title>Launch Zendesk</title>
159
  <action>adminhtml/zendesk/launch</action>
160
  <sort_order>3</sort_order>
161
  </zendesk_launch>
177
  <title>Dashboard</title>
178
  </zendesk_dashboard>
179
  <zendesk_create translate="title" module="zendesk">
180
+ <title>Create Ticket</title>
181
  </zendesk_create>
182
  <zendesk_launch translate="title" module="zendesk">
183
+ <title>Launch Zendesk</title>
184
  </zendesk_launch>
185
  <zendesk_settings translate="title" module="zendesk">
186
  <title>Settings</title>
app/code/community/Zendesk/Zendesk/etc/system.xml CHANGED
@@ -1,17 +1,19 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Zendesk Magento integration
5
  *
6
- * NOTICE OF LICENSE
 
 
7
  *
8
- * This source file is subject to The MIT License (MIT) that is bundled with
9
- * 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/mit-license.php
12
  *
13
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
14
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
15
  */
16
  -->
17
  <config>
@@ -36,7 +38,7 @@
36
  <general translate="label comment">
37
  <expanded>1</expanded>
38
  <label>General</label>
39
- <comment>General settings that are required to connect your Zendesk with Magento.</comment>
40
  <frontend_type>text</frontend_type>
41
  <sort_order>10</sort_order>
42
  <show_in_default>1</show_in_default>
@@ -67,7 +69,7 @@
67
  <show_in_default>1</show_in_default>
68
  <show_in_website>1</show_in_website>
69
  <show_in_store>1</show_in_store>
70
- <comment><![CDATA[To generate a token, login to Zendesk then go to Zendesk > Manage > Channels > API > Token]]></comment>
71
  </password>
72
  </fields>
73
  </general>
@@ -157,7 +159,7 @@
157
  <show_in_store>1</show_in_store>
158
  </contact_us>
159
  <feedback_tab_code_active translate="label">
160
- <label>Code to display feedback tab</label>
161
  <frontend_type>select</frontend_type>
162
  <source_model>adminhtml/system_config_source_yesno</source_model>
163
  <sort_order>6</sort_order>
@@ -197,14 +199,14 @@
197
  <show_in_website>1</show_in_website>
198
  <show_in_store>1</show_in_store>
199
  </footer_link_enabled>
200
- <order_field_id translate="label">
201
- <label>Zendesk Order ID field ID</label>
202
  <frontend_type>text</frontend_type>
203
  <sort_order>10</sort_order>
204
  <show_in_default>1</show_in_default>
205
  <show_in_website>1</show_in_website>
206
  <show_in_store>1</show_in_store>
207
- <comment><![CDATA[Used to link orders in Magento with tickets in Zendesk]]></comment>
208
  </order_field_id>
209
  </fields>
210
  </features>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2012 Zendesk.
5
  *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
  *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
11
  *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
  */
18
  -->
19
  <config>
38
  <general translate="label comment">
39
  <expanded>1</expanded>
40
  <label>General</label>
41
+ <comment>General settings that are required to connect Zendesk and Magento.</comment>
42
  <frontend_type>text</frontend_type>
43
  <sort_order>10</sort_order>
44
  <show_in_default>1</show_in_default>
69
  <show_in_default>1</show_in_default>
70
  <show_in_website>1</show_in_website>
71
  <show_in_store>1</show_in_store>
72
+ <comment><![CDATA[To generate a token, log in to Zendesk then select Manage > Channels > API > Token]]></comment>
73
  </password>
74
  </fields>
75
  </general>
159
  <show_in_store>1</show_in_store>
160
  </contact_us>
161
  <feedback_tab_code_active translate="label">
162
+ <label>Code to display Feedback Tab</label>
163
  <frontend_type>select</frontend_type>
164
  <source_model>adminhtml/system_config_source_yesno</source_model>
165
  <sort_order>6</sort_order>
199
  <show_in_website>1</show_in_website>
200
  <show_in_store>1</show_in_store>
201
  </footer_link_enabled>
202
+ <order_field_id translate="label comment">
203
+ <label>Zendesk Order Number field ID</label>
204
  <frontend_type>text</frontend_type>
205
  <sort_order>10</sort_order>
206
  <show_in_default>1</show_in_default>
207
  <show_in_website>1</show_in_website>
208
  <show_in_store>1</show_in_store>
209
+ <comment><![CDATA[Used to link order in Magento with tickets in Zendesk]]></comment>
210
  </order_field_id>
211
  </fields>
212
  </features>
app/design/adminhtml/default/default/layout/zendesk.xml CHANGED
@@ -1,17 +1,19 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Zendesk Magento integration
5
  *
6
- * NOTICE OF LICENSE
 
 
7
  *
8
- * This source file is subject to The MIT License (MIT) that is bundled with
9
- * 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/mit-license.php
12
  *
13
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
14
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
15
  */
16
  -->
17
  <layout>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2012 Zendesk.
5
  *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
  *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
11
  *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
  */
18
  -->
19
  <layout>
app/design/adminhtml/default/default/template/zendesk/config/button-generate.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <button style="" onclick="setLocation('<?php echo $this->getUrl('adminhtml/zendesk/generate'); ?>');" class="scalable" type="button" id="<?php echo $this->getHtmlId() ?>">
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <button style="" onclick="setLocation('<?php echo $this->getUrl('adminhtml/zendesk/generate'); ?>');" class="scalable" type="button" id="<?php echo $this->getHtmlId() ?>">
app/design/adminhtml/default/default/template/zendesk/config/button-signup.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <script type="text/javascript">
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <script type="text/javascript">
app/design/adminhtml/default/default/template/zendesk/config/link.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <a href="<?php echo $this->getLinkUrl(); ?>" target="_blank"><?php echo $this->getLabel(); ?></a>
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <a href="<?php echo $this->getLinkUrl(); ?>" target="_blank"><?php echo $this->getLabel(); ?></a>
app/design/adminhtml/default/default/template/zendesk/customer/tickets.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <?php
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <?php
app/design/adminhtml/default/default/template/zendesk/dashboard/empty.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <div class="grid np">
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <div class="grid np">
app/design/adminhtml/default/default/template/zendesk/dashboard/index.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <?php if($this->getIsZendeskDashboard() || Mage::getStoreConfig('zendesk/features/show_on_dashboard')): ?>
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <?php if($this->getIsZendeskDashboard() || Mage::getStoreConfig('zendesk/features/show_on_dashboard')): ?>
app/design/adminhtml/default/default/template/zendesk/dashboard/tabs/view.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <?php
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <?php
app/design/adminhtml/default/default/template/zendesk/left-menu.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <h3>Zendesk</h3>
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <h3>Zendesk</h3>
app/design/adminhtml/default/default/template/zendesk/order/tickets.phtml CHANGED
@@ -1,16 +1,18 @@
1
  <?php
2
  /**
3
- * Zendesk Magento integration
4
  *
5
- * NOTICE OF LICENSE
 
 
6
  *
7
- * This source file is subject to The MIT License (MIT) that is bundled with
8
- * 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/mit-license.php
11
  *
12
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
13
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
14
  */
15
  ?>
16
  <?php
1
  <?php
2
  /**
3
+ * Copyright 2012 Zendesk.
4
  *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
  *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
10
  *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
  */
17
  ?>
18
  <?php
app/design/frontend/base/default/layout/zendesk.xml CHANGED
@@ -1,17 +1,19 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Zendesk Magento integration
5
  *
6
- * NOTICE OF LICENSE
 
 
7
  *
8
- * This source file is subject to The MIT License (MIT) that is bundled with
9
- * 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/mit-license.php
12
  *
13
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
14
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
15
  */
16
  -->
17
  <layout>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2012 Zendesk.
5
  *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
  *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
11
  *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
  */
18
  -->
19
  <layout>
app/etc/modules/Zendesk_Zendesk.xml CHANGED
@@ -1,17 +1,19 @@
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
- * Zendesk Magento integration
5
  *
6
- * NOTICE OF LICENSE
 
 
7
  *
8
- * This source file is subject to The MIT License (MIT) that is bundled with
9
- * 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/mit-license.php
12
  *
13
- * @copyright Copyright (c) 2012 Zendesk (www.zendesk.com)
14
- * @license http://opensource.org/licenses/mit-license.php The MIT License (MIT)
 
 
 
15
  */
16
  -->
17
  <config>
1
  <?xml version="1.0"?>
2
  <!--
3
  /**
4
+ * Copyright 2012 Zendesk.
5
  *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
  *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
 
 
 
11
  *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
  */
18
  -->
19
  <config>
app/locale/de_DE/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Deutsch"
2
+ "Required for Magento App inside Zendesk to work.","Erforderlich, damit die Magento-App in Zendesk funktioniert."
3
+ "API Enabled","API aktiviert"
4
+ "Generate","Generieren"
5
+ "Successfully generated a new API token","Neuer API-Token erfolgreich generiert"
6
+ "API Details","API-Details"
7
+ "API Token","API-Token"
8
+ "Create tickets from Contact Us form","Tickets aus Kontaktformular erstellen"
9
+ "Decide which features you would like turned on in your Magento store.","Geben Sie an, welche Funktionen in Ihrem Magento-Shop aktiviert werden sollen."
10
+ "Code to display Feedback Tab","Code zur Darstellung des Feedback-Menüs"
11
+ "Customize Feedback Tab","Feedback-Menü anpassen"
12
+ "Zendesk Order Number field ID","Zendesk-Bestellnummerfeld-ID"
13
+ "Used to link order in Magento with tickets in Zendesk","Dient zur Verknüpfung der Bestellung in Magento mit Tickets in Zendesk"
14
+ "Show support tickets on customer view","Supporttickets in Kundenansicht anzeigen"
15
+ "Show support tickets on admin dashboard","Supporttickets in Admin-Dashboard anzeigen"
16
+ "Show support tickets on order view","Supporttickets in Bestellansicht anzeigen"
17
+ "Features","Funktionen"
18
+ "Views to show on dashboards","Ansichten, die in Dashboards erscheinen sollen"
19
+ "General settings that are required to connect Zendesk and Magento.","Allgemeine Einstellungen, die zur Verbindung von Zendesk und Magento erforderlich sind."
20
+ "Zendesk Domain","Zendesk-Domäne"
21
+ "Agent Email Address","E-Mail-Adresse des Agenten"
22
+ "Remote Authentication Token","Token zur Remoteauthentifizierung"
23
+ "General","Allgemein"
24
+ "Agent Token","Agenten-Token"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Um einen Token zu generieren, melden Sie sich bei Zendesk an und wählen Sie dann „Verwalten“ > „Kanäle“ > „API“ > „Token“."
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","Sie haben Zendesk noch nicht eingerichtet? Befolgen Sie unsere Setup-Anleitung, um Ihre Kunden über Zendesk zu unterstützen."
27
+ "Setup","Setup"
28
+ "Use Magento to manage user authentication.","Benutzerauthentifizierung über Magento verwalten."
29
+ "Single Sign-on","Single-Sign-On"
30
+ "API","API"
31
+ "Chat","Chat"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Kunden können von Zendesk aus auf die gewünschte Weise mit Ihnen Kontakt aufnehmen. Konfigurieren Sie die Kanäle, die Sie verwenden möchten, über die unten stehenden Links."
33
+ "Email","E-Mail"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Feedback-Menü"
36
+ "Support Channels","Supportkanäle"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Web-Portal"
40
+ "Dashboard","Dashboard"
41
+ "Zendesk domain not set. Please add this to the settings page.","Zendesk-Domäne nicht festgelegt. Fügen Sie sie zur Einstellungsseite hinzu."
42
+ "Launch Zendesk","Zendesk starten"
43
+ "No views selected. Please select one or more from the settings page.","Keine Ansichten ausgewählt. Wählen Sie auf der Einstellungsseite eine oder mehrere Ansichten aus."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Zendesk-SSO-Token nicht festgelegt. Fügen Sie ihn zur Einstellungsseite hinzu."
45
+ "Support Tickets","Supporttickets"
46
+ "View All Tickets","Alle Tickets anzeigen"
47
+ "View ticket in Zendesk","Ticket in Zendesk anzeigen"
48
+ "Assignee","Mitarbeiter"
49
+ "Create Ticket","Ticket erstellen"
50
+ "Description","Beschreibung"
51
+ "Group","Gruppe"
52
+ "New Support Ticket","Neues Supportticket"
53
+ "No tickets found","Keine Tickets gefunden"
54
+ "Order number","Bestellnummer"
55
+ "Priority","Priorität"
56
+ "High","Hoch"
57
+ "Low","Niedrig"
58
+ "Normal","Normal"
59
+ "Urgent","Dringend"
60
+ "Requester Email","E-Mail-Adresse des Anfragenden"
61
+ "Requester Name","Name des Anfragenden"
62
+ "Requester Website","Website des Anfragenden"
63
+ "Status","Status"
64
+ "New","Neu"
65
+ "On-hold","Angehalten"
66
+ "Open","Offen"
67
+ "Pending","Wartend"
68
+ "Solved","Gelöst"
69
+ "Subject","Betreff"
70
+ "Ticket #%s Created","Ticket #%s erstellt"
71
+ "Type","Typ"
72
+ "Incident","Ereignis"
73
+ "Problem","Problem"
74
+ "Question","Frage"
75
+ "Task","Aufgabe"
76
+ "Updated","Aktualisiert"
app/locale/en_US/Zendesk_Zendesk.csv CHANGED
@@ -5,7 +5,7 @@ API Details,API Details
5
  API Enabled,API Enabled
6
  API Token,API Token
7
  Assignee,Assignee
8
- Code to display feedback tab,Code to display feedback tab
9
  Create Ticket,Create Ticket
10
  Create tickets from Contact Us form,Create tickets from Contact Us form
11
  Customise Feedback Tab,Customise Feedback Tab
@@ -13,40 +13,46 @@ Dashboard,Dashboard
13
  Decide which features you would like turned on in your Magento store.,Decide which features you would like turned on in your Magento store.
14
  Display link to Zendesk in Magento footer,Display link to Zendesk in Magento footer
15
  Features,Features
16
- General settings that are required to connect your Zendesk with Magento.,General settings that are required to connect your Zendesk with Magento.
17
  Group,Group
18
  Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.,Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.
19
  Launch Zendesk,Launch Zendesk
20
  New Support Ticket,New Support Ticket
21
  No tickets found,No tickets found
22
  No views selected. Please select one or more from the settings page.,No views selected. Please select one or more from the settings page.
 
23
  Priority,Priority
24
  Remote Authentication,Remote Authentication
25
  Remote Authentication Token,Remote Authentication Token
26
  Requested,Requested
 
27
  Required for Magento App inside Zendesk to work.,Required for Magento App inside Zendesk to work.
 
28
  Settings,Settings
29
  Setup,Setup
30
  Setup Guide,Setup Guide
31
  Show support tickets on admin dashboard,Show support tickets on admin dashboard
32
  Show support tickets on customer view,Show support tickets on customer view
33
  Show support tickets on order view,Show support tickets on order view
 
 
34
  Status,Status
35
  Subject,Subject
36
  Successfully generated new API token,Successfully generated new API token
37
  Support,Support
38
  Support Tickets,Support Tickets
 
39
  Ticket #%s Created.,Ticket #%s Created.
40
  "To deploy tickets from Zendesk, we require a username and password/token of an agent on your Zendesk.","To deploy tickets from Zendesk, we require a username and password/token of an agent on your Zendesk."
41
- "To generate a token, login to Zendesk then go to Zendesk > Manage > Channels > API > Token","To generate a token, login to Zendesk then go to Zendesk > Manage > Channels > API > Token"
42
  Updated,Updated
43
  Use Magento to manage user authentication.,Use Magento to manage user authentication.
44
- Used to link orders in Magento with tickets in Zendesk,Used to link orders in Magento with tickets in Zendesk
45
  View All Tickets,View All Tickets
46
  View ticket in Zendesk,View ticket in Zendesk
47
  Views to show on dashboards,Views to show on dashboards
48
  Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.,Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.
49
  Zendesk Domain,Zendesk Domain
50
  Zendesk domain not set. Please add this to the settings page.,Zendesk domain not set. Please add this to the settings page.
51
- Zendesk Order ID field ID,Zendesk Order ID field ID
52
  Zendesk SSO token not set. Please add this to the settings page.,Zendesk SSO token not set. Please add this to the settings page.
5
  API Enabled,API Enabled
6
  API Token,API Token
7
  Assignee,Assignee
8
+ Code to display Feedback Tab,Code to display Feedback Tab
9
  Create Ticket,Create Ticket
10
  Create tickets from Contact Us form,Create tickets from Contact Us form
11
  Customise Feedback Tab,Customise Feedback Tab
13
  Decide which features you would like turned on in your Magento store.,Decide which features you would like turned on in your Magento store.
14
  Display link to Zendesk in Magento footer,Display link to Zendesk in Magento footer
15
  Features,Features
16
+ General settings that are required to connect Zendesk and Magento,General settings that are required to connect Zendesk and Magento.
17
  Group,Group
18
  Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.,Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.
19
  Launch Zendesk,Launch Zendesk
20
  New Support Ticket,New Support Ticket
21
  No tickets found,No tickets found
22
  No views selected. Please select one or more from the settings page.,No views selected. Please select one or more from the settings page.
23
+ Order number, Order number
24
  Priority,Priority
25
  Remote Authentication,Remote Authentication
26
  Remote Authentication Token,Remote Authentication Token
27
  Requested,Requested
28
+ Requester,Requester
29
  Required for Magento App inside Zendesk to work.,Required for Magento App inside Zendesk to work.
30
+ Save Config, Save Config
31
  Settings,Settings
32
  Setup,Setup
33
  Setup Guide,Setup Guide
34
  Show support tickets on admin dashboard,Show support tickets on admin dashboard
35
  Show support tickets on customer view,Show support tickets on customer view
36
  Show support tickets on order view,Show support tickets on order view
37
+ Single Sign-on, Single Sign-on
38
+ Single Sign-on Enabled, Single Sign-on Enabled
39
  Status,Status
40
  Subject,Subject
41
  Successfully generated new API token,Successfully generated new API token
42
  Support,Support
43
  Support Tickets,Support Tickets
44
+ Settings,Settings
45
  Ticket #%s Created.,Ticket #%s Created.
46
  "To deploy tickets from Zendesk, we require a username and password/token of an agent on your Zendesk.","To deploy tickets from Zendesk, we require a username and password/token of an agent on your Zendesk."
47
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","To generate a token, log in to Zendesk then select Manage > Channels > API > Token"
48
  Updated,Updated
49
  Use Magento to manage user authentication.,Use Magento to manage user authentication.
50
+ Used to link order in Magento with tickets in Zendesk,Used to link order in Magento with tickets in Zendesk
51
  View All Tickets,View All Tickets
52
  View ticket in Zendesk,View ticket in Zendesk
53
  Views to show on dashboards,Views to show on dashboards
54
  Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.,Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.
55
  Zendesk Domain,Zendesk Domain
56
  Zendesk domain not set. Please add this to the settings page.,Zendesk domain not set. Please add this to the settings page.
57
+ Zendesk Order Number field ID,Zendesk Order Number field ID
58
  Zendesk SSO token not set. Please add this to the settings page.,Zendesk SSO token not set. Please add this to the settings page.
app/locale/es_ES/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Español"
2
+ "Required for Magento App inside Zendesk to work.","Necesario para que Magento App pueda funcionar dentro de Zendesk."
3
+ "API Enabled","API activada"
4
+ "Generate","Generar"
5
+ "Successfully generated a new API token","Se generó correctamente un nuevo token de API."
6
+ "API Details","Detalles de API"
7
+ "API Token","Token de API"
8
+ "Create tickets from Contact Us form","Crear tickets basados en el formulario Contáctenos"
9
+ "Decide which features you would like turned on in your Magento store.","Decida qué funciones desea tener activadas en su tienda Magento."
10
+ "Code to display Feedback Tab","Código para mostrar la pestaña de ayuda"
11
+ "Customize Feedback Tab","Personalizar la pestaña de ayuda"
12
+ "Zendesk Order Number field ID","ID de campo del número del pedido de Zendesk"
13
+ "Used to link order in Magento with tickets in Zendesk","Se usa para vincular el pedido en Magento con tickets en Zendesk"
14
+ "Show support tickets on customer view","Mostrar tickets de soporte en la vista del cliente."
15
+ "Show support tickets on admin dashboard","Mostrar tickets de soporte en el panel del administrador"
16
+ "Show support tickets on order view","Mostrar tickets de soporte en la vista del pedido."
17
+ "Features","Funciones"
18
+ "Views to show on dashboards","Vistas para mostrar en los paneles "
19
+ "General settings that are required to connect Zendesk and Magento.","Configuración general requerida para conectar a Zendesk con Magento."
20
+ "Zendesk Domain","Dominio de Zendesk"
21
+ "Agent Email Address","Dirección de correo electrónico de agente"
22
+ "Remote Authentication Token","Token de autenticación remota"
23
+ "General","General"
24
+ "Agent Token","Token de agente"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Para generar un token, inicie sesión en Zendesk y luego seleccione Administrar > Canales > API > Token"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","¿No ha configurado su cuenta de Zendesk? Deje que la guía fácil le enseñe a usar Zendesk para ayudar a sus clientes."
27
+ "Setup","Configuración"
28
+ "Use Magento to manage user authentication.","Use Magento para administrar la autenticación de usuarios."
29
+ "Single Sign-on","Inicio de sesión único"
30
+ "API","API"
31
+ "Chat","Chat"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk permite que sus clientes lo contacten con su método preferido. Use los vínculos a continuación para configurar los canales que desee usar."
33
+ "Email","Correo electrónico"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Pestaña de ayuda"
36
+ "Support Channels","Canales de soporte"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Portal web"
40
+ "Dashboard","Panel"
41
+ "Zendesk domain not set. Please add this to the settings page.","Dominio de Zendesk no se ha configurado. Agréguelo a la página de configuración."
42
+ "Launch Zendesk","Inicie su cuenta de Zendesk."
43
+ "No views selected. Please select one or more from the settings page.","No se han seleccionado vistas. Seleccione una o más en la página de configuración."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Token SSO de Zendesk no se ha configurado. Agréguelo a la página de configuración."
45
+ "Support Tickets","Tickets de soporte"
46
+ "View All Tickets","Ver todos los tickets"
47
+ "View ticket in Zendesk","Ver ticket en Zendesk"
48
+ "Assignee","Agente asignado"
49
+ "Create Ticket","Crear ticket"
50
+ "Description","Descripción"
51
+ "Group","Grupo"
52
+ "New Support Ticket","Nuevo ticket de soporte"
53
+ "No tickets found","No se encontraron tickets"
54
+ "Order number","Número de pedido"
55
+ "Priority","Prioridad"
56
+ "High","Alta"
57
+ "Low","Baja"
58
+ "Normal","Normal"
59
+ "Urgent","Urgente"
60
+ "Requester Email","Correo electrónico del solicitante"
61
+ "Requester Name","Nombre del solicitante"
62
+ "Requester Website","Sitio web del solicitante"
63
+ "Status","Estado"
64
+ "New","Nuevo"
65
+ "On-hold","En espera"
66
+ "Open","Abierto"
67
+ "Pending","Pendiente"
68
+ "Solved","Resuelto"
69
+ "Subject","Asunto"
70
+ "Ticket #%s Created","El ticket #%s fue creado"
71
+ "Type","Tipo"
72
+ "Incident","Incidente"
73
+ "Problem","Problema"
74
+ "Question","Pregunta"
75
+ "Task","Tarea"
76
+ "Updated","Actualizado"
app/locale/fr_FR/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Français"
2
+ "Required for Magento App inside Zendesk to work.","Requis pour que l’appli Magento fonctionne dans Zendesk."
3
+ "API Enabled","API activée"
4
+ "Generate","Générer"
5
+ "Successfully generated a new API token","Nouveau jeton API généré"
6
+ "API Details","Détails de l’API"
7
+ "API Token","Jeton API"
8
+ "Create tickets from Contact Us form","Créer des tickets à partir du formulaire Nous contacter"
9
+ "Decide which features you would like turned on in your Magento store.","Décidez des fonctionnalités que vous souhaitez activer dans votre magasin Magento."
10
+ "Code to display Feedback Tab","Code pour afficher l’onglet de suggestions"
11
+ "Customize Feedback Tab","Personnaliser l’onglet de suggestions"
12
+ "Zendesk Order Number field ID","ID de champ du numéro de commande Zendesk"
13
+ "Used to link order in Magento with tickets in Zendesk","Utilisé pour lier la commande dans Magento aux tickets dans Zendesk"
14
+ "Show support tickets on customer view","Afficher les tickets d’assistance dans la vue client"
15
+ "Show support tickets on admin dashboard","Afficher les tickets d’assistance dans le tableau de bord d’administration"
16
+ "Show support tickets on order view","Afficher les tickets d’assistance dans la vue commande"
17
+ "Features","Fonctionnalités"
18
+ "Views to show on dashboards","Vues à afficher dans les tableaux de bord"
19
+ "General settings that are required to connect Zendesk and Magento.","Paramètres généraux requis pour connecter Zendesk et Magento."
20
+ "Zendesk Domain","Domaine Zendesk"
21
+ "Agent Email Address","Adresse email de l’agent"
22
+ "Remote Authentication Token","Jeton d’authentification à distance"
23
+ "General","Général"
24
+ "Agent Token","Jeton de l’agent"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Pour générer un jeton, connectez-vous à Zendesk, puis sélectionnez Gérer > Canaux > API > Jeton."
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","Vous n’avez pas encore configuré Zendesk ? Suivez notre guide de configuration facile et commencez à utiliser Zendesk pour assister vos clients."
27
+ "Setup","Configuration"
28
+ "Use Magento to manage user authentication.","Utilisez Magento pour gérer l’authentification des utilisateurs."
29
+ "Single Sign-on","Connexion unique"
30
+ "API","API"
31
+ "Chat","Chat"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk permet à vos clients de vous contacter en utilisant la méthode de leur choix. Utilisez les liens ci-dessous pour configurer les canaux que vous voulez utiliser."
33
+ "Email","Email"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Onglet de suggestions"
36
+ "Support Channels","Canaux d’assistance"
37
+ "Twitter","Twitter"
38
+ "Voice","Centre d’appels"
39
+ "Web Portal","Portail"
40
+ "Dashboard","Tableau de bord"
41
+ "Zendesk domain not set. Please add this to the settings page.","Domaine Zendesk non configuré. Ajoutez-le à la page des paramètres."
42
+ "Launch Zendesk","Lancer Zendesk"
43
+ "No views selected. Please select one or more from the settings page.","Aucune vue sélectionnée. Sélectionnez-en au moins une dans la page des paramètres."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Jeton de connexion unique Zendesk non configuré. Ajoutez-le à la page des paramètres."
45
+ "Support Tickets","Tickets d’assistance"
46
+ "View All Tickets","Afficher tous les tickets"
47
+ "View ticket in Zendesk","Afficher le ticket dans Zendesk"
48
+ "Assignee","Assigné"
49
+ "Create Ticket","Créer un ticket"
50
+ "Description","Description"
51
+ "Group","Groupe"
52
+ "New Support Ticket","Nouveau ticket d’assistance"
53
+ "No tickets found","Aucun ticket trouvé"
54
+ "Order number","Numéro de commande"
55
+ "Priority","Priorité"
56
+ "High","Élevée"
57
+ "Low","Basse"
58
+ "Normal","Normale"
59
+ "Urgent","Urgente"
60
+ "Requester Email","Email du demandeur"
61
+ "Requester Name","Nom du demandeur"
62
+ "Requester Website","Site Web du demandeur"
63
+ "Status","Statut"
64
+ "New","Nouveau"
65
+ "On-hold","En suspens"
66
+ "Open","Ouvert"
67
+ "Pending","En attente"
68
+ "Solved","Résolu"
69
+ "Subject","Sujet"
70
+ "Ticket #%s Created","Ticket #%s créé"
71
+ "Type","Type"
72
+ "Incident","Incident"
73
+ "Problem","Problème"
74
+ "Question","Question"
75
+ "Task","Tâche"
76
+ "Updated","Mis à jour"
app/locale/it_IT/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Italiano"
2
+ "Required for Magento App inside Zendesk to work.","Necessario per usare l’App Magento in Zendesk."
3
+ "API Enabled","Attivato API"
4
+ "Generate","Genera"
5
+ "Successfully generated a new API token","Generato correttamente un nuovo token API"
6
+ "API Details","Dettagli API"
7
+ "API Token","Token API"
8
+ "Create tickets from Contact Us form","Crea ticket dal modulo Contattarci"
9
+ "Decide which features you would like turned on in your Magento store.","Decidi quali funzionalità attivare nel negozio Magento."
10
+ "Code to display Feedback Tab","Codica per visualizzare scheda Feedback"
11
+ "Customize Feedback Tab","Personalizza scheda Feedback"
12
+ "Zendesk Order Number field ID","ID campo numero ordine Zendesk"
13
+ "Used to link order in Magento with tickets in Zendesk","Usato per collegare ordini in Magento e ticket in Zendesk"
14
+ "Show support tickets on customer view","Mostra ticket assistenza nella vista cliente"
15
+ "Show support tickets on admin dashboard","Mostra ticket assistenza nel pannello amministratore"
16
+ "Show support tickets on order view","Mostra ticket assistenza nella vista ordine"
17
+ "Features","Funzionalità"
18
+ "Views to show on dashboards","Viste da mostrare nei pannello"
19
+ "General settings that are required to connect Zendesk and Magento.","Impostazioni generali necessarie per collegare Zendesk e Magento."
20
+ "Zendesk Domain","Dominio Zendesk"
21
+ "Agent Email Address","Indirizzo e-mail agente"
22
+ "Remote Authentication Token","Token autenticazione remota"
23
+ "General","Generale"
24
+ "Agent Token","Token agente"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Per generare un token, accedi a Zendesk, quindi seleziona Gestisci > Canali > API > Token"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","Non hai ancora impostato Zendesk? Segui la nostra semplice guida all’impostazione per iniziare a usare Zendesk nell’assistenza ai clienti."
27
+ "Setup","Impostazione"
28
+ "Use Magento to manage user authentication.","Usa Magento per gestire l’autenticazione dei clienti."
29
+ "Single Sign-on","Single Sign-on"
30
+ "API","API"
31
+ "Chat","Chat"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk consente ai vostri clienti di contattarvi nel modo che preferiscono. Utilizza i collegamenti seguenti per configurare i canali da utilizzare."
33
+ "Email","E-mail"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Scheda Feedback"
36
+ "Support Channels","Canali assistenza"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Portale Web"
40
+ "Dashboard","Pannello"
41
+ "Zendesk domain not set. Please add this to the settings page.","Dominio Zendesk non impostato. Aggiungilo alla pagina impostazioni."
42
+ "Launch Zendesk","Avvia Zendesk"
43
+ "No views selected. Please select one or more from the settings page.","Nessuna vista selezionata Selezionane almeno una nella pagina impostazioni."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Token SSP Zendesk non impostato. Aggiungilo alla pagina impostazioni."
45
+ "Support Tickets","Ticket assistenza"
46
+ "View All Tickets","Mostra tutti i ticket"
47
+ "View ticket in Zendesk","Mostra ticket in Zendesk"
48
+ "Assignee","Assegnatario"
49
+ "Create Ticket","Crea ticket"
50
+ "Description","Descrizione"
51
+ "Group","Gruppo"
52
+ "New Support Ticket","Nuovo ticket assistenza"
53
+ "No tickets found","Nessun ticket trovato"
54
+ "Order number","Numero ordine"
55
+ "Priority","Priorità"
56
+ "High","Alta"
57
+ "Low","Bassa"
58
+ "Normal","Normale"
59
+ "Urgent","Urgente"
60
+ "Requester Email","E-mail richiedente"
61
+ "Requester Name","Nome richiedente"
62
+ "Requester Website","Sito Web richiedente"
63
+ "Status","Stato"
64
+ "New","Nuovo"
65
+ "On-hold","In attesa"
66
+ "Open","Aperto"
67
+ "Pending","In sospeso"
68
+ "Solved","Risolto"
69
+ "Subject","Oggetto"
70
+ "Ticket #%s Created","Ticket #%s creato"
71
+ "Type","Tipo"
72
+ "Incident","Incidente"
73
+ "Problem","Problema"
74
+ "Question","Domanda"
75
+ "Task","Compito"
76
+ "Updated","Aggiornato"
app/locale/ja_JP/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Japanese"
2
+ "Required for Magento App inside Zendesk to work.","Zendesk内でMagnetアプリが動作するために必要です。"
3
+ "API Enabled","API有効"
4
+ "Generate","生成"
5
+ "Successfully generated a new API token","新しいAPIトークンが正しく作成されました"
6
+ "API Details","APIの詳細"
7
+ "API Token","APIトークン"
8
+ "Create tickets from Contact Us form","「お問い合わせください」からチケットを作成"
9
+ "Decide which features you would like turned on in your Magento store.","Magentoストアで有効にする機能を決めてください。"
10
+ "Code to display Feedback Tab","「フィードバック」タブを表示するコード"
11
+ "Customize Feedback Tab","「フィードバック」タブをカスタマイズ"
12
+ "Zendesk Order Number field ID","Zendesk注文番号フィールドID"
13
+ "Used to link order in Magento with tickets in Zendesk","Magentoでの注文をZendeskのチケットにリンクさせるために使用"
14
+ "Show support tickets on customer view","カスタマービューにサポートチケットを表示"
15
+ "Show support tickets on admin dashboard","adminダッシュボードにサポートチケットを表示します"
16
+ "Show support tickets on order view","オーダービューにサポートチケットを表示"
17
+ "Features","機能"
18
+ "Views to show on dashboards","ダッシュボードに表示するビュー"
19
+ "General settings that are required to connect Zendesk and Magento.","ZendeskとMagentoを接続するために必要な一般的な設定。"
20
+ "Zendesk Domain","Zendeskドメイン"
21
+ "Agent Email Address","エージェントの電子メールアドレス"
22
+ "Remote Authentication Token","リモート認証トークン"
23
+ "General","全般"
24
+ "Agent Token","エージェントのトークン"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","トークンを生成するには、Zendeskにログインして、「管理」>「チャネル」>「API」>「トークン」を選択します"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","まだZendeskを設定していませんか?簡単な設定ガイドに従って、Zendeskを使用した顧客サポートを開始してください。"
27
+ "Setup","設定"
28
+ "Use Magento to manage user authentication.","Magentoを使用して、ユーザー認証を管理します。"
29
+ "Single Sign-on","シングルサインオン"
30
+ "API","API"
31
+ "Chat","チャット"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendeskでは、あなたのお客様が好きな方法で問い合わせることを可能にします。下のリンクをたどって、使用するチャネルを設定してください。"
33
+ "Email","電子メール"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","フィードバックタブ"
36
+ "Support Channels","サポートチャネル"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Webポータル"
40
+ "Dashboard","ダッシュボード"
41
+ "Zendesk domain not set. Please add this to the settings page.","Zendeskドメインが設定されていません。設定ページにこれを追加してください。"
42
+ "Launch Zendesk","Zendeskを起動"
43
+ "No views selected. Please select one or more from the settings page.","ビューが選択されていません。1つ以上のビューを設定ページから選択してください。"
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Zendesk SSOトークンが設定されていません。設定ページにこれを追加してください。"
45
+ "Support Tickets","サポートチケット"
46
+ "View All Tickets","すべてのチケットを表示"
47
+ "View ticket in Zendesk","Zendeskのチケットを表示"
48
+ "Assignee","担当者"
49
+ "Create Ticket","チケットを作成"
50
+ "Description","説明"
51
+ "Group","グループ"
52
+ "New Support Ticket","新規サポートチケット"
53
+ "No tickets found","該当するチケットがありません"
54
+ "Order number","注文番号"
55
+ "Priority","優先度"
56
+ "High","高"
57
+ "Low","低"
58
+ "Normal","普通"
59
+ "Urgent","緊急"
60
+ "Requester Email","リクエスタの電子メール"
61
+ "Requester Name","リクエスタ名"
62
+ "Requester Website","リクエスタのWebサイト"
63
+ "Status","ステータス"
64
+ "New","新規"
65
+ "On-hold","待機中"
66
+ "Open","オープン"
67
+ "Pending","保留中"
68
+ "Solved","解決済み"
69
+ "Subject","件名"
70
+ "Ticket #%s Created","チケット#%sが作成されました"
71
+ "Type","タイプ"
72
+ "Incident","事象"
73
+ "Problem","問題"
74
+ "Question","質問"
75
+ "Task","タスク"
76
+ "Updated","最終更新日時"
app/locale/ko_KR/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","한국어"
2
+ "Required for Magento App inside Zendesk to work.","Zendesk 내부 Magento 앱 작동을 위해 필요한 사항"
3
+ "API Enabled","API 사용"
4
+ "Generate","생성"
5
+ "Successfully generated a new API token","성공적으로 새로운 API 토큰 생성"
6
+ "API Details","API 세부 정보"
7
+ "API Token","API 토큰"
8
+ "Create tickets from Contact Us form","사용자 문의 양식에서 티켓 만들기"
9
+ "Decide which features you would like turned on in your Magento store.","Magento 스토어에서 설정하고자 하는 기능을 결정합니다."
10
+ "Code to display Feedback Tab","피드백 탭을 표시하는 코드"
11
+ "Customize Feedback Tab","피드백 탭 사용자 지정"
12
+ "Zendesk Order Number field ID","Zendesk 주문 번호 필드 ID"
13
+ "Used to link order in Magento with tickets in Zendesk","Magento의 주문과 Zendesk의 티켓 연결에 사용됩니다."
14
+ "Show support tickets on customer view","고객 보기에서 지원 티켓 표시"
15
+ "Show support tickets on admin dashboard","관리자 대시보드에서 지원 티켓 표시"
16
+ "Show support tickets on order view","주문 보기에서 지원 티켓 표시"
17
+ "Features","기능"
18
+ "Views to show on dashboards","대시보드에 표시할 보기"
19
+ "General settings that are required to connect Zendesk and Magento.","Zendesk와 Magento를 연결하는 데 필요한 일반 설정입니다."
20
+ "Zendesk Domain","Zendesk 도메인"
21
+ "Agent Email Address","상담원 이메일 주소"
22
+ "Remote Authentication Token","원격 인증 토큰"
23
+ "General","일반"
24
+ "Agent Token","상담원 토큰"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","토큰을 생성하려면 Zendesk에 로그인한 후 관리 > 채널 > API > 토큰을 선택합니다."
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","아직 Zendesk를 설정하지 않으셨습니까? 쉬운 설치 설명서를 따라 Zendesk를 설치하여 고객을 지원하십시오."
27
+ "Setup","설정"
28
+ "Use Magento to manage user authentication.","사용자 인증을 관리하려면 Magento를 사용하십시오."
29
+ "Single Sign-on","통합 인증"
30
+ "API","API"
31
+ "Chat","채팅"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk를 통해 고객들이 원하는 방법을 사용하여 귀사에 연락할수 있습니다. 사용하고자하는 채널을 구성하려면 아래 링크를 사용하십시오."
33
+ "Email","이메일"
34
+ "Facebook","페이스북"
35
+ "Feedback Tab","피드백 탭"
36
+ "Support Channels","지원 채널"
37
+ "Twitter","트위터"
38
+ "Voice","음성"
39
+ "Web Portal","웹 포털"
40
+ "Dashboard","대시보드"
41
+ "Zendesk domain not set. Please add this to the settings page.","Zendesk 도메인이 설정되지 않았습니다. Zendesk 도메인을 설정 페이지에 추가하십시오."
42
+ "Launch Zendesk","Zendesk 시작"
43
+ "No views selected. Please select one or more from the settings page.","보기를 선택하지 않았습니다. 설정 페이지에서 하나 이상을 선택하십시오."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Zendesk SSO 토큰이 설정되지 않았습니다. Zendesk SSO 토큰을 설정 페이지에 추가하십시오."
45
+ "Support Tickets","지원 티켓"
46
+ "View All Tickets","모든 티켓 보기"
47
+ "View ticket in Zendesk","Zendesk의 티켓 보기"
48
+ "Assignee","담당자"
49
+ "Create Ticket","티켓 만들기"
50
+ "Description","설명"
51
+ "Group","그룹"
52
+ "New Support Ticket","새 지원 티켓"
53
+ "No tickets found","티켓을 찾을 수 없습니다"
54
+ "Order number","주문 번호"
55
+ "Priority","우선 순위"
56
+ "High","높음"
57
+ "Low","낮음"
58
+ "Normal","보통"
59
+ "Urgent","긴급"
60
+ "Requester Email","요청자 이메일"
61
+ "Requester Name","요청자 이름"
62
+ "Requester Website","요청자 웹사이트"
63
+ "Status","상태"
64
+ "New","신규"
65
+ "On-hold","대기"
66
+ "Open","등록"
67
+ "Pending","보류"
68
+ "Solved","해결"
69
+ "Subject","제목"
70
+ "Ticket #%s Created","티켓 #%s을(를) 만들었습니다"
71
+ "Type","유형"
72
+ "Incident","사건"
73
+ "Problem","문제"
74
+ "Question","질문"
75
+ "Task","작업"
76
+ "Updated","업데이트됨"
app/locale/nl_NL/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Nederlands (Dutch)"
2
+ "Required for Magento App inside Zendesk to work.","Vereist voor Magento-app binnen Zendesk om te werken."
3
+ "API Enabled","API ingeschakeld"
4
+ "Generate","Genereren"
5
+ "Successfully generated a new API token","Er is een nieuw API-token gegenereerd"
6
+ "API Details","API-details"
7
+ "API Token","API-token"
8
+ "Create tickets from Contact Us form","Tickets maken van Contact-formulier"
9
+ "Decide which features you would like turned on in your Magento store.","Bepaal welke functies u ingeschakeld wilt hebben in uw Magento-winkel."
10
+ "Code to display Feedback Tab","Code om tabblad Feedback weer te geven"
11
+ "Customize Feedback Tab","Tabblad Feedback aanpassen"
12
+ "Zendesk Order Number field ID","Id van Zendesk-ordernummerveld"
13
+ "Used to link order in Magento with tickets in Zendesk","Gebruikt om order in Magento te koppelen aan tickets in Zendesk"
14
+ "Show support tickets on customer view","Ondersteuningstickets weergeven in klantweergave"
15
+ "Show support tickets on admin dashboard","Ondersteuningstickets weergeven in Administrator-dashboard"
16
+ "Show support tickets on order view","Ondersteuningstickets weergeven in orderweergave"
17
+ "Features","Kenmerken"
18
+ "Views to show on dashboards","Weergaven voor dashboards"
19
+ "General settings that are required to connect Zendesk and Magento.","Algemene instellingen die zijn vereist om Zendesk en Magento te koppelen."
20
+ "Zendesk Domain","Zendesk-domein"
21
+ "Agent Email Address","E-mailadres van agent"
22
+ "Remote Authentication Token","Token voor externe verificatie"
23
+ "General","Algemeen"
24
+ "Agent Token","Agent-token"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Als u een token wilt genereren, dient u zich aan te melden bij Zendesk. Selecteer daarna Beheren > Kanalen > API > Token"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","Hebt u Zendesk nog niet ingesteld? Volg de eenvoudige stappen om met Zendesk klanten te ondersteunen."
27
+ "Setup","Instellen"
28
+ "Use Magento to manage user authentication.","Met Magento kunt u gebruikersverificatie beheren."
29
+ "Single Sign-on","Enkelvoudige aanmelding"
30
+ "API","API"
31
+ "Chat","Chat"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Met Zendesk kunnen klanten contact met u opnemen via de methode van hun voorkeur. Gebruik onderstaande koppelingen om de kanalen te configureren die u wilt gebruiken."
33
+ "Email","E-mail"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Tabblad Feedback"
36
+ "Support Channels","Ondersteuningskanalen"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Webportal"
40
+ "Dashboard","Dashboard"
41
+ "Zendesk domain not set. Please add this to the settings page.","Zendesk-domein niet ingesteld. Voeg dit toe aan de instellingenpagina."
42
+ "Launch Zendesk","Zendesk starten"
43
+ "No views selected. Please select one or more from the settings page.","Geen weergaven geselecteerd. Selecteer er een of meer op de instellingenpagina."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Zendesk SSO-token niet ingesteld. Voeg dit toe aan de instellingenpagina."
45
+ "Support Tickets","Ondersteuningstickets"
46
+ "View All Tickets","Alle tickets weergeven"
47
+ "View ticket in Zendesk","Ticket in Zendesk weergeven"
48
+ "Assignee","Medewerker"
49
+ "Create Ticket","Ticket maken"
50
+ "Description","Beschrijving"
51
+ "Group","Groep"
52
+ "New Support Ticket","Nieuwe ondersteuningsticket"
53
+ "No tickets found","Geen tickets gevonden"
54
+ "Order number","Ordernummer"
55
+ "Priority","Prioriteit"
56
+ "High","Hoog"
57
+ "Low","Laag"
58
+ "Normal","Normaal"
59
+ "Urgent","Urgent"
60
+ "Requester Email","E-mail van aanvrager"
61
+ "Requester Name","Naam van aanvrager"
62
+ "Requester Website","Website van aanvrager"
63
+ "Status","Status"
64
+ "New","Nieuw"
65
+ "On-hold","In de wacht"
66
+ "Open","Open"
67
+ "Pending","In afwachting"
68
+ "Solved","Opgelost"
69
+ "Subject","Onderwerp"
70
+ "Ticket #%s Created","Ticket #%s gemaakt"
71
+ "Type","Type"
72
+ "Incident","Incident"
73
+ "Problem","Probleem"
74
+ "Question","Vraag"
75
+ "Task","Taak"
76
+ "Updated","Bijgewerkt"
app/locale/pt_BR/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Português (Brasil)"
2
+ "Required for Magento App inside Zendesk to work.","Obrigatório para que o aplicativo do Magento no Zendesk funcione."
3
+ "API Enabled","API ativada"
4
+ "Generate","Gerar"
5
+ "Successfully generated a new API token","Token da API gerado com êxito"
6
+ "API Details","Detalhes de API"
7
+ "API Token","Token da API"
8
+ "Create tickets from Contact Us form","Criar tickets a partir do formulário Entre em contato conosco"
9
+ "Decide which features you would like turned on in your Magento store.","Decida quais recursos você deseja ativar em sua loja Magento."
10
+ "Code to display Feedback Tab","Código para exibir Aba de ajuda"
11
+ "Customize Feedback Tab","Personalizar Aba de ajuda"
12
+ "Zendesk Order Number field ID","ID do campo número do pedido do Zendesk"
13
+ "Used to link order in Magento with tickets in Zendesk","Usado para vincular o pedido no Magento com tickets no Zendesk"
14
+ "Show support tickets on customer view","Exibir tickets de suporte na visualização do cliente"
15
+ "Show support tickets on admin dashboard","Exibir tickets de suporte no painel do administrador"
16
+ "Show support tickets on order view","Exibir tickets de suporte na visualização de pedidos"
17
+ "Features","Recursos"
18
+ "Views to show on dashboards","Visualizações a serem exibidas nos painéis"
19
+ "General settings that are required to connect Zendesk and Magento.","Configurações gerais obrigatórias para conectar o Zendesk ao Magento."
20
+ "Zendesk Domain","Domínio Zendesk"
21
+ "Agent Email Address","Endereço de email do agente"
22
+ "Remote Authentication Token","Token de autenticação remota"
23
+ "General","Geral"
24
+ "Agent Token","Token de agente"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Para gerar um token, entre no Zendesk e selecione Gerenciar > Canais > API > Token"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","Ainda não configurou o Zendesk? Siga nosso guia de configuração fácil para começar a usar o Zendesk para dar suporte a seus clientes."
27
+ "Setup","Configuração"
28
+ "Use Magento to manage user authentication.","Use o Magento para gerenciar a autenticação de usuários."
29
+ "Single Sign-on","Single Sign-On"
30
+ "API","API"
31
+ "Chat","Chat"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","O Zendesk permite que seus clientes entrem em contato com você usando o método que eles preferirem. Use os links abaixo para configurar os canais que você deseja usar."
33
+ "Email","Email"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Aba de ajuda"
36
+ "Support Channels","Canais de suporte"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Portal web"
40
+ "Dashboard","Painel de controle"
41
+ "Zendesk domain not set. Please add this to the settings page.","Domínio Zendesk não configurado. Adicione-o à página de configurações."
42
+ "Launch Zendesk","Iniciar o Zendesk"
43
+ "No views selected. Please select one or more from the settings page.","Nenhuma visualização selecionada. Selecione uma ou mais da página de configurações."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","O token do Zendesk SSO não foi configurado. Adicione-o à página de configurações."
45
+ "Support Tickets","Tickets de suporte"
46
+ "View All Tickets","Visualizar todos os tickets"
47
+ "View ticket in Zendesk","Visualizar ticket no Zendesk"
48
+ "Assignee","Atribuído"
49
+ "Create Ticket","Criar ticket"
50
+ "Description","Descrição"
51
+ "Group","Grupo"
52
+ "New Support Ticket","Novo ticket de suporte"
53
+ "No tickets found","Nenhum ticket foi encontrado"
54
+ "Order number","Número do pedido"
55
+ "Priority","Prioridade"
56
+ "High","Alta"
57
+ "Low","Baixa"
58
+ "Normal","Normal"
59
+ "Urgent","Urgente"
60
+ "Requester Email","Email do solicitante"
61
+ "Requester Name","Nome do solicitante"
62
+ "Requester Website","Website do solicitante"
63
+ "Status","Status"
64
+ "New","Novo"
65
+ "On-hold","Em espera"
66
+ "Open","Aberto"
67
+ "Pending","Pendente"
68
+ "Solved","Resolvido"
69
+ "Subject","Assunto"
70
+ "Ticket #%s Created","Ticket #%s criado"
71
+ "Type","Tipo"
72
+ "Incident","Incidente"
73
+ "Problem","Problema"
74
+ "Question","Pergunta"
75
+ "Task","Tarefa"
76
+ "Updated","Atualizado"
app/locale/ru_RU/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","Русский"
2
+ "Required for Magento App inside Zendesk to work.","Требуется для работы приложения Magento в Zendesk."
3
+ "API Enabled","API включен"
4
+ "Generate","Создать"
5
+ "Successfully generated a new API token","Новый маркер API успешно создан"
6
+ "API Details","Сведения об API"
7
+ "API Token","Маркер API"
8
+ "Create tickets from Contact Us form","Создание тикетов из формы «Обратитесь к нам»"
9
+ "Decide which features you would like turned on in your Magento store.","Определите, какие функции будут использоваться в вашем магазине Magento."
10
+ "Code to display Feedback Tab","Код для отображения вкладки обратной связи"
11
+ "Customize Feedback Tab","Настроить вкладку обратной связи"
12
+ "Zendesk Order Number field ID","Код поля номера заказа Zendesk"
13
+ "Used to link order in Magento with tickets in Zendesk","Используется для связи заказа в Magento с тикетами в Zendesk"
14
+ "Show support tickets on customer view","Показывать тикеты поддержки в окне пользователей"
15
+ "Show support tickets on admin dashboard","Показывать тикеты поддержки на панели администратора"
16
+ "Show support tickets on order view","Показывать тикеты поддержки в окне заказов"
17
+ "Features","Функции"
18
+ "Views to show on dashboards","Виды для отображения на панелях"
19
+ "General settings that are required to connect Zendesk and Magento.","Основные настройки, необходимые для соединения Zendesk и Magento."
20
+ "Zendesk Domain","Домен Zendesk"
21
+ "Agent Email Address","Адрес эл. почты агента"
22
+ "Remote Authentication Token","Маркер удаленной проверки подлинности"
23
+ "General","Общие"
24
+ "Agent Token","Маркер агента"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","Для создания маркера войдите в Zendesk и выберите команды «Управление > Каналы > API > Маркер»"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","Вы еще не настроили Zendesk? Выполните простые инструкции по настройке, и Zendesk начнет поддержку ваших клиентов."
27
+ "Setup","Настройка"
28
+ "Use Magento to manage user authentication.","Используйте Magento для управления проверкой подлинности пользователей."
29
+ "Single Sign-on","Сквозная авторизация"
30
+ "API","API"
31
+ "Chat","Чат"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk позволяет вашим пользователям общаться друг с другом, используя предпочитаемые ими методы. С помощью приведенных ниже ссылок настройте каналы, которые хотите использовать."
33
+ "Email","Почта"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","Вкладка обратной связи"
36
+ "Support Channels","Каналы поддержки"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Веб-портал"
40
+ "Dashboard","Панель управления"
41
+ "Zendesk domain not set. Please add this to the settings page.","Домен Zendesk не задан. Укажите его на странице настроек."
42
+ "Launch Zendesk","Запустить Zendesk"
43
+ "No views selected. Please select one or more from the settings page.","Не выбран ни один вид. Выберите вид(ы) на странице настроек."
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Маркер сквозной авторизации Zendesk не задан. Укажите его на странице настроек."
45
+ "Support Tickets","Тикеты поддержки"
46
+ "View All Tickets","Посмотреть все тикеты"
47
+ "View ticket in Zendesk","Посмотреть тикет в Zendesk"
48
+ "Assignee","Исполнитель"
49
+ "Create Ticket","Создать тикет"
50
+ "Description","Описание"
51
+ "Group","Группа"
52
+ "New Support Ticket","Новый тикет поддержки"
53
+ "No tickets found","Тикеты не найдены"
54
+ "Order number","Номер заказа"
55
+ "Priority","Приоритет"
56
+ "High","Срочный"
57
+ "Low","Низкий"
58
+ "Normal","Нормальный"
59
+ "Urgent","Экстренный"
60
+ "Requester Email","Адрес эл. почты инициатора"
61
+ "Requester Name","Имя инициатора"
62
+ "Requester Website","Веб-сайт инициатора"
63
+ "Status","Статус"
64
+ "New","Новый"
65
+ "On-hold","На удержании"
66
+ "Open","Открыт"
67
+ "Pending","В ожидании"
68
+ "Solved","Выполнен"
69
+ "Subject","Тема"
70
+ "Ticket #%s Created","Тикет #%s создан"
71
+ "Type","Тип"
72
+ "Incident","Инцидент"
73
+ "Problem","Проблема"
74
+ "Question","Вопрос"
75
+ "Task","Задача"
76
+ "Updated","Обновлен"
app/locale/zh_CN/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","简体中文 (Simplified Chinese)"
2
+ "Required for Magento App inside Zendesk to work.","供 Zendesk 内部的 Magento App 运作所需。"
3
+ "API Enabled","启用 API"
4
+ "Generate","生成"
5
+ "Successfully generated a new API token","已成功生成新的 API 密钥"
6
+ "API Details","API 详情"
7
+ "API Token","API 密钥"
8
+ "Create tickets from Contact Us form","从“联系我们”窗体创建工单"
9
+ "Decide which features you would like turned on in your Magento store.","决定您希望在 Magento 商店中打开的功能。"
10
+ "Code to display Feedback Tab","显示反馈标签的代码"
11
+ "Customize Feedback Tab","自定义反馈标签"
12
+ "Zendesk Order Number field ID","Zendesk 订单号字段 ID"
13
+ "Used to link order in Magento with tickets in Zendesk","用于链接 Magento 订单与 Zendesk 工单"
14
+ "Show support tickets on customer view","在客户视图中显示支持工单"
15
+ "Show support tickets on admin dashboard","在管理员面板中显示支持工单"
16
+ "Show support tickets on order view","在订单视图中显示支持工单"
17
+ "Features","功能"
18
+ "Views to show on dashboards","在面板上显示的视图"
19
+ "General settings that are required to connect Zendesk and Magento.","用于连接 Zendesk 和 Magento 的通用设置。"
20
+ "Zendesk Domain","Zendesk 域名"
21
+ "Agent Email Address","代理电邮地址"
22
+ "Remote Authentication Token","远程身份验证密钥"
23
+ "General","通用"
24
+ "Agent Token","代理密钥"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","要生成密钥,登录 Zendesk 然后选择管理 > 渠道 > API > 密钥"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","尚未设置 Zendesk?跟着我们的简易设置指南,开始使用 Zendesk 支持客户。"
27
+ "Setup","设置"
28
+ "Use Magento to manage user authentication.","使用 Magento 管理用户身份验证。"
29
+ "Single Sign-on","单一登录"
30
+ "API","API"
31
+ "Chat","交谈"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk 允许您的客户用其偏好的方式联系您。使用下面的链接配置您希望使用的渠道。"
33
+ "Email","电邮"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","反馈标签"
36
+ "Support Channels","支持渠道"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","Web 门户"
40
+ "Dashboard","面板"
41
+ "Zendesk domain not set. Please add this to the settings page.","Zendesk 域名尚未设置。请将此添加至设置页面。"
42
+ "Launch Zendesk","启动 Zendesk"
43
+ "No views selected. Please select one or more from the settings page.","未选择视图。请从设置页面选择一个或多个。"
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Zendesk SSO 密钥尚未设置。请将此添加至设置页面。"
45
+ "Support Tickets","支持工单"
46
+ "View All Tickets","查看所有工单"
47
+ "View ticket in Zendesk","在 Zendesk 中查看工单"
48
+ "Assignee","受托人"
49
+ "Create Ticket","创建工单"
50
+ "Description","描述"
51
+ "Group","组"
52
+ "New Support Ticket","新建支持工单"
53
+ "No tickets found","未找到工单"
54
+ "Order number","订单号"
55
+ "Priority","优先级"
56
+ "High","高"
57
+ "Low","低"
58
+ "Normal","正常"
59
+ "Urgent","紧急"
60
+ "Requester Email","请求者电邮"
61
+ "Requester Name","请求者名称"
62
+ "Requester Website","请求者网站"
63
+ "Status","状态"
64
+ "New","新建"
65
+ "On-hold","暂停"
66
+ "Open","已开启"
67
+ "Pending","未决"
68
+ "Solved","已解决"
69
+ "Subject","标题"
70
+ "Ticket #%s Created","工单 #%s 已创建"
71
+ "Type","类型"
72
+ "Incident","事件"
73
+ "Problem","事故"
74
+ "Question","问题"
75
+ "Task","任务"
76
+ "Updated","更新于"
app/locale/zh_TW/Zendesk_Zendesk.csv ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "English","繁體中文 (Traditional Chinese)"
2
+ "Required for Magento App inside Zendesk to work.","供 Zendesk 內 Magento App 運作所需。"
3
+ "API Enabled","啟用 API"
4
+ "Generate","產生"
5
+ "Successfully generated a new API token","已成功產生新的 API 金鑰"
6
+ "API Details","API 詳情"
7
+ "API Token","API 金鑰"
8
+ "Create tickets from Contact Us form","從「聯絡我們」表單建立工單"
9
+ "Decide which features you would like turned on in your Magento store.","決定您希望在 Magento 商店中開啟的功能。"
10
+ "Code to display Feedback Tab","顯示反饋標籤的代碼"
11
+ "Customize Feedback Tab","自訂反饋標籤"
12
+ "Zendesk Order Number field ID","Zendesk 訂單號碼欄位 ID"
13
+ "Used to link order in Magento with tickets in Zendesk","用於連結 Magento 訂單與 Zendesk 工單"
14
+ "Show support tickets on customer view","在客戶視圖中顯示支援工單"
15
+ "Show support tickets on admin dashboard","在管理員儀表板中顯示支援工單"
16
+ "Show support tickets on order view","在訂單視圖中顯示支援工單"
17
+ "Features","功能"
18
+ "Views to show on dashboards","在儀表板上顯示的視圖"
19
+ "General settings that are required to connect Zendesk and Magento.","用於連線 Zendesk 和 Magento 的一般設定值。"
20
+ "Zendesk Domain","Zendesk 網域"
21
+ "Agent Email Address","代理電郵地址"
22
+ "Remote Authentication Token","遠端驗證金鑰"
23
+ "General","一般"
24
+ "Agent Token","代理金鑰"
25
+ "To generate a token, log in to Zendesk then select Manage > Channels > API > Token","要產生金鑰,登入 Zendesk 然後選擇管理 > 管道 > API > 金鑰"
26
+ "Haven't setup Zendesk yet? Follow our easy setup guide to start using Zendesk to support your customers.","尚未設定 Zendesk?跟著我們的簡易設定指南,開始使用 Zendesk 支援客戶。"
27
+ "Setup","設定"
28
+ "Use Magento to manage user authentication.","使用 Magento 管理使用者驗證。"
29
+ "Single Sign-on","單一登入"
30
+ "API","API"
31
+ "Chat","交談"
32
+ "Zendesk allows your customers to contact you using the methods they prefer. Use the links below to configure the channels you would like to use.","Zendesk 允許您的客戶用其偏好的方式聯絡您。使用下面的連結配置您希望使用的管道。"
33
+ "Email","電郵"
34
+ "Facebook","Facebook"
35
+ "Feedback Tab","反饋標籤"
36
+ "Support Channels","支援管道"
37
+ "Twitter","Twitter"
38
+ "Voice","Voice"
39
+ "Web Portal","入口網站"
40
+ "Dashboard","儀表板"
41
+ "Zendesk domain not set. Please add this to the settings page.","Zendesk 網域尚未設定。請將此新增至設定值頁面。"
42
+ "Launch Zendesk","啟動 Zendesk"
43
+ "No views selected. Please select one or more from the settings page.","未選擇視圖。請從設定值頁面選擇一個或多個。"
44
+ "Zendesk SSO token not been set. Please add this to the settings page.","Zendesk SSO 金鑰尚未設定。請將此新增至設定值頁面。"
45
+ "Support Tickets","支援工單"
46
+ "View All Tickets","檢視所有工單"
47
+ "View ticket in Zendesk","在 Zendesk 中檢視工單"
48
+ "Assignee","受託人"
49
+ "Create Ticket","建立工單"
50
+ "Description","描述"
51
+ "Group","組"
52
+ "New Support Ticket","新建支援工單"
53
+ "No tickets found","找不到工單"
54
+ "Order number","訂單號碼"
55
+ "Priority","優先等級"
56
+ "High","高"
57
+ "Low","低"
58
+ "Normal","正常"
59
+ "Urgent","緊急"
60
+ "Requester Email","請求者電郵"
61
+ "Requester Name","請求者名稱"
62
+ "Requester Website","請求者網站"
63
+ "Status","狀態"
64
+ "New","新建"
65
+ "On-hold","暫停"
66
+ "Open","已開啟"
67
+ "Pending","未決"
68
+ "Solved","已解決"
69
+ "Subject","標題"
70
+ "Ticket #%s Created","工單 #%s 已建立"
71
+ "Type","類型"
72
+ "Incident","事件"
73
+ "Problem","事故"
74
+ "Question","問題"
75
+ "Task","任務"
76
+ "Updated","更新於"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>zendesk</name>
4
- <version>1.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache Software License v2</license>
7
  <channel>community</channel>
@@ -17,11 +17,25 @@ This extension makes Zendesk work seamlessly with Magento to enable stores to de
17
  - Display relevant support tickets on order &amp; customer dashboards&lt;br /&gt;&#xD;
18
  - Create support tickets from Contact Us requests&lt;br /&gt;&#xD;
19
  - Easily add a feedback tab to your site</description>
20
- <notes>Fix to resolve cache issue</notes>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  <authors><author><name>Jason Smale</name><user>zendesk</user><email>jsmale@zendesk.com</email></author><author><name>Fontis</name><user>fontis</user><email>magento@fontis.com.au</email></author></authors>
22
- <date>2012-11-12</date>
23
- <time>10:24:37</time>
24
- <contents><target name="mageetc"><dir name="modules"><file name="Zendesk_Zendesk.xml" hash="7edb55f3349e4ad2ff74c2fb6568b6f5"/></dir></target><target name="magecommunity"><dir name="Zendesk"><dir name="Zendesk"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Buttons"><file name="Generate.php" hash="e8e6cfed55f6b4f0545fb4e4e6910e8c"/><file name="Signup.php" hash="590cfac588241092a435aacff891fe00"/></dir><file name="Link.php" hash="31f933cbc1fef82be811d1b18f3c1ea8"/></dir><dir name="Create"><dir name="Edit"><file name="Form.php" hash="6efa3803bd7dadc849c6eb4c24b6f348"/></dir><file name="Edit.php" hash="2f745c92d8ae989d8efca07a4eb8c882"/></dir><dir name="Dashboard"><file name="Grids.php" hash="d0fcd44587dd5638f9b30c448b9401b1"/><dir name="Tab"><file name="View.php" hash="de6b1fbec6586ecf622425e819dd8630"/></dir></dir><file name="Dashboard.php" hash="dc4f3431ddaf57bedbb637e83861a8ed"/><file name="Menu.php" hash="29818e0fe101898350ca1ff93c1848a2"/><dir name="Order"><dir name="View"><file name="Tickets.php" hash="f4de4b62bff9957082cb65a9de020943"/></dir><file name="View.php" hash="791482c44b3d3ee806ab50c2ded76a76"/></dir></dir><file name="Supporttab.php" hash="7b9185784e85db83e7b98b32151ac5bd"/></dir><dir name="Helper"><file name="Data.php" hash="21be54f819b61a343b76b4c906f47748"/></dir><file name="LICENSE.txt" hash="5e5e84085e3a6622e82e7a9f4c52e6a3"/><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="60c89bbba3b8c91adf43d674222935b0"/><file name="Requesters.php" hash="b77b4a68e1a4069afd636b3e5eb9c65d"/><file name="Tickets.php" hash="b9c3128bc55c8dadd058f9d177ba47ba"/><file name="Users.php" hash="d9ba554ea11442e64786551b44eeda66"/><file name="Views.php" hash="b24bf7e1654b011c75eea6d573f225e3"/></dir><file name="Observer.php" hash="f588fb73fee556e265651c2fe0b9f806"/><dir name="Source"><file name="Views.php" hash="cff74c9b29385a50a7fbb0fd09ed3daf"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ZendeskController.php" hash="133f1d13aa824b95ae7df8a4e61d6aa4"/></dir><file name="ApiController.php" hash="3a9b8d2b545b420b671d862a38bb311b"/><file name="IndexController.php" hash="95682b48e725b4b054b582566b6ab68a"/></dir><dir name="etc"><file name="config.xml" hash="e5cc59947f4e9ae498b8c43d11428615"/><file name="system.xml" hash="ced0f4ea84c280ba139fd6549c97ac74"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Zendesk_Zendesk.csv" hash="bb79d2d7591e8b94c6a4f30868980ad8"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zendesk.xml" hash="6b5e0f59c6c713b8e94bdd1281fc0743"/></dir><dir name="template"><dir name="zendesk"><dir name="config"><file name="button-generate.phtml" hash="7f3e2e207a81cb7e092507e7f6d526ae"/><file name="button-signup.phtml" hash="da45deac5d41c4f2abf5949515096e78"/><file name="link.phtml" hash="7acc00626ef529dc7c2b41861df438bb"/></dir><dir name="customer"><file name="tickets.phtml" hash="edd373911462b97554bda5aba1bd7a3a"/></dir><dir name="dashboard"><file name="empty.phtml" hash="bc46759dee9d291b8750dfd09e6dba74"/><file name="index.phtml" hash="9f2a75fcde8fdbecdff20ff8b7340a88"/><dir name="tabs"><file name="view.phtml" hash="2cb78499b250f9bf2d104daa5fc0f8d1"/></dir></dir><file name="left-menu.phtml" hash="78d5d8e32647c024d73287896f84df5d"/><dir name="order"><file name="tickets.phtml" hash="efe1c9582779b8bb5a6a182c9106d88d"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zendesk.xml" hash="8017030a4724ee55a2668d4db24c25ee"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zendesk"><file name="button.png" hash="58e62edb7f4be46e3b29c0bb774c7ad7"/><file name="icon.png" hash="b5bfce535c987d1e9e604823ac4b3943"/><file name="zendesk-tab.png" hash="0f322d15c392528c212d6491732bc133"/><file name="zendesk.css" hash="454aaabc787598a2ee2db5dd48f8ed96"/></dir></dir></dir></dir></target></contents>
25
  <compatible/>
26
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
27
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>zendesk</name>
4
+ <version>1.1.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache Software License v2</license>
7
  <channel>community</channel>
17
  - Display relevant support tickets on order &amp; customer dashboards&lt;br /&gt;&#xD;
18
  - Create support tickets from Contact Us requests&lt;br /&gt;&#xD;
19
  - Easily add a feedback tab to your site</description>
20
+ <notes>Added support for 11 languages:&#xD;
21
+ - German&#xD;
22
+ - Spanish&#xD;
23
+ - French&#xD;
24
+ - Italian&#xD;
25
+ - Japanese&#xD;
26
+ - Korean&#xD;
27
+ - Nederlands (Dutch)&#xD;
28
+ - Portuguese (Brasil)&#xD;
29
+ - Russian&#xD;
30
+ - Traditional Chinese&#xD;
31
+ - Simplified Chinese&#xD;
32
+ &#xD;
33
+ &#xD;
34
+ </notes>
35
  <authors><author><name>Jason Smale</name><user>zendesk</user><email>jsmale@zendesk.com</email></author><author><name>Fontis</name><user>fontis</user><email>magento@fontis.com.au</email></author></authors>
36
+ <date>2012-11-30</date>
37
+ <time>04:30:15</time>
38
+ <contents><target name="mageetc"><dir name="modules"><file name="Zendesk_Zendesk.xml" hash="a630cf18c788dafb70d4c156a33eaa07"/></dir></target><target name="magecommunity"><dir name="Zendesk"><dir name="Zendesk"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><dir name="Buttons"><file name="Generate.php" hash="7fa35e3e71b4bfb94f2dceddb19e86a0"/><file name="Signup.php" hash="f0d9ec9bc9a99f8643f1c2e6ac9989f2"/></dir><file name="Link.php" hash="779827427e11db311b6e1de9d42818f2"/></dir><dir name="Create"><dir name="Edit"><file name="Form.php" hash="fce297c645bb4bcc5433f317500aff96"/></dir><file name="Edit.php" hash="43aaf990ffaf4fd2ef0f65bbbbc19935"/></dir><dir name="Dashboard"><file name="Grids.php" hash="5b733e8b0f1e9c555619ff37f909bc00"/><dir name="Tab"><file name="View.php" hash="7d98b1f871626a4e783a9dd82bb4ea24"/></dir></dir><file name="Dashboard.php" hash="cd58a68d5a8cb2f3814426598ef016c3"/><file name="Menu.php" hash="c6000d5c571de25414f67dc8f49d97a0"/><dir name="Order"><dir name="View"><file name="Tickets.php" hash="a83a2ad42801ddbddad2d761779a597b"/></dir><file name="View.php" hash="db944df25b671288ad9e04d699653a19"/></dir></dir><file name="Supporttab.php" hash="4c5cbb2a18827045a3d0989ccb878733"/></dir><dir name="Helper"><file name="Data.php" hash="c1c7d21a04a472202d7e7639aa7837e5"/></dir><file name="LICENSE.txt" hash="d9922043f61f536de5d4d7af831e7f73"/><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="02c9893a6d4452988ea68629b2d64558"/><file name="Requesters.php" hash="24eeb10f3eb80c15915af3fd50506e38"/><file name="Tickets.php" hash="14e55044b0855b6159fff9daf222c6dd"/><file name="Users.php" hash="1ecfe4c536bb45ccc6046dbb3743712b"/><file name="Views.php" hash="3cf9eedc651389599a4fe5e5ecfbeebe"/></dir><file name="Observer.php" hash="a745f0ebef9f5a3f203914b55a7854b8"/><dir name="Source"><file name="Views.php" hash="1c7527338bf40082016a62e45fe44622"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="ZendeskController.php" hash="799bdfaa5d51213913c057902a6ef390"/></dir><file name="ApiController.php" hash="65fdebea6b94b44344300308376722d2"/><file name="IndexController.php" hash="a9c590f951f294d3641c29bd98b6834c"/></dir><dir name="etc"><file name="config.xml" hash="45bcbf8c39141c1e44b1f11119b14927"/><file name="system.xml" hash="6e3e922965b5d713a1a1ef100401f28e"/></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Zendesk_Zendesk.csv" hash="7ca6957ec2ab86d7cad0da6d3db451d8"/></dir><dir name="de_DE"><file name="Zendesk_Zendesk.csv" hash="763c45870e912c2510cd5202cd844ee5"/></dir><dir name="es_ES"><file name="Zendesk_Zendesk.csv" hash="0602d8b70510f15784e1cca16cc2c41c"/></dir><dir name="fr_FR"><file name="Zendesk_Zendesk.csv" hash="f292cb30c7103dee6d47f808f82b3b6d"/></dir><dir name="it_IT"><file name="Zendesk_Zendesk.csv" hash="1dca15b2c95ac058a442fe764afb359c"/></dir><dir name="ja_JP"><file name="Zendesk_Zendesk.csv" hash="71de6c4043003e0cfc0ac8f03fb71a31"/></dir><dir name="ko_KR"><file name="Zendesk_Zendesk.csv" hash="f1ab32c6d8eb2e4486a7dbfb8d1e1abc"/></dir><dir name="nl_NL"><file name="Zendesk_Zendesk.csv" hash="bdda5f5ab107984487cbba1e1cb47c15"/></dir><dir name="pt_BR"><file name="Zendesk_Zendesk.csv" hash="8a1458f0e498706c7541851a9a32ed3c"/></dir><dir name="ru_RU"><file name="Zendesk_Zendesk.csv" hash="871fcc5befc62df4e93c3c36ca8dcc87"/></dir><dir name="zh_TW"><file name="Zendesk_Zendesk.csv" hash="486ee9e2eea24301299f73d9e745dc00"/></dir><dir name="zh_CN"><file name="Zendesk_Zendesk.csv" hash="414730c8365bd652b2a7934f948de9b2"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="zendesk.xml" hash="d11620289479769a35c98b0676153906"/></dir><dir name="template"><dir name="zendesk"><dir name="config"><file name="button-generate.phtml" hash="21a25898c1fdea93d31b02ae91c1dd6f"/><file name="button-signup.phtml" hash="8871a0aa0bad7f85a7419853db8e0ce4"/><file name="link.phtml" hash="ce55d65900113183e770b2905a31b0eb"/></dir><dir name="customer"><file name="tickets.phtml" hash="e417ed76cee982be652dfe858822a26a"/></dir><dir name="dashboard"><file name="empty.phtml" hash="d0c30af25f17ff45215d210b48063a46"/><file name="index.phtml" hash="ac71050399d3789d2d4217472bc726cf"/><dir name="tabs"><file name="view.phtml" hash="b173979d7a295d8c4bcc5434b095c3be"/></dir></dir><file name="left-menu.phtml" hash="3147dca7821863ae6da3f7b650739780"/><dir name="order"><file name="tickets.phtml" hash="c12ae3af7d9591af53f7c6f910a9a438"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="zendesk.xml" hash="5aefda9b293f1a8c9384c9c98a4c70b2"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="zendesk"><file name="button.png" hash="58e62edb7f4be46e3b29c0bb774c7ad7"/><file name="icon.png" hash="b5bfce535c987d1e9e604823ac4b3943"/><file name="zendesk-tab.png" hash="0f322d15c392528c212d6491732bc133"/><file name="zendesk.css" hash="454aaabc787598a2ee2db5dd48f8ed96"/></dir></dir></dir></dir></target></contents>
39
  <compatible/>
40
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
41
  </package>