├── .idea ├── .name ├── dictionaries │ └── af.xml ├── misc.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── modules.xml ├── Modmans.iml └── deployment.xml ├── .gitignore ├── code ├── sql │ └── chineselocale_setup │ │ ├── mysql4-upgrade-1.1.0-1.1.1.php │ │ ├── mysql4-upgrade-1.1.3-1.1.4.php │ │ ├── mysql4-upgrade-1.1.4-1.1.5.php │ │ ├── mysql4-install-1.1.0.php │ │ └── mysql4-upgrade-1.1.5-1.1.6.php ├── Model │ ├── Mysql4 │ │ ├── City.php │ │ └── Setup.php │ ├── City.php │ ├── Resource │ │ ├── City.php │ │ └── City │ │ │ └── Collection.php │ └── Locale.php ├── Block │ └── Adminhtml │ │ └── Catalog │ │ └── Product │ │ ├── Edit.php │ │ └── Edit │ │ └── Tabs.php ├── Helper │ └── Data.php └── etc │ ├── system.xml │ └── config.xml ├── locale └── zh_CN │ ├── template │ └── email │ │ ├── newsletter_unsub_success.html │ │ ├── newsletter_subscr_success.html │ │ ├── log_clean_warning.html │ │ ├── currency_update_warning.html │ │ ├── sitemap_generate_warning.html │ │ ├── product_alert_cron_error.html │ │ ├── product_price_alert.html │ │ ├── product_stock_alert.html │ │ ├── moneybookers_activateemail.html │ │ ├── contact_form.html │ │ ├── token.html │ │ ├── product_share.html │ │ ├── newsletter_subscr_confirm.html │ │ ├── payment_failed.html │ │ ├── admin_password_new.html │ │ ├── password_new.html │ │ ├── wishlist_share.html │ │ ├── sales │ │ ├── order_update_guest.html │ │ ├── invoice_update_guest.html │ │ ├── shipment_update_guest.html │ │ ├── creditmemo_update_guest.html │ │ ├── order_update.html │ │ ├── invoice_update.html │ │ ├── shipment_update.html │ │ └── creditmemo_update.html │ │ ├── admin_password_reset_confirmation.html │ │ └── account_password_reset_confirmation.html │ ├── Mage_Api2.csv │ ├── Mage_Core.csv │ ├── Mage_GoogleAnalytics.csv │ ├── Mage_Media.csv │ ├── Fishpig_AttributeSplash.csv │ ├── Mage_Contacts.csv │ ├── Mage_Weee.csv │ ├── Mage_Backup.csv │ ├── Mage_Cron.csv │ ├── Mage_Rating.csv │ ├── Mage_Sendfriend.csv │ ├── Mage_Rule.csv │ ├── Mage_AdminNotification.csv │ ├── Mage_PaypalUk.csv │ ├── Mage_GoogleOptimizer.csv │ ├── Mage_Poll.csv │ ├── Mage_Dataflow.csv │ ├── Mage_Paygate.csv │ ├── Mage_Bundle.csv │ ├── Mage_Directory.csv │ ├── Mage_Payment.csv │ ├── Mage_GiftMessage.csv │ ├── Mage_ProductAlert.csv │ ├── Mage_Rss.csv │ ├── Mage_CatalogSearch.csv │ ├── Mage_CatalogInventory.csv │ ├── Mage_Strikeiron.csv │ ├── Mage_Sitemap.csv │ ├── Mage_CatalogRule.csv │ ├── Mage_Page.csv │ ├── Mage_Index.csv │ ├── Mage_Downloadable.csv │ ├── Mage_Review.csv │ ├── Mage_Wishlist.csv │ ├── Mage_Eav.csv │ ├── Mage_Cms.csv │ ├── Mage_Tag.csv │ └── Mage_Shipping.csv ├── font └── msyh.ttf ├── Customer ├── Model │ ├── Entity │ │ └── Customer.php │ ├── Customer.php │ ├── Address │ │ └── Abstract.php │ ├── Form.php │ └── Resource │ │ └── Customer │ │ └── Collection.php ├── Block │ └── Account │ │ └── Navigation.php └── etc │ └── config.xml ├── wysiwyg ├── plugins │ ├── advhr │ │ └── langs │ │ │ ├── zh_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ └── cn_dlg.js │ ├── paste │ │ └── langs │ │ │ ├── cn_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zh-cn_dlg.js │ ├── emotions │ │ └── langs │ │ │ ├── zh-cn_dlg.js │ │ │ ├── cn_dlg.js │ │ │ └── zh_dlg.js │ ├── searchreplace │ │ └── langs │ │ │ ├── zh_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ └── cn_dlg.js │ ├── template │ │ └── langs │ │ │ ├── zh_dlg.js │ │ │ ├── cn_dlg.js │ │ │ └── zh-cn_dlg.js │ ├── xhtmlxtras │ │ └── langs │ │ │ ├── zh-cn_dlg.js │ │ │ ├── cn_dlg.js │ │ │ └── zh_dlg.js │ ├── advimage │ │ └── langs │ │ │ ├── cn_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ └── zh_dlg.js │ ├── style │ │ └── langs │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── cn_dlg.js │ ├── advlink │ │ └── langs │ │ │ ├── zh-cn_dlg.js │ │ │ ├── cn_dlg.js │ │ │ └── zh_dlg.js │ ├── table │ │ └── langs │ │ │ ├── zh-cn_dlg.js │ │ │ ├── cn_dlg.js │ │ │ └── zh_dlg.js │ └── fullpage │ │ └── langs │ │ ├── zh-cn_dlg.js │ │ ├── zh_dlg.js │ │ └── cn_dlg.js └── themes │ ├── simple │ └── langs │ │ ├── zh.js │ │ ├── cn.js │ │ └── zh-cn.js │ └── advanced │ └── langs │ ├── cn_dlg.js │ ├── zh-cn_dlg.js │ ├── zh_dlg.js │ ├── zh.js │ ├── zh-cn.js │ └── cn.js ├── CosmoCommerce_Sales.xml ├── CosmoCommerce_Customer.xml ├── CosmoCommerce_Reports.xml ├── Sales ├── Block │ └── Order │ │ ├── History.php │ │ └── Recent.php ├── Model │ ├── Order │ │ └── Config.php │ ├── Order.php │ └── Resource │ │ └── Order.php ├── controllers │ └── OrderController.php └── etc │ └── config.xml ├── Reports ├── Model │ └── Resource │ │ └── Order │ │ └── Collection.php └── etc │ └── config.xml ├── template ├── admin_translate.csv └── translate.csv ├── README.md ├── local └── Sales │ └── Helper │ └── Repay.php └── CosmoCommerce_ChineseLocale.xml /.idea/.name: -------------------------------------------------------------------------------- 1 | Modmans -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .modgit/ 2 | -------------------------------------------------------------------------------- /code/sql/chineselocale_setup/mysql4-upgrade-1.1.0-1.1.1.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/newsletter_unsub_success.html: -------------------------------------------------------------------------------- 1 | 2 | 您已成功退订电子邮件。 -------------------------------------------------------------------------------- /font/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmocommerce/magento-chinese-edition/HEAD/font/msyh.ttf -------------------------------------------------------------------------------- /locale/zh_CN/template/email/newsletter_subscr_success.html: -------------------------------------------------------------------------------- 1 | 2 | 您已成功订阅我们的电子邮件。 -------------------------------------------------------------------------------- /.idea/dictionaries/af.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Api2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmocommerce/magento-chinese-edition/HEAD/locale/zh_CN/Mage_Api2.csv -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Core.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmocommerce/magento-chinese-edition/HEAD/locale/zh_CN/Mage_Core.csv -------------------------------------------------------------------------------- /locale/zh_CN/Mage_GoogleAnalytics.csv: -------------------------------------------------------------------------------- 1 | "Account number","帐号" 2 | "Enable","启用" 3 | "Google API","Google API" 4 | "Google Analytics","Google 分析" 5 | -------------------------------------------------------------------------------- /code/Model/Mysql4/City.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Customer/Model/Entity/Customer.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 日志清理通知: 6 | 7 | {{var warnings}} -------------------------------------------------------------------------------- /wysiwyg/plugins/advhr/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd\u5ea6",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /code/sql/chineselocale_setup/mysql4-upgrade-1.1.3-1.1.4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmocommerce/magento-chinese-edition/HEAD/code/sql/chineselocale_setup/mysql4-upgrade-1.1.3-1.1.4.php -------------------------------------------------------------------------------- /wysiwyg/plugins/advhr/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd\u5ea6",normal:"\u5e38\u89c4",widthunits:"\u5355\u4f4d"}); -------------------------------------------------------------------------------- /locale/zh_CN/template/email/currency_update_warning.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 汇率变更通知: 6 | 7 | 8 | {{var warnings}} -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sitemap_generate_warning.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 网站地图生成通知: 6 | 7 | 8 | {{var warnings}} -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/product_alert_cron_error.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | Product alerts cron warnings: 6 | 7 | {{var warnings}} -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/product_price_alert.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 亲爱的 {{var customerName}}, 7 | 8 | {{var alertGrid}} -------------------------------------------------------------------------------- /locale/zh_CN/template/email/product_stock_alert.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 亲爱的 {{var customerName}}, 7 | 8 | {{var alertGrid}} -------------------------------------------------------------------------------- /code/Model/City.php: -------------------------------------------------------------------------------- 1 | _init('chineselocale/city'); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /wysiwyg/plugins/paste/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.paste_dlg',{"word_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u5185\u5bb9","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26\u53f7","text_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u5185\u5bb9"}); -------------------------------------------------------------------------------- /CosmoCommerce_Sales.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | community 7 | 8 | 9 | -------------------------------------------------------------------------------- /CosmoCommerce_Customer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | community 7 | 8 | 9 | -------------------------------------------------------------------------------- /CosmoCommerce_Reports.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | community 7 | 8 | 9 | -------------------------------------------------------------------------------- /wysiwyg/plugins/paste/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.paste_dlg',{"word_title":"\u8bf7\u4f7f\u7528CTRL V\u5c06\u5185\u5bb9\u7c98\u8d34\u4e0a\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26","text_title":"\u8bf7\u4f7f\u7528CTRL V\u5c06\u5185\u5bb9\u7c98\u8d34\u4e0a\u3002"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/paste/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.paste_dlg',{"word_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u6587\u672c\u5230\u7a97\u53e3\u4e2d\u3002","text_linebreaks":"\u4fdd\u7559\u65ad\u884c","text_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u6587\u672c\u5230\u7a97\u53e3\u4e2d\u3002"}); -------------------------------------------------------------------------------- /locale/zh_CN/template/email/moneybookers_activateemail.html: -------------------------------------------------------------------------------- 1 | 2 | {{var store.getFrontendName()}}
3 | Moneybookers Email Address: {{var email_addr}}
4 | Moneybookers Customer ID: {{var customer_id}}
5 | URL: {{var url}}
6 | 语言: {{var language}}
7 | -------------------------------------------------------------------------------- /Customer/Block/Account/Navigation.php: -------------------------------------------------------------------------------- 1 | _links[$name]); 8 | return $this; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Sales/Block/Order/History.php: -------------------------------------------------------------------------------- 1 | getUrl('*/*/repay', array('order_id' => $order->getId())); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Sales/Block/Order/Recent.php: -------------------------------------------------------------------------------- 1 | getUrl('sales/order/repay', array('order_id' => $order->getId())); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Media.csv: -------------------------------------------------------------------------------- 1 | "Error while creating image","生成图片时出错" 2 | "Image not exists or invalid","图片不存在或无效" 3 | "This content requires last version of Adobe Flash Player. Get Flash","此内容需要最新版本的 Adobe Flash Player才能操作。下载Flash" 4 | 5 | "Submit","提交" 6 | "Cancel","取消" 7 | "WYSIWYG Editor","所见即所得编辑器" -------------------------------------------------------------------------------- /.idea/Modmans.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/contact_form.html: -------------------------------------------------------------------------------- 1 | 2 | 8 | 姓名: {{var data.name}} 9 | 邮箱: {{var data.email}} 10 | 密码: {{var data.telephone}} 11 | 12 | 留言: {{var data.comment}} -------------------------------------------------------------------------------- /wysiwyg/themes/simple/langs/zh.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.simple',{"cleanup_desc":"\u51c0\u5316\u4ee3\u7801","redo_desc":"\u6062\u590d(Ctrl Y)","undo_desc":"\u64a4\u6d88(Ctrl Z)","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)"}); -------------------------------------------------------------------------------- /wysiwyg/themes/simple/langs/cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.simple',{"cleanup_desc":"\u6e05\u7406\u4ee3\u7801","redo_desc":"\u91cd\u505a (Ctrl Y)","undo_desc":"\u64a4\u9500 (Ctrl Z)","numlist_desc":"\u6709\u5e8f\u7f16\u53f7","bullist_desc":"\u65e0\u5e8f\u7f16\u53f7","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf (Ctrl U)","italic_desc":"\u659c\u4f53 (Ctrl I)","bold_desc":"\u7c97\u4f53 (Ctrl B)"}); -------------------------------------------------------------------------------- /wysiwyg/themes/simple/langs/zh-cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.simple',{"cleanup_desc":"\u6e05\u9664\u65e0\u7528\u4ee3\u7801","redo_desc":"\u6062\u590d(Ctrl Y)","undo_desc":"\u64a4\u9500(Ctrl Z)","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)"}); -------------------------------------------------------------------------------- /Sales/Model/Order/Config.php: -------------------------------------------------------------------------------- 1 | toOptionHash(); 8 | $_statuses=array(); 9 | foreach($statuses as $code=>$status){ 10 | $_statuses[$code]=Mage::helper('sales')->__($status); 11 | } 12 | return $_statuses; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /wysiwyg/plugins/emotions/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.emotions_dlg',{cry:"\u54ed",cool:"\u9177",desc:"\u8868\u60c5",title:"\u63d2\u5165\u8868\u60c5",yell:"\u53eb\u558a",wink:"\u7728\u773c",undecided:"\u72b9\u8c6b","tongue_out":"\u5410\u820c\u5934",surprised:"\u60ca\u8bb6",smile:"\u5fae\u7b11",sealed:"\u4fdd\u5bc6","money_mouth":"\u53d1\u8d22",laughing:"\u5927\u7b11",kiss:"\u543b",innocent:"\u5929\u771f",frown:"\u76b1\u7709","foot_in_mouth":"\u8822\u8bdd",embarassed:"\u5c34\u5c2c",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /wysiwyg/plugins/emotions/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.emotions_dlg',{cry:"\u54ed\u6ce3",cool:"\u9177",desc:"\u8868\u60c5",title:"\u63d2\u5165\u8868\u60c5",yell:"\u53eb\u558a",wink:"\u7728\u773c",undecided:"\u672a\u5b9a","tongue_out":"\u5410\u820c\u5934",surprised:"\u5403\u60ca",smile:"\u5fae\u7b11",sealed:"\u4fdd\u5bc6","money_mouth":"\u53d1\u8d22\u4e86",laughing:"\u5927\u7b11",kiss:"\u4eb2\u543b",innocent:"\u5929\u771f",frown:"\u76b1\u7709","foot_in_mouth":"\u54a7\u5634",embarassed:"\u5c34\u5c2c",usage:"\u4f7f\u7528\u5de6\u53f3\u952e\u8df3\u8f6c"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/emotions/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.emotions_dlg',{cry:"\u54ed\u6ce3",cool:"\u9177",desc:"\u8868\u60c5",title:"\u63d2\u5165\u8868\u60c5",yell:"\u5927\u53eb",wink:"\u7728\u773c",undecided:"\u601d\u8003","tongue_out":"\u5410\u820c\u5934",surprised:"\u60ca\u8bb6",smile:"\u5fae\u7b11",sealed:"\u4fdd\u5bc6","money_mouth":"\u53d1\u8d22",laughing:"\u5927\u7b11",kiss:"\u543b",innocent:"\u5929\u771f",frown:"\u76b1\u7709","foot_in_mouth":"\u54a7\u5634",embarassed:"\u5c34\u5c2c",usage:"\u4f7f\u7528\u5de6\u53f3\u65b9\u5411\u952e\u5207\u6362\u3002"}); -------------------------------------------------------------------------------- /code/Model/Resource/City.php: -------------------------------------------------------------------------------- 1 | _init('chineselocale/city', 'city_id'); 18 | $this->_cityNameTable = $this->getTable('chineselocale/city'); 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /wysiwyg/plugins/searchreplace/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.searchreplace_dlg',{findwhat:"\u67e5\u627e\u76ee\u6807",replacewith:"\u66ff\u6362\u4e3a",direction:"\u5bfb\u627e\u65b9\u5411",up:"\u5411\u4e0a",down:"\u5411\u4e0b",mcase:"\u533a\u5206\u5927\u5c0f\u5199",findnext:"\u67e5\u627e\u4e0b\u4e00\u4e2a",allreplaced:"\u6240\u6709\u7b26\u5408\u7684\u5b57\u7b26\u4e32\u90fd\u5df2\u88ab\u66ff\u6362\u3002","searchnext_desc":"\u7ee7\u7eed\u67e5\u627e",notfound:"\u5b8c\u6210\u641c\u7d22\uff0c\u672a\u627e\u5230\u641c\u7d22\u9879\u3002","search_title":"\u67e5\u627e","replace_title":"\u67e5\u627e/\u66ff\u6362",replaceall:"\u5168\u90e8\u66ff\u6362",replace:"\u66ff\u6362"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/searchreplace/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.searchreplace_dlg',{findwhat:"\u67e5\u627e\u76ee\u6807",replacewith:"\u66ff\u6362\u4e3a",direction:"\u67e5\u627e\u65b9\u5411",up:"\u5411\u4e0a",down:"\u5411\u4e0b",mcase:"\u533a\u5206\u5927\u5c0f\u5199",findnext:"\u67e5\u627e\u4e0b\u4e00\u4e2a",allreplaced:"\u6240\u6709\u51fa\u73b0\u7684\u5b57\u7b26\u5747\u5df2\u66ff\u6362\u3002","searchnext_desc":"\u7ee7\u7eed\u67e5\u627e",notfound:"\u67e5\u627e\u5b8c\u6210\uff0c\u672a\u627e\u5230\u7b26\u5408\u7684\u6587\u5b57\u3002","search_title":"\u67e5\u627e","replace_title":"\u67e5\u627e/\u66ff\u6362",replaceall:"\u5168\u90e8\u66ff\u6362",replace:"\u66ff\u6362"}); -------------------------------------------------------------------------------- /locale/zh_CN/template/email/token.html: -------------------------------------------------------------------------------- 1 | {* This is a comment block 2 | 3 | Available vars in this template: 4 | - $userName User name 5 | - $applicationName Application name 6 | - $status Token new status 7 | 8 | Use vars: {{var var_name}} 9 | *} 10 | 15 | 16 | 您好,{{htmlescape var=$userName}}

17 | Your authorization to {{htmlescape var=$applicationName}} has been changed to {{htmlescape var=$status}} by Admin team.

18 | -------------------------------------------------------------------------------- /code/Model/Resource/City/Collection.php: -------------------------------------------------------------------------------- 1 | _init('chineselocale/city'); 9 | 10 | $this->_regionTable = $this->getTable('directory/country_region'); 11 | $this->_cityTable = $this->getTable('chineselocale/city'); 12 | 13 | $this->addOrder('name', Varien_Data_Collection::SORT_ORDER_ASC); 14 | $this->addOrder('default_name', Varien_Data_Collection::SORT_ORDER_ASC); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /wysiwyg/plugins/searchreplace/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.searchreplace_dlg',{findwhat:"\u67e5\u627e\u76ee\u6807",replacewith:"\u66ff\u6362",direction:"\u67e5\u627e\u65b9\u5411",up:"\u5411\u4e0a\u67e5\u627e",down:"\u5411\u4e0b\u67e5\u627e",mcase:"\u533a\u5206\u5927\u5c0f\u5199",findnext:"\u67e5\u627e\u4e0b\u4e00\u4e2a",allreplaced:"\u6240\u6709\u7b26\u5408\u7684\u5b57\u7b26\u5c06\u4f1a\u88ab\u66ff\u6362","searchnext_desc":"\u91cd\u65b0\u67e5\u627e",notfound:"\u67e5\u627e\u5b8c\u6bd5\uff0c\u6ca1\u6709\u627e\u5230\u4efb\u4f55\u7b26\u5408\u7684\u5b57\u7b26","search_title":"\u67e5\u627e","replace_title":"\u67e5\u627e/\u66ff\u6362",replaceall:"\u66ff\u6362\u5168\u90e8",replace:"\u66ff\u6362"}); -------------------------------------------------------------------------------- /Reports/Model/Resource/Order/Collection.php: -------------------------------------------------------------------------------- 1 | getConnection()->getConcatSql($fields, ''); 14 | $this->getSelect()->columns(array($alias => $fieldConcat)); 15 | return $this; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /code/sql/chineselocale_setup/mysql4-upgrade-1.1.4-1.1.5.php: -------------------------------------------------------------------------------- 1 | startSetup(); 6 | 7 | $installer->run(" 8 | 9 | DROP TABLE IF EXISTS {$this->getTable('chineselocale_city')}; 10 | CREATE TABLE {$this->getTable('chineselocale_city')} ( 11 | `city_id` mediumint(8) unsigned NOT NULL auto_increment, 12 | `region_id` mediumint(8) unsigned NOT NULL default '0', 13 | `city_name` varchar(255) NOT NULL default '', 14 | PRIMARY KEY (`city_id`), 15 | KEY `FK_REGION_COUNTRY` (`region_id`) 16 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Country cities'; 17 | "); 18 | 19 | $installer->endSetup(); 20 | -------------------------------------------------------------------------------- /template/admin_translate.csv: -------------------------------------------------------------------------------- 1 | "Cache Storage Management","缓存存储管理" 2 | "Transactions","交易" 3 | "Recurring Profiles (beta)","循环交易(beta)" 4 | "Billing Agreements","支付协议" 5 | "URL Rewrite Management","URL路径重写管理" 6 | "Mobile","移动应用" 7 | "Manage Apps","管理移动应用" 8 | "Submission History","提交历史" 9 | "App Submission History","App提交历史" 10 | "Message Templates","消息模板" 11 | "AirMail templates","AirMail 模板" 12 | "Message Queue","消息队列" 13 | "AirMail Messages Queue","AirMail 消息队列" 14 | 15 | "Widget","内容插件" 16 | "Refresh Statistics","刷新统计" 17 | "Manage Currency","管理汇率" 18 | "Custom Variables","自定义变量" 19 | "Index Management","索引管理" 20 | "Order Statuses","订单状态" 21 | 22 | "Add Slide","添加幻灯片" 23 | "Save Slide","保存幻灯片" 24 | "Invalidated","无效" -------------------------------------------------------------------------------- /locale/zh_CN/Fishpig_AttributeSplash.csv: -------------------------------------------------------------------------------- 1 | "Attribute Splash Pages","展示页面" 2 | "Splash Group Information","组页面" 3 | "Attribute Splash","展示页面" 4 | "Attribute","属性" 5 | "Attribute Page","属性页面" 6 | "Include in Menu","菜单中显示" 7 | "Option","选项" 8 | "Banner","广告条幅图片" 9 | "Category ID","分类编号" 10 | "Used to populate category filters in the layered navigation","用于分类筛选" 11 | "Is Enabled","是否启用" 12 | "Splash Page Information","属性页面" 13 | "Edit Attribute Splash Group","编辑属性组页面" 14 | "Column Count","显示列数" 15 | "Number of Splash pages per row","每行显示多少页面" 16 | "Add Group URL Key to URL","组页面URL" 17 | "URL Suffix","URL后缀" 18 | "Inject Links in Top Navigation","往顶部导航插入链接" 19 | "Depends on your theme","是否生效需要根据模板兼容性来确定" 20 | "Navigation","导航" -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Contacts.csv: -------------------------------------------------------------------------------- 1 | "* Required Fields","* 必填" 2 | "Comment","内容" 3 | "Contact Form","联系表单 4 | Contact Information""" 5 | "Contact Information","联系信息" 6 | "Contact Us","联系我们" 7 | "Contacts","联系" 8 | "Contacts Section","联系单元" 9 | "Email","电邮" 10 | "Email Options","电邮选项" 11 | "Email Sender","发件人" 12 | "Email Template","电邮模版" 13 | "Enable Contact Us","启用联系我们" 14 | "Name","名字" 15 | "Send Emails To","发送邮件给" 16 | "Submit","提交" 17 | "Telephone","电话" 18 | "Unable to submit your request. Please, try again later","无法提交您的问题,请稍后重试。" 19 | "Your inquiry was submitted and will be responded to as soon as possible. Thank you for contacting us.","您的问题已提交,我们会尽快回复您。感谢您联系我们!" 20 | "Contact Us","联系我们" 21 | "Contact Information","联系信息" 22 | "Comment","留言" 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Magento Chinese Edition 中文解决方案 2 | ======================= 3 | 4 | Magento Integrated with Payment Gateways,Shipping Carriers,Language Package and Shopping Experience in Chinese way 5 | 6 | 1 支付接口: 7 | Alipay, 99Bill, Union Pay 8 | 9 | 2 Shiping Carriers: 10 | 顺丰,宅急送 11 | 12 | 3 语言包: 13 | 暂时使用官方语言包(如果需要授权,请联系我们去除语言包) 14 | 15 | 16 | 本项目开源协议为 OSL3.0 可以放心的用于企业自主项目,如果开发商和集成商需要请保留项目版权信息。 17 | 18 | 19 | 安装方法: 20 | 21 | 1 bash < <(wget -O - https://raw.github.com/colinmollenhour/modman/master/modman-installer) 22 | 23 | 2 source ~/.profile 24 | 25 | 3 进入项目根目录(包含index.php的这一层),运行 modman init 26 | 27 | 4 modman clone https://github.com/cosmocommerce/magento-chinese-edition 28 | 29 | 完成安装 30 | 31 | 32 | 注意事项: 33 | 34 | 安装本模块会对清空原有中文翻译文件,我们希望把所有中文翻译都统一在本模块内,如果您有原来的翻译文件。请备份locale\zh_CN文件夹,安装或更新本模块以后再放回。 -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Weee.csv: -------------------------------------------------------------------------------- 1 | "All Websites","所有网站" 2 | "Apply Percent Discounts To FPT","应用折扣到商品固定税" 3 | "Apply Tax To FPT","应用税率于商品固定税(FPT)" 4 | "Display Prices In Emails","于邮件中显示价格" 5 | "Display Prices In Product Lists","于商品列表中显示价格" 6 | "Display Prices In Sales Modules","于销售模块中显示价格" 7 | "Display Prices On Product View Page","在商品查看页面显示价格" 8 | "Enable FPT","启动商品固定税(FPT)" 9 | "Excluding FPT","不含商品固定税(FPT)" 10 | "Excluding FPT, FPT description, final price","含商品固定税(FPT), 说明及最终价格" 11 | "Fixed Product Tax","商品固定税" 12 | "Fixed Product Taxes","商品固定税" 13 | "Include FPT In Subtotal","小计中包含商品固定税" 14 | "Including FPT and FPT description [excl. FPT VAT]","包含商品固定税和商品固定税描述 [不包含商品固定税增值税]" 15 | "Including FPT and FPT description [incl. FPT VAT]","I包括商品固定税(FPT)及描述 [包含商品固定税增值税]" 16 | "Including FPT only","只含商品固定税" 17 | "Total","总额" 18 | "Total incl. tax","含税总额" 19 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Backup.csv: -------------------------------------------------------------------------------- 1 | "Action","操作" 2 | "All types","所有类型" 3 | "Backup file ""%s"" can't read or write","无法读写备份文件""%s""" 4 | "Backup file ""%s"" doesn't exist","备份文件""%s""不存在" 5 | "Backup file doesn't exist","备份文件不存在" 6 | "Backup file handler don't specify","未指定备份文件句柄" 7 | "Backup file path don't specify","未指定备份文件路径" 8 | "Backups","备份" 9 | "Cannot read backup file","无法读取备份文件" 10 | "Create Backup","创建备份" 11 | "DB","数据库" 12 | "Database was successfuly backed up.","成功备份数据库。" 13 | "Download","下载" 14 | "Error write to Backup file ""%s""","写入备份文件""%s""出错" 15 | "File compressed with Zlib, but this extension is not installed on server","文件用Zlib压缩,但是服务器上没有安装这个模块" 16 | "Size, byte","大小,字节" 17 | "Time","时间" 18 | "Type","类型" 19 | "Unable to create backup. Please, try again later.","无法生成备份,请稍后重试。" 20 | "Wrong order of creation for new backup","生成新的备份次序错误" 21 | -------------------------------------------------------------------------------- /Sales/Model/Order.php: -------------------------------------------------------------------------------- 1 | getCustomerFirstname()) { 9 | $customerName = $this->getCustomerLastname() . '' . $this->getCustomerFirstname(); 10 | } 11 | else { 12 | $customerName = Mage::helper('sales')->__('Guest'); 13 | } 14 | return $customerName; 15 | } 16 | 17 | public function canRepay() 18 | { 19 | if($this->getPayment()->getMethod()=="alipay_payment"){ 20 | if( $this->getState() == "new"){ 21 | return true; 22 | }else{ 23 | return false; 24 | } 25 | }else{ 26 | return false; 27 | } 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/product_share.html: -------------------------------------------------------------------------------- 1 | {* This is a comment block 2 | 3 | Available vars in this template: 4 | - name Recipient name 5 | - email Recipient Email address 6 | - product_name Product name 7 | - product_url Url for product 8 | - product_image Url for product small image (75 px) 9 | - message Sender custom message 10 | - sender_name Sender name 11 | - sender_email Sender email 12 | 13 | Use vars: {{var var_name}} 14 | *} 15 | 21 | 22 | 欢迎光临,{{htmlescape var=$name}}

请查看{{var product_name}}

留言:
{{var message}}

-------------------------------------------------------------------------------- /Customer/Model/Customer.php: -------------------------------------------------------------------------------- 1 | getAttribute('customer', 'prefix')->getIsVisible() && $this->getPrefix()) { 9 | $name .= $this->getPrefix() . ' '; 10 | } 11 | $name .= $this->getLastname(); 12 | if ($config->getAttribute('customer', 'middlename')->getIsVisible() && $this->getMiddlename()) { 13 | $name .= ' ' . $this->getMiddlename(); 14 | } 15 | $name .= '' . $this->getFirstname(); 16 | if ($config->getAttribute('customer', 'suffix')->getIsVisible() && $this->getSuffix()) { 17 | $name .= ' ' . $this->getSuffix(); 18 | } 19 | return $name; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /code/sql/chineselocale_setup/mysql4-install-1.1.0.php: -------------------------------------------------------------------------------- 1 | Secure and Unsecure Base URLs are explicitly set.","为了在cron运行过程中生成正确的网址,请确认网站 > 安全和不安全基准网址已明确设定。" 5 | "Generate schedules every","生成日程表每" 6 | "History cleanup every","清除记录每" 7 | "Invalid callback: %s::%s does not exist","无效回叫接口:%s::%s 不存在" 8 | "Invalid model/method definition, expecting ""model/class::method"".","错误的 model/method 定义,正确格式为 ""model/class::method""." 9 | "Missed if not run within","错过如果不运行于" 10 | "Monthly","每月" 11 | "No callbacks found","未发现回叫接口" 12 | "Schedule ahead for","日程提前" 13 | "Success history lifetime","成功记录时间" 14 | "Too late for the schedule","日程安排不及" 15 | "Unable to save Cron expression","无法保存Cron的表达式" 16 | "Unknown error","未知错误" 17 | "Weekly","每周" 18 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Rating.csv: -------------------------------------------------------------------------------- 1 | "1 star","1星" 2 | "2 stars","2星" 3 | "3 stars","3星" 4 | "4 stars","4星" 5 | "5 stars","5星" 6 | "Add New Rating","增加新评级" 7 | "Assigned Options","指定的选项" 8 | "Be the first to review this product","抢先评论此商品" 9 | "Default Value","默认值" 10 | "Delete Rating","删除评级" 11 | "Edit Rating","编辑评级" 12 | "ID","编号" 13 | "If you do not specify a rating title for a store, the default value will be used.","如果您没有给商店输入评级标题,默认名将被使用。" 14 | "Manage Ratings","管理评级" 15 | "New Rating","评级" 16 | "Option Label","选项标记" 17 | "Option Title","选项" 18 | "Option Title:","选项名称:" 19 | "Please select one of each ratings above","请在上面选择一个评级" 20 | "Rating Information","评级内容" 21 | "Rating Name","评级名称" 22 | "Rating Options","评级标题" 23 | "Rating Title","评级标题" 24 | "Rating Visibility","评级显示" 25 | "Rating isn't Available","顾客未留评级" 26 | "Rating with the same title","评级标题重复" 27 | "Save Rating","保存评级" 28 | "Visible In","显示于" 29 | "Sort Order","排序" -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Sendfriend.csv: -------------------------------------------------------------------------------- 1 | "Add Recipient","添加收件人" 2 | "Allow for Guests","允许访客" 3 | "Email Address","电子邮件地址" 4 | "Email Address:","电子邮件地址:" 5 | "Email templates","电子邮件模板" 6 | "Email to a Friend","分享此商品给您的朋友" 7 | "Email:","Email:" 8 | "Enabled","启用" 9 | "Limit Sending By","设寄送方式限制为" 10 | "Link to a friend was sent.","给朋友的链接已发送。" 11 | "Max Products Sent in 1 Hour","一小时内最多可发送的商品次数" 12 | "Max Recipients","最大收件人数" 13 | "Maximum %d email addresses allowed.","最多允许%d个电子邮件地址" 14 | "Message:","内容:" 15 | "Name","名字" 16 | "Name:","名字:" 17 | "Recipient:","收件人" 18 | "Remove Email","删除" 19 | "Select email template","选择邮件模板" 20 | "Send email","发送邮件" 21 | "Send product to a friend","分享此商品给朋友" 22 | "Sender:","发件人" 23 | "Some emails was not sent","部分邮件未送出" 24 | "Some problems with data.","部分数据错误。" 25 | "You cannot email this product to a friend","不能发送该商品给朋友" 26 | "You cannot send more than %d times in an hour","1小时内不能发送超过%d次" 27 | -------------------------------------------------------------------------------- /local/Sales/Helper/Repay.php: -------------------------------------------------------------------------------- 1 | isAllowed(); 9 | } 10 | 11 | /** 12 | * Check if reorder is allowed for given store 13 | * 14 | * @param Mage_Core_Model_Store|int|null $store 15 | * @return bool 16 | */ 17 | public function isAllowed($store = null) 18 | { 19 | return true; 20 | } 21 | 22 | public function canRepay(Mage_Sales_Model_Order $order) 23 | { 24 | if (!$this->isAllowed($order->getStore())) { 25 | return false; 26 | } 27 | if (Mage::getSingleton('customer/session')->isLoggedIn()) { 28 | return $order->canRepay(); 29 | } else { 30 | return true; 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Rule.csv: -------------------------------------------------------------------------------- 1 | "ALL","全部" 2 | "ANY","之一" 3 | "Add","添加" 4 | "Apply","应用" 5 | "Description: %s","说明: %s" 6 | "Expire at: %s","有效期: %s" 7 | "FALSE","负" 8 | "If %s of these conditions are %s:","如%s的条件为%s:" 9 | "Invalid discount amount.","错误的折扣价格" 10 | "MATCHING ALL","全部匹配" 11 | "MATCHING ANY","任意匹配" 12 | "NOT MATCHING ALL","不全部匹配" 13 | "NOT MATCHING ANY","不任意匹配" 14 | "Name: %s","%s""" 15 | "Open Chooser","打开选择" 16 | "Perform following actions","执行以下操作" 17 | "Please choose a condition to add...","请选择要增加的条件..." 18 | "Please choose an action to add...","请选择要增加的操作..." 19 | "Remove","删除" 20 | "Start at: %s","开始: %s" 21 | "TRUE","正" 22 | "by","于" 23 | "contains","含有" 24 | "does not contain","不含有" 25 | "equals or greater than","等于或大于" 26 | "equals or less than","等于或小于" 27 | "greater than","大于" 28 | "is","为" 29 | "is not","不是" 30 | "is not one of","非其中之一" 31 | "is one of","乃其中之一" 32 | "less than","少于" 33 | "to","给" 34 | 35 | -------------------------------------------------------------------------------- /code/Model/Locale.php: -------------------------------------------------------------------------------- 1 | getAttribute('customer_address', 'prefix')->getIsVisible() && $this->getPrefix()) { 14 | $name .= $this->getPrefix() . ' '; 15 | } 16 | $name .= $this->getLastname(); 17 | if ($config->getAttribute('customer_address', 'middlename')->getIsVisible() && $this->getMiddlename()) { 18 | $name .= ' ' . $this->getMiddlename(); 19 | } 20 | $name .= $this->getFirstname(); 21 | if ($config->getAttribute('customer_address', 'suffix')->getIsVisible() && $this->getSuffix()) { 22 | $name .= ' ' . $this->getSuffix(); 23 | } 24 | return $name; 25 | } 26 | } -------------------------------------------------------------------------------- /code/Block/Adminhtml/Catalog/Product/Edit.php: -------------------------------------------------------------------------------- 1 | getProduct()->getId() ) { 8 | $product=Mage::getModel('catalog/product')->load($this->getProduct()->getId()); 9 | $url = Mage::getUrl($product->getUrlPath()); 10 | 11 | $this->setChild('preview_button', 12 | $this->getLayout()->createBlock('adminhtml/widget_button') 13 | ->setData(array( 14 | 'label' => Mage::helper('catalog')->__('Preview'), 15 | 'onclick' => 'popWin(\''.$url.'\', \'_blank\')', 16 | 'class' => 'add-widget' 17 | )) 18 | ); 19 | } 20 | 21 | return parent::_prepareLayout(); 22 | } 23 | public function getPreviewButtonHtml() 24 | { 25 | return $this->getChildHtml('preview_button'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Sales/Model/Resource/Order.php: -------------------------------------------------------------------------------- 1 | getReadConnection(); 7 | $ifnullFirst = $adapter->getIfNullSql('{{table}}.firstname', $adapter->quote('')); 8 | $ifnullLast = $adapter->getIfNullSql('{{table}}.lastname', $adapter->quote('')); 9 | $concatAddress = $adapter->getConcatSql(array($ifnullLast, $ifnullFirst)); 10 | $this->addVirtualGridColumn( 11 | 'billing_name', 12 | 'sales/order_address', 13 | array('billing_address_id' => 'entity_id'), 14 | $concatAddress 15 | ) 16 | ->addVirtualGridColumn( 17 | 'shipping_name', 18 | 'sales/order_address', 19 | array('shipping_address_id' => 'entity_id'), 20 | $concatAddress 21 | ); 22 | 23 | return $this; 24 | } 25 | } 26 | ?> -------------------------------------------------------------------------------- /code/Block/Adminhtml/Catalog/Product/Edit/Tabs.php: -------------------------------------------------------------------------------- 1 | _tabs as $tab){ 9 | if($tab->title== Mage::helper('adminhtml')->__('Prices') ){ 10 | $this->removeTab($tab->tab_id); 11 | } 12 | if($tab->title== Mage::helper('adminhtml')->__('Design') ){ 13 | $this->removeTab($tab->tab_id); 14 | } 15 | if($tab->title== Mage::helper('adminhtml')->__('Recurring Profile') ){ 16 | $this->removeTab($tab->tab_id); 17 | } 18 | if($tab->title== Mage::helper('adminhtml')->__('Gift Options') ){ 19 | $this->removeTab($tab->tab_id); 20 | } 21 | } 22 | 23 | $this->removeTab('tags'); 24 | $this->removeTab('customers_tags'); 25 | return ; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_AdminNotification.csv: -------------------------------------------------------------------------------- 1 | "Actions","操作" 2 | "Are you sure?","您确定吗?" 3 | "Date Added","添加日期" 4 | "Error while marking as read. Please try again later.","标记为已读时发生错误,请稍后重试。" 5 | "Error while marking. Please try again later.","进行标记时发生错误,请稍后重试。" 6 | "Error while removing. Please try again later.","删除信息时发生错误,清稍后重试。" 7 | "Last update","最后更新时间" 8 | "Mark as Read","标记为已读" 9 | "Mark as read","标记为已读" 10 | "Message","信息" 11 | "The message has been marked as read.","成功将信息标记为已读状态" 12 | "The message was successfully removed","成功删除信息" 13 | "Messages Inbox","信息箱" 14 | "Notifications","更新通知" 15 | "Please select messages","请选择信息" 16 | "Read Details","阅读详情" 17 | "Remove","删除" 18 | "Severity","重要级别" 19 | "Show List","显示列表" 20 | "Show Toolbar","显示工具栏" 21 | "Total of %d record(s) were successfully marked as read","共有%d条记录被标记为已读" 22 | "Total of %d record(s) were successfully removed","共有%d被删除" 23 | "Unable to proceed. Please, try again","操作无法继续。请稍后再试!" 24 | "Update frequency","更新频率" 25 | "Use HTTPS to get feed","使用HTTPS获得订阅内容" 26 | "critical","高度重要" 27 | "major","主要" 28 | "minor","次要" 29 | "notice","公告" 30 | 31 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_PaypalUk.csv: -------------------------------------------------------------------------------- 1 | "Billing Information","账单信息" 2 | "Change Payment Method","修改支付方式" 3 | "Change Shipping Address","修改配送地址" 4 | "Edit Shopping Cart","修改购物车" 5 | "Email","电子邮件" 6 | "Incl. Tax","含税" 7 | "Items in Your Shopping Cart","购物车中商品" 8 | "No shipping method required.","不要求寄送方式" 9 | "PayPal Account","PayPal 帐户" 10 | "PayPal Email","PayPal 邮件" 11 | "Payment Method","支付方式" 12 | "Place an Order","下订单" 13 | "Please select a shipping method...","请选择配送方式..." 14 | "Price","价格" 15 | "Product Name","商品名称" 16 | "Qty","数量" 17 | "Review Order","查阅订单" 18 | "Shipping Address","配送地址" 19 | "Shipping Information","配送信息" 20 | "Shipping Method","配送方式" 21 | "Sorry, no quotes are available for this order at this time.","对不起,目前没有该订单的报价。" 22 | "Submitting order information...","提交订单信息..." 23 | "Subtotal","小计" 24 | "Update Shipping Method","更新配送方式" 25 | "You will be redirected to PayPal website when you place an order.","下订单时,会转向PayPal网站。" 26 | "You will be redirected to Paypal in a few seconds.","您将会在几秒钟后跳转到Paypal页面" 27 | "Your billing address will be ignored and you will be redirected to PayPal website","不采用您的账单地址,将转向PayPal网站" 28 | -------------------------------------------------------------------------------- /CosmoCommerce_ChineseLocale.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | true 29 | community 30 | 31 | 32 | -------------------------------------------------------------------------------- /Sales/controllers/OrderController.php: -------------------------------------------------------------------------------- 1 | _loadValidOrder()) { 9 | return; 10 | } 11 | $order = Mage::registry('current_order'); 12 | 13 | 14 | if($order->getPayment()->getMethod()=="alipay_payment"){ 15 | if( $order->getState() == "new"){ 16 | $order->addStatusToHistory( 17 | $order->getStatus(), 18 | Mage::helper('alipay')->__('Customer try to repay the order') 19 | ); 20 | $order->save(); 21 | $this->_redirect('alipay/payment/pay',array('order_id'=>$order->getId())); 22 | return; 23 | }else{ 24 | $this->_forward('noRoute'); 25 | return false; 26 | } 27 | }else{ 28 | $this->_forward('noRoute'); 29 | return false; 30 | } 31 | 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_GoogleOptimizer.csv: -------------------------------------------------------------------------------- 1 | "-- Please Select --","-- 请选择 --" 2 | "Account Registration","注册帐号" 3 | "All fields of script types have to be filled.","所有文本框都需填写。" 4 | "Attributes","属性" 5 | "Category View Optimization","目录界面优化" 6 | "Control Script","控制文字" 7 | "Conversion Page","换算页" 8 | "Conversion Page URL","换算页URL" 9 | "Conversion Script","换算文本" 10 | "Enable","启动" 11 | "Google Optimizer Scripts","Google优化文本" 12 | "Google Website Optimizer","Google网站优化器(Website Optimizer)" 13 | "Install Scripts","安装文本" 14 | "Limit is 8 attributes only.","属性限制数量为8" 15 | "Multi Address Checkout","多地址结算" 16 | "One Page Checkout","单页(One Page)结算" 17 | "Order Success (Multi Address Checkout)","订单成功(多地址结算)" 18 | "Order Success (One Page Checkout)","订单成功(单页(One Page)结算)" 19 | "Original Page","原始页" 20 | "Other","其它" 21 | "Page Type","页面类型" 22 | "Page View Optimization","页面界面优化" 23 | "Please copy and paste this value to experiment edit form","请拷贝并粘贴这个值从而测试编辑表单" 24 | "Please select store view to see the URL","请选择商店界面从而查看网址(URL)" 25 | "Product View Optimization","商品界面优化" 26 | "Scripts Install URL","S文本安装网址(URL)" 27 | "Shopping Cart","购物车" 28 | "Tracking Script","追踪(Tracking)文本" 29 | "Use Default","使用默认" 30 | "Use Default Values","使用默认值" 31 | "Variant Page","变体页面" 32 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Poll.csv: -------------------------------------------------------------------------------- 1 | "Actions","操作" 2 | "Add Answer","添加答案" 3 | "Add New Answer","添加新答案" 4 | "Add New Poll","添加新问卷" 5 | "Answer Title","答案标题" 6 | "Answer Title:","答案标题:" 7 | "Answer was successfully saved","成功保存选项" 8 | "Answer with the same title in this poll","相同的答案于此问卷中" 9 | "Are you sure you want to delete it?","您确定要删除它?" 10 | "Assigned Answers","已指定的答案" 11 | "Closed","关闭" 12 | "Community Poll","问卷调查" 13 | "Date Closed","关闭日期" 14 | "Date Posted","发布日期" 15 | "Delete","删除" 16 | "Delete Answer","删除答案" 17 | "Delete Poll","删除问卷" 18 | "Disallow voting in a poll multiple times from same IP-address","禁止相同IP地址重复投票" 19 | "Edit Answer '%s'","编辑答案'%s'" 20 | "Edit Poll '%s'","编辑问卷'%s'" 21 | "Edit Poll Answer","编辑问卷答案" 22 | "ID","编号" 23 | "Invalid Answer","无效选项" 24 | "New Poll","新问卷" 25 | "Number of Responses","回复次数" 26 | "Open","开放" 27 | "Poll Answers","问卷答案" 28 | "Poll Information","问卷信息" 29 | "Poll Manager","问卷管理" 30 | "Poll Question","问卷问题" 31 | "Poll information","问卷信息" 32 | "Poll not exists","投票不存在" 33 | "Poll with the same question","相同的问卷问题" 34 | "Save Answer","保存答案" 35 | "Save Poll","保存文件" 36 | "Status","状态" 37 | "Unable to find answer to delete.","没有找到要删除的选项。" 38 | "Visible In","显示于" 39 | "Vote","投票" 40 | "Votes Count","投票计算" 41 | "Votes Count:","投票计算:" 42 | -------------------------------------------------------------------------------- /code/Helper/Data.php: -------------------------------------------------------------------------------- 1 | getCityJsonByStore(); 8 | } 9 | public function getCityJsonByStore($storeId = null) 10 | { 11 | Varien_Profiler::start('TEST: '.__METHOD__); 12 | if (!$this->_cityJson) { 13 | $store = $this->_app->getStore($storeId); 14 | $cacheKey = 'DIRECTORY_REGIONS_JSON_STORE' . (string)$store->getId(); 15 | if ($this->_app->useCache('config')) { 16 | $json = $this->_app->loadCache($cacheKey); 17 | } 18 | if (empty($json)) { 19 | $cities = $this->_getRegions($storeId); 20 | $helper = $this->_factory->getHelper('core'); 21 | $json = $helper->jsonEncode($cities); 22 | 23 | if ($this->_app->useCache('config')) { 24 | $this->_app->saveCache($json, $cacheKey, array('config')); 25 | } 26 | } 27 | $this->_cityJson = $json; 28 | } 29 | 30 | Varien_Profiler::stop('TEST: ' . __METHOD__); 31 | return $this->_cityJson; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Customer/Model/Form.php: -------------------------------------------------------------------------------- 1 | getPost()){ 8 | if(isset($postdata['fullname'])){ 9 | $fullname=$postdata['fullname']; 10 | if($fullname){ 11 | $lastname=mb_substr($fullname,0,1,"UTF-8"); 12 | $firstname=mb_substr($fullname,1,mb_strlen($fullname)-1,"UTF-8"); 13 | $request->setParam('firstname',$firstname); 14 | $request->setParam('lastname',$lastname); 15 | } 16 | }else{ 17 | 18 | } 19 | } 20 | $data = array(); 21 | foreach ($this->getAttributes() as $attribute) { 22 | if ($this->_isAttributeOmitted($attribute)) { 23 | continue; 24 | } 25 | $dataModel = $this->_getAttributeDataModel($attribute); 26 | $dataModel->setRequestScope($scope); 27 | $dataModel->setRequestScopeOnly($scopeOnly); 28 | $data[$attribute->getAttributeCode()] = $dataModel->extractValue($request); 29 | } 30 | return $data; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /wysiwyg/plugins/xhtmlxtras/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.xhtmlxtras_dlg',{"attribs_title":"\u63d2\u5165/\u7f16\u8f91 \u5c5e\u6027","option_rtl":"\u4ece\u53f3\u5230\u5de6","option_ltr":"\u4ece\u5de6\u5230\u53f3","insert_date":"\u63d2\u5165\u5f53\u524d\u65e5\u671f/\u65f6\u95f4",remove:"\u79fb\u9664","title_cite_element":"\u5f15\u7528\u5143\u7d20","title_abbr_element":"\u7f29\u5199\u5143\u7d20","title_acronym_element":"\u9996\u5b57\u6bcd\u7f29\u5199\u5143\u7d20","title_del_element":"\u5220\u9664\u5143\u7d20","title_ins_element":"\u63d2\u5165\u5143\u7d20","fieldset_events_tab":"\u5143\u7d20\u4e8b\u4ef6","fieldset_attrib_tab":"\u5143\u7d20\u5c5e\u6027","fieldset_general_tab":"\u666e\u901a\u8bbe\u7f6e","events_tab":"\u4e8b\u4ef6","attrib_tab":"\u5c5e\u6027","general_tab":"\u666e\u901a","attribute_attrib_tab":"\u5c5e\u6027","attribute_events_tab":"\u4e8b\u4ef6","attribute_label_accesskey":"\u5feb\u6377\u952e","attribute_label_tabindex":"Tab\u7d22\u5f15","attribute_label_langcode":"\u8bed\u8a00","attribute_option_rtl":"\u4ece\u53f3\u5230\u5de6","attribute_option_ltr":"\u4ece\u5de6\u5230\u53f3","attribute_label_langdir":"\u6587\u5b57\u4e66\u5199\u65b9\u5411","attribute_label_datetime":"\u65e5\u671f/\u65f6\u95f4","attribute_label_cite":"\u5f15\u7528","attribute_label_style":"\u6837\u5f0f","attribute_label_class":"\u7c7b\u522b","attribute_label_id":"ID","attribute_label_title":"\u6807\u9898"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/xhtmlxtras/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.xhtmlxtras_dlg',{"attribs_title":"\u63d2\u5165/\u7f16\u8f91\u5c5e\u6027","option_rtl":"\u4ece\u53f3\u5230\u5de6","option_ltr":"\u4ece\u5de6\u5230\u53f3","insert_date":"\u63d2\u5165\u5f53\u524d\u65e5\u671f/\u65f6\u95f4",remove:"\u79fb\u9664","title_cite_element":"\u5f15\u7528\u5143\u7d20","title_abbr_element":"\u7f29\u5199\u5143\u7d20","title_acronym_element":"\u9996\u5b57\u6bcd\u7f29\u5199\u5143\u7d20","title_del_element":"\u5220\u9664\u5143\u7d20","title_ins_element":"\u63d2\u5165\u5143\u7d20","fieldset_events_tab":"\u5143\u7d20\u4e8b\u4ef6","fieldset_attrib_tab":"\u5143\u7d20\u5c5e\u6027","fieldset_general_tab":"\u5e38\u89c4\u8bbe\u7f6e","events_tab":"\u4e8b\u4ef6","attrib_tab":"\u5c5e\u6027","general_tab":"\u5e38\u89c4","attribute_attrib_tab":"\u5c5e\u6027","attribute_events_tab":"\u4e8b\u4ef6","attribute_label_accesskey":"\u5feb\u6377\u952e","attribute_label_tabindex":"Tab\u952e\u8bbf\u95ee\u987a\u5e8f","attribute_label_langcode":"\u8bed\u8a00","attribute_option_rtl":"\u4ece\u53f3\u5230\u5de6","attribute_option_ltr":"\u4ece\u5de6\u5230\u53f3","attribute_label_langdir":"\u6587\u672c\u65b9\u5411","attribute_label_datetime":"\u65e5\u671f/\u65f6\u95f4","attribute_label_cite":"\u5f15\u7528","attribute_label_style":"\u6837\u5f0f","attribute_label_class":"\u7c7b","attribute_label_id":"ID\u5c5e\u6027","attribute_label_title":"\u6807\u9898"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/xhtmlxtras/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.xhtmlxtras_dlg',{"attribs_title":"\u63d2\u5165/\u7f16\u8f91\u5c5e\u6027","option_rtl":"\u4ece\u53f3\u5230\u5de6","option_ltr":"\u4ece\u5de6\u5230\u53f3","insert_date":"\u63d2\u5165\u5f53\u524d\u65e5\u671f/\u65f6\u95f4",remove:"\u79fb\u9664","title_cite_element":"\u5f15\u7528\u5143\u7d20","title_abbr_element":"\u7f29\u5199\u5143\u7d20","title_acronym_element":"\u9996\u5b57\u6bcd\u7f29\u5199\u5143\u7d20","title_del_element":"\u5220\u9664\u5143\u7d20","title_ins_element":"\u63d2\u5165\u5143\u7d20","fieldset_events_tab":"\u5143\u7d20\u4e8b\u4ef6","fieldset_attrib_tab":"\u5143\u7d20\u5c5e\u6027","fieldset_general_tab":"\u666e\u901a\u8bbe\u7f6e","events_tab":"Javascript\u4e8b\u4ef6","attrib_tab":"\u5c5e\u6027","general_tab":"\u666e\u901a","attribute_attrib_tab":"\u5c5e\u6027","attribute_events_tab":"Javascript\u4e8b\u4ef6","attribute_label_accesskey":"\u5feb\u6377\u952e","attribute_label_tabindex":"Tab\u7d22\u5f15","attribute_label_langcode":"\u8bed\u8a00","attribute_option_rtl":"\u4ece\u53f3\u5230\u5de6","attribute_option_ltr":"\u4ece\u5de6\u5230\u53f3","attribute_label_langdir":"\u6587\u5b57\u4e66\u5199\u65b9\u5411","attribute_label_datetime":"\u65e5\u671f/\u65f6\u95f4","attribute_label_cite":"\u5f15\u7528","attribute_label_style":"\u6837\u5f0f","attribute_label_class":"\u7c7b","attribute_label_id":"ID","attribute_label_title":"\u6807\u9898"}); -------------------------------------------------------------------------------- /Reports/etc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 1.0.0 29 | 30 | 31 | 32 | 33 | 34 | 35 | CosmoCommerce_Reports_Model_Resource_Order_Collection 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Dataflow.csv: -------------------------------------------------------------------------------- 1 | "Link","链接" 2 | "Access denied to destination folder ""%s""","被拒绝存取目标目录""%s""" 3 | "Could not load file: ""%s""","无法加载文件:""%s""" 4 | "Could not save file: %s","无法保存文件:%s" 5 | "Declared adapter %s not found","选定的适配器%s未找到" 6 | "Destination folder ""%s"" does not exist or not access to create","目标目录""%s"" 不存在或无法创建" 7 | "Destination folder ""%s"" is not a directory","""%s""不是目录" 8 | "Destination folder ""%s"" is not a writeable","目标目录""%s""不可写" 9 | "Done","完成" 10 | "Dry run set, stopping execution","测试数据,停止执行" 11 | "ETA: %s","预期:%s" 12 | "Error field mapping! Fields list for mapping is not defined","字段映射错误!映射字段未定义" 13 | "Error occured during file opening: ""%s""","错误出现于打开文件:""%s""" 14 | "File ""%s"" don't exist","文件""%s""不存在" 15 | "Found %d rows","找到%d行" 16 | "Less than a minute","少于1分钟" 17 | "Loaded successfully: ""%s""","成功加载:""%s""" 18 | "Memory Used: %s","使用内存:%s" 19 | "Method ""%s"" not defined in adapter %s","方式""%s""未在适配器%s中定义" 20 | "Please declare ""adapter"" and ""method"" node first","请先定义""适配器""和""方式"" 节点" 21 | "Processed records: %s","处理记录:%s" 22 | "Saved successfully: ""%s"" [%d byte(s)]","成功保存:""%s"" [%d字节]" 23 | "Sheet 1","表 1" 24 | "Skip undefined row","忽略未定义行" 25 | "Starting %s :: %s","开始 %s :: %s" 26 | "Total records: %s","总记录:%s" 27 | "hour","小时" 28 | "hours","小时" 29 | "minute","分钟" 30 | "minutes","分钟" 31 | -------------------------------------------------------------------------------- /code/sql/chineselocale_setup/mysql4-upgrade-1.1.5-1.1.6.php: -------------------------------------------------------------------------------- 1 | startSetup(); 4 | 5 | $customer_group = $installer->getTable('customer_group'); 6 | 7 | $groups=array( 8 | 'NOT LOGGED IN'=>'访客', 9 | 'General'=>'普通会员', 10 | 'Wholesale'=>'银牌会员', 11 | 'Retailer'=>'金牌会员'); 12 | 13 | foreach ($groups as $code => $name) { 14 | $sql = "UPDATE `{$customer_group}` SET `customer_group_code` = \"$name\" WHERE `customer_group_code` = \"$code\" ;"; 15 | $installer->run($sql); 16 | } 17 | 18 | $core_website = $installer->getTable('core_website'); 19 | $groups=array('base'=>'默认网站'); 20 | foreach ($groups as $code => $name) { 21 | $sql = "UPDATE `{$core_website}` SET `name` = \"$name\" WHERE `code` = \"$code\" ;"; 22 | $installer->run($sql); 23 | } 24 | $core_store_group = $installer->getTable('core_store_group'); 25 | $groups=array('Main Website Store'=>'默认网站'); 26 | foreach ($groups as $code => $name) { 27 | $sql = "UPDATE `{$core_store_group}` SET `name` = \"$name\" WHERE `name` = \"$code\" ;"; 28 | $installer->run($sql); 29 | } 30 | 31 | $core_store = $installer->getTable('core_store'); 32 | $groups=array('default'=>'默认商店'); 33 | foreach ($groups as $code => $name) { 34 | $sql = "UPDATE `{$core_store}` SET `name` = \"$name\" WHERE `code` = \"$code\" ;"; 35 | $installer->run($sql); 36 | } 37 | 38 | $installer->endSetup(); -------------------------------------------------------------------------------- /wysiwyg/plugins/advimage/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.advimage_dlg',{"image_list":"\u56fe\u7247\u5217\u8868","align_right":"\u9760\u53f3","align_left":"\u9760\u5de6","align_textbottom":"\u6587\u5b57\u5e95\u90e8","align_texttop":"\u6587\u5b57\u9876\u90e8","align_bottom":"\u5e95\u90e8","align_middle":"\u4e2d\u95f4","align_top":"\u9876\u90e8","align_baseline":"\u57fa\u7ebf",align:"\u5bf9\u9f50",hspace:"\u6c34\u5e73\u95f4\u8ddd",vspace:"\u5782\u76f4\u95f4\u8ddd",dimensions:"\u5c3a\u5bf8",border:"\u8fb9\u6846",list:"\u56fe\u7247\u5217\u8868",alt:"\u56fe\u7247\u8bf4\u660e",src:"\u56fe\u7247\u5730\u5740URL","dialog_title":"\u63d2\u5165/\u7f16\u8f91\u56fe\u7247","missing_alt":"\u56fe\u7247\u6ca1\u6709\u8bf4\u660e\u6587\u5b57\uff0c\u662f\u5426\u7ee7\u7eed\uff1f","example_img":"\u56fe\u7247\u9884\u89c8",misc:"\u5176\u5b83",mouseout:"\u9f20\u6807\u79fb\u51fa",mouseover:"\u9f20\u6807\u79fb\u5165","alt_image":"\u66ff\u4ee3\u56fe\u7247","swap_image":"\u56fe\u7247\u5207\u6362",map:"\u56fe\u8c61\u6620\u5c04",id:"ID\u540d\u79f0",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",classes:"\u7c7b\u522b",style:"\u6837\u5f0f","long_desc":"\u957f\u8fde\u7ed3",langcode:"\u8bed\u8a00\u7f16\u7801",langdir:"\u6587\u672c\u65b9\u5411","constrain_proportions":"\u7ea6\u675f\u6bd4\u4f8b",preview:"\u9884\u89c8",title:"\u6807\u9898",general:"\u5e38\u89c4","tab_advanced":"\u9ad8\u7ea7","tab_appearance":"\u5916\u89c2","tab_general":"\u5e38\u89c4",width:"\u5bbd\u5ea6",height:"\u9ad8\u5ea6"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Paygate.csv: -------------------------------------------------------------------------------- 1 | "API Login ID","API登录ID" 2 | "Authorize Only","仅授权" 3 | "Authorize and Capture","授权和攫取" 4 | "Authorize.net","Authorize.net" 5 | "Credit Card Types","信用卡类型" 6 | "Credit Card Verification","信用卡验证" 7 | "Debug","调试(测试)" 8 | "Email customer","发邮件给客户" 9 | "Enabled","已启用" 10 | "Error in authorizing the payment","支付授权时出错" 11 | "Error in capturing the payment","接受支付时出错" 12 | "Error in payment gateway","支付网关错误" 13 | "Error in refunding the payment","退款时出错" 14 | "Error in refunding the payment.","退款时出错。" 15 | "Error in retrieving the transaction","获取交易信息错误" 16 | "Fraud order status","欺诈订单状态" 17 | "Gateway request error: %s","网关请求错误:%s" 18 | "Invalid amount for authorization","授权金额不正确" 19 | "Invalid amount for authorization.","授权金额无效。" 20 | "Invalid transaction id","交易编号不正确" 21 | "Maximum Order Total","订单最大值" 22 | "Merchant Login","商户登录" 23 | "Merchant's email","商户的电子邮件" 24 | "Minimum Order Total","订单最小值" 25 | "New order status","新订单状态" 26 | "Partner","合作伙伴" 27 | "Password","密码" 28 | "Payflow Pro","Payflow Pro" 29 | "Payment Action","支付操作" 30 | "Payment authorization error.","付款授权错误。" 31 | "Payment authorization transaction has been declined.","付款授权交易被拒绝。" 32 | "Payment from Specific countries","从指定国家付款" 33 | "Payment from applicable countries","从适用国家付款" 34 | "Proxy Host","代理主机" 35 | "Proxy Port","代理端口" 36 | "Sort order","排序" 37 | "TENDER","TENDER" 38 | "Test mode","测试模式" 39 | "Title","标题" 40 | "Transaction key","交易密钥" 41 | "URL","网址" 42 | "Use Proxy","使用代理" 43 | "User","用户" 44 | "VERBOSITY","文本输出" 45 | "Voided transaction","无效交易" 46 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Bundle.csv: -------------------------------------------------------------------------------- 1 | "--Select--","--请选择--" 2 | "Add New Option","添加新选项" 3 | "Add Selection","添加选择" 4 | "As low as","最低" 5 | "Bundle Items","组装品项" 6 | "Bundle Product","组装商品" 7 | "Buy %1$s with %2$s discount each","买%1$s件,每件优惠%2$s" 8 | "Checkbox","核选" 9 | "Choose a selection...","请选择..." 10 | "Close","选择" 11 | "Default","默认" 12 | "Default Qty","默认件数" 13 | "Default Title","默认标题 14 | Drop-down""" 15 | "Drop-down","下拉菜单" 16 | "Dynamic","动态" 17 | "Excl. Tax","未含税" 18 | "Fixed","固定" 19 | "From","自" 20 | "From:","自:" 21 | "Gift Message","礼物留言" 22 | "Incl. Tax","含税" 23 | "Input Type","输入类型" 24 | "Is Required","必填" 25 | "Message:","留言内容:" 26 | "Multiple Select","多选" 27 | "N/A","(无)" 28 | "No options of this product are available.","此商品无可用选项" 29 | "None","无" 30 | "Percent","百分比" 31 | "Percent Discount","折扣百分比" 32 | "Please enter search conditions to view products.","请输入搜索条件以查看商品。" 33 | "Please select options for product.","请选择商品选项。" 34 | "Please select products to add","请选择商品以添加" 35 | "Please specify product option(s)","请指定商品选项" 36 | "Position","位置" 37 | "Price Range","价格范围" 38 | "Price Type","价格类型" 39 | "Price as configured","配置价格为" 40 | "Qty:","件数:" 41 | "Radio Buttons","单选" 42 | "Required options not selected.","必选项未选择。" 43 | "Selected required options not available.","选择的必选项无效。" 44 | "Separately","单独" 45 | "Ship Bundle Items","出货组装品项" 46 | "Shipment","发货配送" 47 | "Store View Title","商店界面标题" 48 | "There is no defined renderer for ""%s"" option type","无""%s""选项类型的定义处理" 49 | "This product is also part of bundle(s)","此商品亦为组装商品的一部分。" 50 | "To","致" 51 | "To:","致:" 52 | "Together","共" 53 | "User Defined Qty","定义用户数量" 54 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Directory.csv: -------------------------------------------------------------------------------- 1 | "-- Please select --","-- 请选择 --" 2 | "Allowed currencies","允许货币" 3 | "Base currency","基准货币" 4 | "Cannot retrieve rate from %s","无法从%s获取汇率" 5 | "Connection timeout in seconds","Connection timeout in seconds" 6 | "Continue »","继续 »" 7 | "Country","国家" 8 | "Country Api","国家 Api" 9 | "Country and Format Type combination should be unique","国家和格式类型组合必须单独存在。" 10 | "Currency","货币" 11 | "Currency Options","货币选项" 12 | "Currency Setup","货币设置" 13 | "Currency Update Warnings","更新货币提示" 14 | "Currency will be used for all online payment transactions","选中货币将被用于所有在线支付交易。" 15 | "Default display currency","缺省货币" 16 | "Directory","目录" 17 | "Enabled","已启用" 18 | "Error Email Recipient","收件人电邮错误" 19 | "Error Email Sender","发件人电邮错误" 20 | "Error Email Template","电邮模版错误" 21 | "FATAL ERROR:","严重错误" 22 | "Frequency","频率" 23 | "Installed Currencies","被采用的货币" 24 | "Invalid Import Service Specified","指定的导入服务不正确" 25 | "Invalid country code: %s","错误的国家代号: %s" 26 | "Invalid rates received","接收的汇率不正确" 27 | "Invalid target currency","目标货币不正确" 28 | "List of countries","国家列表" 29 | "List of regions in specified country","指定的国家省份列表" 30 | "Region","地区" 31 | "Region Api","区域 Api" 32 | "Remove space from currency sign","删除货币符号包含的空格" 33 | "Scheduled Import Settings","定期导入" 34 | "Select Your Currency","选择您的货币" 35 | "Service","服务" 36 | "Start Time","开始时间" 37 | "State/Province","省份" 38 | "Strikeiron Email Update Warnings","Strikeiron 电邮更新提示" 39 | "Unable to initialize import model","无法初始化导入模式" 40 | "Undefined rate from ""%s-%s""","""%s-%s""未定义汇率" 41 | "WARNING:","提醒:" 42 | "Webservicex","Webservicex" 43 | "Your current currency is: %s","您现有的货币选择为: %s" 44 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Payment.csv: -------------------------------------------------------------------------------- 1 | "--Please Select--","--请选择--" 2 | " %s"," %s" 3 | ": %s",":%s" 4 | "Automatically invoice all items","Automatically invoice all items" 5 | "Can not configuration for payment method with code: %s","无法设置支付方式代码:%s" 6 | "Can not retrieve payment info model object.","无法获取支付信息模块对象。" 7 | "Can not retrieve payment method instance","无法获取支付方式实例" 8 | "Can not retrieve payment method model object.","无法获取支付方式模块对象。" 9 | "Card Verification Number","信用卡检验码" 10 | "Check / Money order","支票/汇票" 11 | "Credit Card Number","信用卡号码" 12 | "Credit Card Number: %s","信用卡号码:%s" 13 | "Credit Card Number: xxxx-%s","信用卡号码: xxxx-%s" 14 | "Credit Card Type","信用卡类型" 15 | "Credit Card Type: %s","信用卡类型: %s" 16 | "Credit Card Types","信用卡类型" 17 | "Credit Card Verification","信用卡核对" 18 | "Enabled","启用" 19 | "Expiration Date","有效期" 20 | "Expiration Date: %s/%s","有效期:%s/%s" 21 | "Make Check payable to","支票收款人" 22 | "Make Check payable to: %s","支票抬头: %s" 23 | "Maximum Order Total","最高订单总额" 24 | "Minimum Order Total","最低订单总额" 25 | "Month","月份" 26 | "Name on Card","持卡人名字" 27 | "Name on the Card: %s","持卡人名字:%s" 28 | "New order status","新订单状态" 29 | "Payment Methods","支付方式" 30 | "Payment Methods Section","支付方式单元" 31 | "Payment from Specific countries","指定国家支付" 32 | "Payment from applicable countries","适用国家支付" 33 | "Purchase Order Number","订购单号" 34 | "Purchase Order Number: %s","订购单号: %s" 35 | "Purchase order","购货合同" 36 | "Saved CC","已储存 CC" 37 | "Send Check to","支票寄给" 38 | "Send Check to:","支票寄给:" 39 | "Sort order","排序" 40 | "Title","标题" 41 | "What is this?","这是什么?" 42 | "Year","年份" 43 | "Zero Subtotal Checkout","零额结帐" 44 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_GiftMessage.csv: -------------------------------------------------------------------------------- 1 | "* Required Fields","* 必填栏目" 2 | "Add","添加" 3 | "Add Gift Message","添加礼物留言" 4 | "Allow Gift Messages for Order Items","允许对所订商品项附礼物留言" 5 | "Allow Gift Messages on Order Level","允许对订单附礼物留言" 6 | "Are you sure?","您是否确定?" 7 | "Cancel","取消" 8 | "Check this checkbox if you want to add gift messages to your items.","如果您想给商品附礼物留言,请核选此项。" 9 | "Check this checkbox if you want to add gift messages.","如果您想附礼物留言,请核选此项。" 10 | "Close","关闭" 11 | "Do you have any gift items in your order?","此订单中是否含有礼品?" 12 | "Edit","编辑" 13 | "Edit Gift Message","编辑礼品留言" 14 | "Enter a gift message for each item in your order.","请对订单中每件礼品输入礼品留言。" 15 | "Enter a gift message for entire order.","请输入该订单的礼物留言。" 16 | "Enter a gift message for this address.","请输入对该地址的礼品留言。" 17 | "Error while saving gift message","保存礼物留言时出错" 18 | "From","自" 19 | "Gift Message","礼品留言" 20 | "Gift Messages","礼品留言" 21 | "Gift message has been successfully saved","礼品留言成功保存" 22 | "Item %d of %d","第%d件,共%d件" 23 | "Message","留言" 24 | "No","否" 25 | "Remove","删除" 26 | "Save","保存" 27 | "Save Gift Message","保存礼品留言" 28 | "To","致" 29 | "Unknown entity type","未知实体类型" 30 | "Use config","使用配置" 31 | "Yes","是" 32 | "You can leave a box blank if you don't wish to add a gift message for the item.","如果您不希望给该商品附礼品留言,请搁置此处。" 33 | "You can leave a box blank if you don't wish to add a gift message for this address.","如果您不希望给该地址附礼品留言,请搁置此处。" 34 | "You can leave a box blank if you don't wish to add a gift message for whole order.","如果您不想给该订单附礼物留言,请搁置此处。" 35 | "Your gift message has been successfully removed","您的礼品留言已成功删除" 36 | "Your gift message has been successfully saved","您的礼品留言已成功保存" 37 | "Your gift message successfully removed","您的礼品留言删除成功" 38 | "Your gift message successfully saved","您的礼品留言保存成功" 39 | -------------------------------------------------------------------------------- /wysiwyg/plugins/advimage/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advimage_dlg',{"image_list":"\u56fe\u7247\u5217\u8868","align_right":"\u53f3\u5bf9\u9f50","align_left":"\u5de6\u5bf9\u9f50","align_textbottom":"\u6587\u5b57\u4e0b\u65b9","align_texttop":"\u6587\u5b57\u4e0a\u65b9","align_bottom":"\u5e95\u7aef\u5bf9\u9f50","align_middle":"\u5c45\u4e2d\u5bf9\u9f50","align_top":"\u9876\u7aef\u5bf9\u9f50","align_baseline":"\u5e95\u7ebf",align:"\u5bf9\u9f50",hspace:"\u6c34\u5e73\u8ddd\u79bb",vspace:"\u5782\u76f4\u8ddd\u79bb",dimensions:"\u5c3a\u5bf8",border:"\u8fb9\u6846",list:"\u56fe\u7247\u5217\u8868",alt:"\u56fe\u7247\u63cf\u8ff0",src:"\u56fe\u7247\u94fe\u63a5","dialog_title":"\u63d2\u5165/\u7f16\u8f91 \u56fe\u7247","missing_alt":"\u56fe\u7247\u6ca1\u6709\u8bf4\u660e\u6587\u5b57\uff0c\u60a8\u662f\u5426\u8981\u7ee7\u7eed\uff1f\u6ca1\u6709\u8bf4\u660e\u6587\u5b57\u7684\u56fe\u7247\uff0c\u53ef\u80fd\u7ed9\u6b8b\u75be\u4eba\u58eb\u3001\u6587\u672c\u6d4f\u89c8\u5668\u6216\u5173\u95ed\u56fe\u7247\u529f\u80fd\u7684\u6d4f\u89c8\u5668\u8bbf\u95ee\u9020\u6210\u56f0\u96be\u3002","example_img":"\u5916\u89c2\u9884\u89c8\u56fe",misc:"\u5176\u4ed6",mouseout:"\u9f20\u6807\u6ed1\u51fa",mouseover:"\u9f20\u6807\u6ed1\u5165","alt_image":"\u66ff\u6362\u56fe\u7247","swap_image":"\u56fe\u7247\u5207\u6362",map:"\u56fe\u7247map",id:"ID",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",classes:"\u7c7b\u522b",style:"\u6837\u5f0f","long_desc":"\u957f\u63cf\u8ff0\u94fe\u63a5",langcode:"\u8bed\u8a00\u7f16\u7801",langdir:"\u8bed\u8a00\u6587\u5b57\u65b9\u5411","constrain_proportions":"\u4fdd\u6301\u6bd4\u4f8b",preview:"\u9884\u89c8",title:"\u6807\u9898",general:"\u666e\u901a","tab_advanced":"\u9ad8\u7ea7","tab_appearance":"\u5916\u89c2","tab_general":"\u666e\u901a",width:"Width",height:"Height"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/advimage/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.advimage_dlg',{"image_list":"\u56fe\u7247\u6e05\u5355","align_right":"\u9760\u53f3","align_left":"\u9760\u5de6","align_textbottom":"\u6587\u5b57\u4e0b\u65b9","align_texttop":"\u6587\u5b57\u4e0a\u65b9","align_bottom":"\u9760\u4e0b","align_middle":"\u5782\u76f4\u5c45\u4e2d","align_top":"\u9760\u4e0a","align_baseline":"\u57fa\u51c6\u7ebf",align:"\u5bf9\u9f50\u65b9\u5f0f",hspace:"\u6c34\u5e73\u95f4\u8ddd",vspace:"\u5782\u76f4\u95f4\u8ddd",dimensions:"\u5c3a\u5bf8",border:"\u8fb9\u6846",list:"\u56fe\u7247\u6e05\u5355",alt:"\u56fe\u7247\u8bf4\u660e",src:"\u56fe\u7247URL","dialog_title":"\u63d2\u5165/\u7f16\u8f91\u56fe\u7247","missing_alt":"\u60a8\u5c1a\u672a\u586b\u5199\u56fe\u7247\u8bf4\u660e\u6587\u5b57\uff0c\u662f\u5426\u8981\u7ee7\u7eed\uff1f\u5982\u679c\u4e0d\u586b\u5199\u8bf4\u660e\u6587\u5b57\uff0c\u5bf9\u4f7f\u7528\u975e\u53ef\u89c6\u6216\u5bf9\u8bbe\u5b9a\u4e3a\u4e0d\u663e\u793a\u56fe\u7247\u7684\u6d4f\u89c8\u5668\u4f7f\u7528\u8005\u5c06\u66f4\u96be\u9605\u8bfb\u6216\u7406\u89e3\u6b64\u56fe\u7247\u3002","example_img":"\u56fe\u7247\u9884\u89c8",misc:"\u5176\u5b83",mouseout:"\u9f20\u6807\u79fb\u51fa",mouseover:"\u9f20\u6807\u79fb\u5165","alt_image":"\u66ff\u4ee3\u56fe\u7247","swap_image":"\u56fe\u7247\u5207\u6362",map:"\u56fe\u7247\u70ed\u533a",id:"ID",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",classes:"\u7c7b",style:"\u6837\u5f0f","long_desc":"\u957f\u94fe\u63a5",langcode:"\u8bed\u8a00\u4ee3\u7801",langdir:"\u8bed\u8a00\u4e66\u5199\u65b9\u5411","constrain_proportions":"\u7ea6\u675f\u6bd4\u4f8b",preview:"\u9884\u89c8",title:"\u56fe\u7247\u6807\u9898",general:"\u666e\u901a","tab_advanced":"\u9ad8\u7ea7","tab_appearance":"\u5916\u89c2","tab_general":"\u666e\u901a",width:"\u5bbd",height:"\u9ad8"}); -------------------------------------------------------------------------------- /Customer/Model/Resource/Customer/Collection.php: -------------------------------------------------------------------------------- 1 | getFieldset('customer_account'); 8 | foreach ($customerAccount as $code => $node) { 9 | if ($node->is('name')) { 10 | $fields[$code] = $code; 11 | } 12 | } 13 | 14 | $adapter = $this->getConnection(); 15 | $concatenate = array(); 16 | if (isset($fields['prefix'])) { 17 | $concatenate[] = $adapter->getCheckSql( 18 | '{{prefix}} IS NOT NULL AND {{prefix}} != \'\'', 19 | $adapter->getConcatSql(array('LTRIM(RTRIM({{prefix}}))', '\' \'')), 20 | '\'\''); 21 | } 22 | $concatenate[] = 'LTRIM(RTRIM({{lastname}}))'; 23 | $concatenate[] = '\'\''; 24 | if (isset($fields['middlename'])) { 25 | $concatenate[] = $adapter->getCheckSql( 26 | '{{middlename}} IS NOT NULL AND {{middlename}} != \'\'', 27 | $adapter->getConcatSql(array('LTRIM(RTRIM({{middlename}}))', '\' \'')), 28 | '\'\''); 29 | } 30 | $concatenate[] = 'LTRIM(RTRIM({{firstname}}))'; 31 | if (isset($fields['suffix'])) { 32 | $concatenate[] = $adapter 33 | ->getCheckSql('{{suffix}} IS NOT NULL AND {{suffix}} != \'\'', 34 | $adapter->getConcatSql(array('\' \'', 'LTRIM(RTRIM({{suffix}}))')), 35 | '\'\''); 36 | } 37 | 38 | $nameExpr = $adapter->getConcatSql($concatenate); 39 | 40 | $this->addExpressionAttributeToSelect('name', $nameExpr, $fields); 41 | 42 | return $this; 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_ProductAlert.csv: -------------------------------------------------------------------------------- 1 | "Alert Email Sender","提醒邮件发件邮箱" 2 | "Alert subscription was deleted successfully","成功删除订阅提醒邮件" 3 | "Alert subscription was saved successfully","成功保存订阅提醒邮件" 4 | "Allow alert when product comes back in stock","允许到货提醒" 5 | "Allow Alert When Product Comes Back in Stock","允许到货提醒" 6 | "Allow alert when product price changes","允许价格变化提醒" 7 | "Allow Alert When Product Price Changes","允许价格变化提醒" 8 | "Click here not to receive alerts for this product","点击这里已拒收通知" 9 | "Error Email Recipient","报错邮件接收邮箱" 10 | "Error Email Sender","报错邮件发送邮箱" 11 | "Error Email Template","报错邮件模板" 12 | "Frequency","频率" 13 | "Not enough parameters","没有足够的参数" 14 | "Please try again later","请稍后再试" 15 | "Price alert Email Template","价格提醒邮件模板" 16 | "Price Alert Email Template","价格提醒邮件模板" 17 | "Price:","价格:" 18 | "Product Alerts Run Settings","发送通知定时设置" 19 | "Product alerts Cron error","定时发送通知报错" 20 | "Product not found","商品未找到" 21 | "Product price alert","商品价格提醒" 22 | "Product stock alert","商品库存提醒" 23 | "Sign up for price alert","注册价格提醒" 24 | "Sign up to get notified when this product is back in stock","此商品到货后通知我" 25 | "Special price:","特价:" 26 | "Start Time","开始时间" 27 | "Stock alert Email Template","到货提醒邮件模板" 28 | "Stock Alert Email Template","到货提醒邮件模板" 29 | "Unsubscribe from all price alerts","退订价格通知" 30 | "Unsubscribe from all stock alerts","退订到货通知" 31 | "You are receiving this notification because you subscribed to receive alerts when the following products are back in stock:","您之所以收到此邮件是因为您订阅了到货通知。" 32 | "You are receiving this notification because you subscribed to receive alerts when the prices for the following products changed:","您之所以收到此邮件是因为您订阅了此商品的价格提醒。" 33 | "You will no longer receive price alerts for this product","您不会再收到该商品的价格提醒" 34 | "You will no longer receive stock alerts","您不会再收到库存提醒" 35 | "You will no longer receive stock alerts for this product","您不会再收到该商品的库存提醒" 36 | "Product Alerts","商品通知" 37 | -------------------------------------------------------------------------------- /wysiwyg/plugins/style/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.style_dlg',{"text_lineheight":"\u884c\u9ad8","text_variant":"\u53d8\u5f62","text_style":"\u6837\u5f0f","text_weight":"\u7c97\u7ec6","text_size":"\u5927\u5c0f","text_font":"\u5b57\u4f53","text_props":"\u6587\u672c","positioning_tab":"\u4f4d\u7f6e","list_tab":"\u5217\u8868","border_tab":"\u8fb9\u6846","box_tab":"Box","block_tab":"\u533a\u5757","background_tab":"\u80cc\u666f","text_tab":"\u6587\u672c",apply:"\u5e94\u7528",title:"\u7f16\u8f91CSS\u6837\u5f0f",clip:"\u526a\u8f91",placement:"\u653e\u7f6e",overflow:"\u6ea2\u51fa",zindex:"Z-Index",visibility:"\u53ef\u89c1","positioning_type":"\u7c7b\u578b",position:"\u4f4d\u7f6e","bullet_image":"\u56fe\u7247\u9879\u76ee\u7b26\u53f7","list_type":"\u7c7b\u578b",color:"\u989c\u8272",height:"\u9ad8\u5ea6",width:"\u5bbd\u5ea6",style:"\u6837\u5f0f",margin:"\u5916\u8fb9\u8ddd",left:"\u5de6",bottom:"\u4e0b",right:"\u53f3",top:"\u4e0a",same:"\u5168\u90e8\u76f8\u540c",padding:"\u5185\u8fb9\u8ddd","box_clear":"\u6e05\u9664\u6d6e\u52a8","box_float":"\u6d6e\u52a8","box_height":"\u9ad8\u5ea6","box_width":"\u5bbd\u5ea6","block_display":"\u663e\u793a","block_whitespace":"\u7a7a\u683c","block_text_indent":"\u6587\u5b57\u7f29\u6392","block_text_align":"\u6587\u5b57\u5bf9\u9f50","block_vertical_alignment":"\u5782\u76f4\u5bf9\u9f50","block_letterspacing":"\u5b57\u95f4\u8ddd","block_wordspacing":"\u8bcd\u95f4\u8ddd","background_vpos":"\u5782\u76f4\u4f4d\u7f6e","background_hpos":"\u6c34\u5e73\u4f4d\u7f6e","background_attachment":"\u9644\u4ef6","background_repeat":"\u91cd\u590d","background_image":"\u80cc\u666f\u56fe\u7247","background_color":"\u80cc\u666f\u989c\u8272","text_none":"\u65e0","text_blink":"\u95ea\u70c1","text_case":"\u5b57\u4f53\u5f62\u5f0f","text_striketrough":"\u5220\u9664\u7ebf","text_underline":"\u4e0b\u5212\u7ebf","text_overline":"\u4e0a\u5212\u7ebf","text_decoration":"\u5b57\u4f53\u88c5\u9970","text_color":"\u989c\u8272",text:"Text",background:"Background",block:"Block",box:"Box",border:"Border",list:"List"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/style/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.style_dlg',{"text_lineheight":"\u884c\u9ad8","text_variant":"\u7279\u6b8a\u5b57\u4f53","text_style":"\u6837\u5f0f","text_weight":"\u7c97\u4f53","text_size":"\u5b57\u4f53\u5927\u5c0f","text_font":"\u5b57\u4f53","text_props":"\u6587\u5b57","positioning_tab":"\u4f4d\u7f6e","list_tab":"\u5217\u8868","border_tab":"\u8fb9\u6846","box_tab":"\u65b9\u76d2","block_tab":"\u533a\u5757","background_tab":"\u80cc\u666f","text_tab":"\u6587\u5b57",apply:"\u5e94\u7528",title:"\u7f16\u8f91CSS",clip:"\u526a\u8f91",placement:"\u653e\u7f6e",overflow:"\u6ea2\u51fa",zindex:"Z\u8f74\u5750\u6807",visibility:"\u53ef\u89c1","positioning_type":"\u7c7b\u578b",position:"\u4f4d\u7f6e","bullet_image":"\u56fe\u7247\u9879\u76ee\u7b26\u53f7","list_type":"\u7c7b\u578b",color:"\u989c\u8272",height:"\u9ad8",width:"\u5bbd",style:"\u6837\u5f0f",margin:"\u5916\u8fb9\u8ddd",left:"\u5de6",bottom:"\u4e0b",right:"\u53f3",top:"\u4e0a",same:"\u4e00\u81f4",padding:"\u5185\u8fb9\u8ddd","box_clear":"\u6e05\u9664\u6d6e\u52a8","box_float":"\u6d6e\u52a8","box_height":"\u9ad8","box_width":"\u5bbd","block_display":"\u663e\u793a","block_whitespace":"\u7a7a\u683c","block_text_indent":"\u6587\u5b57\u7f29\u8fdb","block_text_align":"\u6587\u5b57\u5bf9\u9f50","block_vertical_alignment":"\u5782\u76f4\u5bf9\u9f50","block_letterspacing":"\u5b57\u95f4\u8ddd","block_wordspacing":"\u8bcd\u95f4\u8ddd","background_vpos":"\u5782\u76f4\u4f4d\u7f6e","background_hpos":"\u6c34\u5e73\u4f4d\u7f6e","background_attachment":"\u9644\u4ef6","background_repeat":"\u91cd\u590d","background_image":"\u80cc\u666f\u56fe\u7247","background_color":"\u80cc\u666f\u989c\u8272","text_none":"\u65e0","text_blink":"\u95ea\u70c1","text_case":"\u5b57\u578b","text_striketrough":"\u5220\u9664\u7ebf","text_underline":"\u4e0b\u5212\u7ebf","text_overline":"\u4e0a\u5212\u7ebf","text_decoration":"\u88c5\u9970","text_color":"\u989c\u8272",text:"\u6587\u5b57",background:"\u80cc\u666f",block:"\u533a\u5757",box:"\u65b9\u76d2",border:"\u8fb9\u6846",list:"\u5217\u8868"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Rss.csv: -------------------------------------------------------------------------------- 1 | "%s - Discounts and Coupons","%s - 折扣和优惠券" 2 | "%s - Special Discounts","%s - 特价" 3 | "%s RSS Feed","%s RSS 订阅" 4 | "%s has reached a quantity of %s.","%s的数量为%s。" 5 | "%s's Wishlist","%s收藏" 6 | "Cannot retrieve the wishlist","无法读取收藏" 7 | "Catalog","目录" 8 | "Category Feeds","目录Feeds" 9 | "Comment: %s
","评论: %s
" 10 | "Coupons/Discounts","折扣/优惠券" 11 | "Current Status: %s
","当前状态:%s
" 12 | "Customer Name: %s","顾客名字:%s" 13 | "Customer Order Status Notification","顾客订单状态通知" 14 | "Details for %s #%s","%s编号%s的详情" 15 | "Discount ","折扣" 16 | "Enable RSS","启动RSS" 17 | "Error in processing xml. %s","处理xml%s中出错" 18 | "From:","从:" 19 | "Get Feed","获取Feed" 20 | "Gift Message","礼物留言" 21 | "Grand Total","全总额" 22 | "Low Stock Products","低库存商品" 23 | "Message:","评论:" 24 | "Miscellaneous Feeds","杂项订订阅" 25 | "New Orders","新订单" 26 | "New Products","新商品" 27 | "New Products from %s","来自%s的新商品" 28 | "Notified Date: %s
","通知日期:%s
" 29 | "Order # %s Notification(s)","订单%s通知" 30 | "Order #%s created at %s","订单号%s之订购日期%s" 31 | "Pending product review(s)","待核商品评论" 32 | "Product: ""%s"" review By: %s","商品:""%s""%s评论" 33 | "Product: %s
","商品:%s
" 34 | "Products tagged with %s","商品标记为%s" 35 | "Purchased From: %s","购买于:%s" 36 | "RSS","RSS" 37 | "RSS Feeds","RSS订阅" 38 | "RSS testing","RSS 测试" 39 | "Review: %s
","评论:%s
" 40 | "Rss Config","Rss设置" 41 | "Rss Feeds Section","Rss订阅单元" 42 | "Shipping & Handling","配送处理" 43 | "Special Products","特价商品" 44 | "Special/Discount Products","特价/折价商品" 45 | "Store: %s
","商店: %s
" 46 | "Subtotal","小计" 47 | "Summary of review: %s
","评论摘要:%s
" 48 | "Tags Products","商品标签" 49 | "Tax","税" 50 | "There are no Rss Feeds","无Rss订阅" 51 | "There are no Rss Feeds.","There are no Rss Feeds." 52 | "To:","给:" 53 | "Top Level Category","首级目录分类" 54 | "Total Products: %s","产品总计: %s" 55 | "Total: %s
","总额:%s
" 56 | "Wishlist","收藏" 57 | "click here to view the review","点击这里以查看评论" 58 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_CatalogSearch.csv: -------------------------------------------------------------------------------- 1 | "%s and greater","%s及更大" 2 | "Advanced Search","高级搜寻" 3 | "All","全部" 4 | "Applies for ""Like"" Search type only","仅应用于“相似”搜索类型" 5 | "Apply Layered Navigation if search results are less than","应用分层导航,如果搜索结果少于" 6 | "Attribute setting change related with Search Index. Please run Rebuild Search Index process","属性设置修改与搜索索引相关。请运行重建搜索索引 程序" 7 | "Autogenerated site map","自动生成网站地图" 8 | "Catalog Advanced Search","高级目录搜寻" 9 | "Catalog Search","目录搜索" 10 | "Don't see what you're looking for?","没看见您要查找的商品?" 11 | "Go","Go" 12 | "Go to Home Page","回首页" 13 | "Grid","多栏显示" 14 | "Home","首页" 15 | "List","列表" 16 | "Maximum Query Length","最大查询长度" 17 | "Maximum Query Words Count","最大查询词数" 18 | "Maximum Search query length is %s. Your query was cut.","最大搜索查询字长为%s,您问题的一部分已被剪切。" 19 | "Minimal Query Length","最小查询长度" 20 | "Modify your search","修改您的搜索" 21 | "No","否" 22 | "No items were found using the following search criteria.","没有找到与下列搜索条件相匹配的产品。" 23 | "Please enter ""0"" to enable layered navigation for any number of results","对于任意数的结果,请输入“0”来开启分层导航" 24 | "Popular Search Terms","热门搜索关键词" 25 | "Popular search terms","热门搜索关键词" 26 | "Relevance","相关" 27 | "Required Fields","必填栏目" 28 | "Results","结果" 29 | "Search","搜索" 30 | "Search Settings","搜索设置" 31 | "Search Site","搜索网站" 32 | "Search Type","搜索类型" 33 | "Search entire store here...","全店搜索 ..." 34 | "Search results for '%s'","有关'%s'的搜索结果:" 35 | "Search results for: '%s'","搜索结果: '%s'" 36 | "Subscribe to Feed","订阅到RSS" 37 | "There are no search terms available.","没有可用的搜索关键词。" 38 | "Yes","是" 39 | "You have to specify at least one search term","请输入至少一个搜索关键字" 40 | "Your search returns no results.","没有搜索到任何结果。" 41 | "up to %s","多达%s" 42 | "%d item(s) were found using the following search criteria","%d商品为下列搜索条件相匹配的商品。" 43 | "Is product available for purchase with Google Checkout","Is product available for purchase with Google Checkout" 44 | "Advanced Search","Advanced Search" 45 | "Search Terms","搜索关键字" 46 | "Popular Search Terms","热门搜索关键字" 47 | "There are no search terms available.","没有可显示的关键字" -------------------------------------------------------------------------------- /code/etc/system.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | text 32 | 300 33 | 1 34 | 1 35 | 0 36 | 37 | 38 | 39 | select 40 | adminhtml/system_config_source_yesno 41 | 1 42 | 1 43 | 1 44 | 0 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /wysiwyg/plugins/style/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.style_dlg',{"text_lineheight":"\u884c\u9ad8","text_variant":"\u6587\u672c\u53d8\u91cf\uff08\u4e2d\u6587\u65e0\u6548\uff09","text_style":"\u6837\u5f0f","text_weight":"\u9ad8\u5ea6","text_size":"\u5b57\u4f53\u5927\u5c0f","text_font":"\u5b57\u4f53","text_props":"\u6587\u672c","positioning_tab":"\u653e\u7f6e","list_tab":"\u5217\u8868","border_tab":"\u8fb9\u6846","box_tab":"\u65b9\u5757","block_tab":"\u533a\u5757","background_tab":"\u80cc\u666f","text_tab":"\u6587\u672c",apply:"\u5e94\u7528",title:"\u7f16\u8f91CSS\u6837\u5f0f",clip:"\u526a\u8f91",placement:"\u653e\u7f6e",overflow:"\u6ea2\u51fa",zindex:"\u5143\u7d20\u5806\u53e0\u987a\u5e8f\uff08Z-index)",visibility:"\u53ef\u89c1","positioning_type":"\u7c7b\u578b",position:"\u4f4d\u7f6e","bullet_image":"\u56fe\u7247\u9879\u76ee\u7b26\u53f7","list_type":"\u7c7b\u578b",color:"\u989c\u8272",height:"\u9ad8\u5ea6",width:"\u5bbd\u5ea6",style:"\u6837\u5f0f",margin:"\u5916\u8fb9\u6846",left:"\u5de6\u4fa7",bottom:"\u5e95\u90e8",right:"\u53f3\u4fa7",top:"\u9876\u90e8",same:"\u5168\u90e8\u76f8\u540c",padding:"\u5185\u8fb9\u6846","box_clear":"\u6e05\u9664\u6d6e\u52a8","box_float":"\u6d6e\u52a8","box_height":"\u9ad8\u5ea6","box_width":"\u5bbd\u5ea6","block_display":"\u663e\u793a\u65b9\u5f0f","block_whitespace":"\u7a7a\u683c","block_text_indent":"\u6587\u672c\u7f29\u8fdb","block_text_align":"\u6587\u672c\u5bf9\u9f50\u65b9\u5f0f","block_vertical_alignment":"\u5782\u76f4\u5bf9\u9f50","block_letterspacing":"\u5b57\u6bcd\u95f4\u8ddd","block_wordspacing":"\u95f4\u8ddd","background_vpos":"\u5782\u76f4\u4f4d\u7f6e","background_hpos":"\u6c34\u5e73\u4f4d\u7f6e","background_attachment":"\u9644\u4ef6","background_repeat":"\u91cd\u590d","background_image":"\u80cc\u666f\u56fe\u7247","background_color":"\u80cc\u666f\u989c\u8272","text_none":"\u65e0","text_blink":"\u95ea\u70c1","text_case":"\u5b57\u578b","text_striketrough":"\u5220\u9664\u7ebf","text_underline":"\u4e0b\u5212\u7ebf","text_overline":"\u4e0a\u5212\u7ebf","text_decoration":"\u88c5\u9970","text_color":"\u989c\u8272",text:"\u6587\u672c",background:"\u80cc\u666f",block:"\u533a\u5757",box:"\u76d2\u6a21\u5f0f",border:"\u8fb9\u6846",list:"\u5217\u8868"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_CatalogInventory.csv: -------------------------------------------------------------------------------- 1 | "%s is not correct comparsion method.","%s 不是正确的比较方法。" 2 | "Please note, that these Settings are applicable to cart line Items, not the whole Cart.","请注意,这些设置仅使用于购物车里某一类商品,而不是整个购物车。" 3 | "Allow Qty Below 0","允许库存数量低于0" 4 | "Allow Qty Below 0 and Notify Customer","允许库存数量低于0并提醒客户" 5 | "Backorders","缺货订单" 6 | "By Fixed value","根据固定值" 7 | "By Percentage","根据百分比" 8 | "Can not specify product identifier for order item","无法指定订购商品的标识" 9 | "Catalog Inventory","目录库存" 10 | "Decrease Stock When Order is Placed","订单生成后冲减库存" 11 | "In Stock","有库存" 12 | "Inventory","库存管理" 13 | "Inventory API","库存API" 14 | "Inventory Section","库存单元" 15 | "Manage Stock","库存管理" 16 | "Maximum Qty Allowed in Shopping Cart","购物车中最多可允许商品数量" 17 | "Minimum Qty Allowed in Shopping Cart","购物车中最少可允许商品数量" 18 | "No Backorders","不允许缺货订单" 19 | "Notify for Quantity Below","需要提醒的最少数量" 20 | "Out of Stock","无库存" 21 | "Product Stock Options","商品库存选项" 22 | "Qty for Items' Status to become Out of Stock","此数量时将商品状态设置为库存不足" 23 | "Retrieve stock data","读取库存数据" 24 | "Retrieve stock data by product ids","根据商品编号(id)读取库存数据" 25 | "Rule price","价格规则" 26 | "Set Items' Status to be In Stock When Order is Cancelled","订单取消时将相关商品状态重置为有库存" 27 | "Some of the products are currently out of stock","部分商品目前无库存" 28 | "Some of the products can not be ordered in requested quantity","部分商品无法按照要求的数量订购" 29 | "Some of the products cannot be ordered in the requested quantity","部分商品无法按照要求的数量订购" 30 | "Stock Options","库存选项" 31 | "Stock item for Product in option is not valid","指定商品的库存记录不存在" 32 | "Stock item for Product is not valid","商品库存记录不存在" 33 | "The maximum quantity allowed for purchase is %s.","购买的最大允许数量是%s。" 34 | "The minimum quantity allowed for purchase is %s.","最低允许购买数量为 %s。" 35 | "The requested quantity for ""%s"" is not available.","您订购""%s""数量没有库存。" 36 | "The requested quantity is not available.","您订购的数量没有库存。" 37 | "This product is currently out of stock.","此商品目前库存不足。" 38 | "To Fixed Value","为固定值" 39 | "To Percentage","为百分比" 40 | "Update","更新" 41 | "Update product stock data","更新商品库存数据" 42 | "Update the Product","更新商品" 43 | "Enable Qty Increments","设定最小购买量" 44 | "Qty Increments","最小购买量" -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Strikeiron.csv: -------------------------------------------------------------------------------- 1 | "%s is not supported currency.","%s是不支持货币" 2 | "Accept","接受" 3 | "Basic","基本的" 4 | "Cannot retreive rate from strikeirion.","无法从strikeirion获取税率" 5 | "Cannot retrieve rate from %s to %s","无法获取从 %s 到 %s的税率" 6 | "Check all email servers","检查所有邮件服务器" 7 | "Complete","完成" 8 | "Country/Region/Postal code combination","Country/Region/Postal code combination" 9 | "Customer Tax Class","客户税种" 10 | "Email Verification","邮件校验" 11 | "Email address cannot be verified. Please check again and make sure your email address entered correctly.","未检测到邮件地址。请检查确认邮件地址输入正确。" 12 | "Enable US address verification","启用美国地址校验" 13 | "Enable email verification","启用邮件校验" 14 | "Enable foreign exchange rate","启用外汇汇率" 15 | "Enable global address verification","启用全球地址校验" 16 | "Enable sales and use tax","启用销售和使用税" 17 | "Error Email Recipient","邮件收件人错误" 18 | "Error Email Sender","邮件发件人错误" 19 | "Error Email Template","邮件模板错误" 20 | "Error address action","地址操作出错" 21 | "Foreign Exchange Rates","外汇汇率" 22 | "Global Address Verification","全球地址校验" 23 | "If type is complete and zip code belongs to multiple tax rates, choose to charge minimum tax rate or maximum tax rate.","如果类型完整并且邮政编码属于多个税率,选择使用最低税率或最高税率。" 24 | "Invalid email address","邮件地址不正确" 25 | "Maximum tax rate","最高税率" 26 | "Minimum tax rate","最低税率" 27 | "Password","密码" 28 | "Pop up warning and accept","弹出警告并接受" 29 | "Product Tax Class","商品税种" 30 | "Reject","拒绝" 31 | "Sales and Use Tax","销售和使用税" 32 | "Sales and Use Tax Type","销售和使用税种" 33 | "Strikeiron","Strikeiron" 34 | "Strikeiron Config","Strikeiron 设置" 35 | "Strikeiron Section","Strikeiron 单元" 36 | "Strikeiron foreign exchange rate is disabled","Strikeiron 外汇汇率不可用" 37 | "Tax","税" 38 | "There is an error in retrieving tax rate. Please contact us","获取税率时出错,请联系我们" 39 | "There is an error in verifying an email. Please contact us.","校验邮件地址时出错,请联系我们" 40 | "There is no more hits remaining for the foreign Exchange Rate Service.","外汇汇率服务无访问" 41 | "There is no response back from Strikeiron server","Strikeiron服务器无返回信息" 42 | "US Address Verification","美国地址校验" 43 | "Undetermined email action","邮件操作未完成" 44 | "Use","使用" 45 | "User ID","用户ID" 46 | "Verify address in admin","在控制台校验地址" 47 | "Verify email in admin","在控制台校验邮件" 48 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Sitemap.csv: -------------------------------------------------------------------------------- 1 | "Action","操作" 2 | "Add Sitemap","增加网站地图" 3 | "Always","总是" 4 | "CMS Pages Options","CMS页面选项" 5 | "Categories Options","目录分类选项" 6 | "Daily","按日" 7 | "Edit Sitemap","修改网站地图" 8 | "Enabled","启用" 9 | "Error Email Recipient","错误收件人" 10 | "Error Email Sender","错误发件人" 11 | "Error Email Template","错误邮件模版" 12 | "File ""%s"" cannot be saved. Please, make sure the directory ""%s"" is writeable by web server.","""%s""无法保存。Please, make sure the directory ""%s"" is writeable by web server." 13 | "Filename","文件名" 14 | "Frequency","频率" 15 | "Generate","生成" 16 | "Generation Settings","设置生成" 17 | "Google Sitemap","Google网站地图" 18 | "Google Sitemap Section","Google 网站地图单元 " 19 | "Hourly","按时" 20 | "ID","编号" 21 | "Last Time Generated","最后生成时间" 22 | "Link for Google","Google链接" 23 | "Monthly","按月" 24 | "Never","从未" 25 | "New Sitemap","新建网站地图 26 | Path""" 27 | "Path","路径" 28 | "Please create the specified folder ""%s"" before saving the sitemap.","在保存网站地图之前请创建指定目录 ""%s""。" 29 | "Please define correct path","请定义正确的路径" 30 | "Please make sure that ""%s"" is writable by web-server.","请确保 web 服务器具有对 ""%s"" 的写入权限。" 31 | "Please use only letters (a-z or A-Z), numbers (0-9) or underscore (_) in the filename. No spaces or other characters are allowed.","文件命名时请只使用 字母 (a-z 或 A-Z), 数字 (0-9) 或者下划线 (_) 。不允许空格或者其他字符。" 32 | "Priority","优先级" 33 | "Priority must be between 0 and 1","优先级必须为 0 到 1 之间" 34 | "Products Options","商品选项" 35 | "Sitemap","网站地图" 36 | "Sitemap ""%s"" has been successfully generated","网站地图 ""%s"" 生成成功" 37 | "Sitemap generate Warnings","生成网站地图时的警告" 38 | "Sitemap was successfully deleted","成功删除网站地图" 39 | "Sitemap was successfully saved","成功保存网站地图" 40 | "Start Time","开始时间" 41 | "Store View","商店界面" 42 | "This sitemap no longer exists","本网站地图不存在" 43 | "Unable to find a sitemap to delete","找不到要删除的网站地图" 44 | "Unable to find a sitemap to generate","找不到要生成的网站地图" 45 | "Unable to generate a sitemap","无法生成网站地图" 46 | "Valid values range from 0.0 to 1.0","取值范围从 0.0 到 1.0" 47 | "Weekly","每周" 48 | "Yearly","每年" 49 | 50 | "The priority must be between 0 and 1.","优先级必须为 0 到 1 之间." 51 | "The sitemap ""%s"" has been generated.","站点地图 ""%s"" 生成成功." 52 | "The sitemap has been deleted.","站点地图删除成功" 53 | "The sitemap has been saved.","站点地图生成成功" -------------------------------------------------------------------------------- /locale/zh_CN/Mage_CatalogRule.csv: -------------------------------------------------------------------------------- 1 | "Actions","折扣方式" 2 | "Active","激活" 3 | "Add New Rule","创建新规则" 4 | "Apply Rules","应用规则" 5 | "Attribute Set","属性分组" 6 | "Catalog","目录" 7 | "Catalog Price Rule","商品促销规则" 8 | "Catalog Price Rules","商品促销规则" 9 | "Category","目录分类" 10 | "Comments History","备注记录" 11 | "Conditions","生效条件" 12 | "Conditions (leave blank for all products)","生效条件(留空则对全部商品生效))" 13 | "Conditions Combination","条件组合" 14 | "Credit Memos","退款记录" 15 | "Customer Groups","顾客分组" 16 | "Customer is new buyer: %s","新客户:%s" 17 | "Customer registered: %s","注册日期:%s" 18 | "Date Expire","有效期" 19 | "Date From","开始日期" 20 | "Date Start","开始日期" 21 | "Date To","结束日期" 22 | "Delete Rule","删除规则" 23 | "Description","说明" 24 | "Description: %s","说明: %s" 25 | "Edit Rule","修改规则" 26 | "Edit Rule '%s'","修改规则'%s'" 27 | "Expire at: %s","有效期: %s" 28 | "From Date","开始日期" 29 | "General Information","基本信息" 30 | "Gift Messages","礼物留言" 31 | "ID","编号" 32 | "Inactive","未激活" 33 | "Invoices","发票" 34 | "NOT LOGGED IN","尚未登录" 35 | "Name: %s","名称:%s" 36 | "New Rule","新规则" 37 | "No","否" 38 | "Options","选项" 39 | "Order Credit Memos","订单退款记录" 40 | "Order Gift Messages","订单礼物留言" 41 | "Order History","订单记录" 42 | "Order Invoices","订单发票" 43 | "Order Shipments","订单配送" 44 | "Priority","优先级(数字越小优先级越高)" 45 | "Product Attribute","商品属性" 46 | "Promotions","促销" 47 | "Rule Information","规则信息" 48 | "Rule Name","规则名称" 49 | "Rule was successfully deleted","成功删除规则" 50 | "Rule was successfully saved","成功保存规则" 51 | "Rules were successfully applied","成功应用规则" 52 | "Save Rule","保存规则" 53 | "Save and Apply","保存并应用" 54 | "Shipments","配送" 55 | "Start at: %s","开始于: %s" 56 | "Status","状态" 57 | "Stop further rules processing","停止处理其它规则" 58 | "The page you are trying to save no longer exists","要保存的页面不存在" 59 | "There are rules that have been changed but not applied. Please, click Apply Rules in order to see immediate effect in catalog.","尚有未执行的规则变更。请点击“应用规则”以查看目录价格变更效果" 60 | "This rule no longer exists","该规则不存在" 61 | "To Date","结束日期" 62 | "Unable to apply rules","无法应用规则" 63 | "Unable to find a page to delete","无法找到要删除的页面" 64 | "Update product's %s %s: %s","更新商品的%s %s:%s" 65 | "Websites","网站" 66 | "Yes","是" 67 | "Apply","优惠方式" 68 | "Discount Amount","折扣额度" 69 | "If %s %s %s for a subselection of items in cart matching %s of these conditions:","如果购物车有 %s %s %s 个商品满足下列条件的 %s:" -------------------------------------------------------------------------------- /wysiwyg/plugins/advlink/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advlink_dlg',{"target_name":"\u76ee\u6807\u540d\u79f0",classes:"\u7c7b\u522b",style:"\u6837\u5f0f",id:"ID","popup_position":"\u4f4d\u7f6e(X/Y)",langdir:"\u8bed\u8a00\u4e66\u5199\u65b9\u5411","popup_size":"\u5927\u5c0f","popup_dependent":"\u9650\u5236(\u4ec5\u652f\u6301Mozilla/Firefox)","popup_resizable":"\u7a97\u53e3\u53ef\u8c03\u6574\u5927\u5c0f","popup_location":"\u663e\u793a\u5730\u5740\u680f","popup_menubar":"\u663e\u793a\u83dc\u5355\u680f","popup_toolbar":"\u663e\u793a\u5de5\u5177\u680f","popup_statusbar":"\u663e\u793a\u72b6\u6001\u680f","popup_scrollbars":"\u663e\u793a\u6eda\u52a8\u6761","popup_return":"\u63d2\u5165\'return false\'","popup_name":"\u7a97\u53e3\u540d\u79f0","popup_url":"\u5f39\u51faURL",popup:"Javascript\u5f39\u7a97","target_blank":"\u5728\u65b0\u7a97\u53e3\u6253\u5f00","target_top":"\u5728\u9876\u90e8\u6846\u67b6\u6253\u5f00\uff08\u91cd\u7f6e\u6240\u6709\u6846\u67b6\uff09","target_parent":"\u5728\u7236\u7a97\u53e3/\u6846\u67b6\u6253\u5f00","target_same":"\u5728\u5f53\u524d\u7a97\u53e3/\u6846\u67b6\u6253\u5f00","anchor_names":"\u951a","popup_opts":"\u9009\u9879","advanced_props":"\u9ad8\u7ea7\u5c5e\u6027","event_props":"\u4e8b\u4ef6","popup_props":"\u5f39\u51fa\u5c5e\u6027","general_props":"\u666e\u901a\u5c5e\u6027","advanced_tab":"\u9ad8\u7ea7","events_tab":"\u4e8b\u4ef6","popup_tab":"\u5f39\u51fa","general_tab":"\u666e\u901a",list:"\u94fe\u63a5\u5217\u8868","is_external":"\u60a8\u8f93\u5165\u7684URL\u662f\u4e00\u4e2a\u5916\u90e8\u94fe\u63a5\uff0c\u662f\u5426\u8981\u52a0\u4e0a\"http://\"\u524d\u7f00\uff1f","is_email":"\u60a8\u8f93\u5165URL\u662f\u7535\u5b50\u90ae\u4ef6\u5730\u5740\uff0c\u662f\u5426\u9700\u8981\u52a0\"mailto:\"\u524d\u7f00\uff1f",titlefield:"\u6807\u9898",target:"\u6253\u5f00\u65b9\u5f0f",url:"\u8d85\u94fe\u63a5URL",title:"\u63d2\u5165/\u7f16\u8f91 \u8d85\u94fe\u63a5","link_list":"\u94fe\u63a5\u5217\u8868",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",accesskey:"\u5feb\u6377\u952e",tabindex:"Tab\u7d22\u5f15",rev:"\u76ee\u6807\u5230\u7f51\u9875\u7684\u5173\u7cfb",rel:"\u7f51\u9875\u5230\u76ee\u6807\u7684\u5173\u7cfb",mime:"\u76ee\u6807MIME\u7c7b\u578b",encoding:"\u76ee\u6807\u8bed\u8a00\u7f16\u7801",langcode:"\u8bed\u8a00\u7f16\u7801","target_langcode":"\u76ee\u6807\u8bed\u8a00",width:"Width",height:"Height"}); -------------------------------------------------------------------------------- /locale/zh_CN/template/email/newsletter_subscr_confirm.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 12 | 13 | 14 |
15 | 16 | 17 | 38 | 39 |
18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 32 | 33 | 34 | 35 | 36 |
22 | {{var logo_alt}} 23 |
28 |

感谢您订阅我们的电子邮件。

29 |

请点击以下链接确认订阅:
30 | {{var subscriber.getConfirmationLink()}}

31 |

谢谢您的支持,{{var store.getFrontendName()}}

37 |
40 |
41 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/payment_failed.html: -------------------------------------------------------------------------------- 1 | {* This is a comment block 2 | 3 | Use vars: {{var var_name}} 4 | *} 5 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 69 | 70 | 71 |
您的此次交易失败。
28 |

29 | 原因如下:
30 | {{var reason}} 31 |

32 |

33 | 支付方式为:
34 | {{var checkoutType}} 35 |

36 |

37 | 顾客:
38 | {{var customer}} <{{var customerEmail}}> 39 |

40 |

41 | 购买商品:
42 | {{var items}} 43 |

44 |

45 | 总计:
46 | {{var total}} 47 |

48 |

49 | 账单地址:
50 | {{var billingAddress.format('html')}} 51 |

52 |

53 | 收件地址:
54 | {{var shippingAddress.format('html')}} 55 |

56 |

57 | 配送方式:
58 | {{var shippingMethod}} 59 |

60 |

61 | 支付方式:
62 | {{var paymentMethod}} 63 |

64 |

65 | 购买时间:
66 | {{var dateAndTime}} 67 |

68 |
-------------------------------------------------------------------------------- /wysiwyg/plugins/advlink/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.advlink_dlg',{"target_name":"\u76ee\u6807\u540d\u79f0",classes:"\u7c7b\u522b",style:"\u6837\u5f0f",id:"Id\u7f16\u53f7","popup_position":"\u4f4d\u7f6e (X/Y)",langdir:"\u6587\u672c\u65b9\u5411","popup_size":"\u6587\u672c\u5927\u5c0f","popup_dependent":"\u6d4f\u89c8\u5668\u9650\u5236(\u4ec5\u652f\u6280Mozilla/Firefox)","popup_resizable":"\u7a97\u53e3\u5927\u5c0f\u53ef\u8c03","popup_location":"\u663e\u793a\u5730\u5740\u680f","popup_menubar":"\u663e\u793a\u83dc\u5355\u680f","popup_toolbar":"\u663e\u793a\u5de5\u5177\u680f","popup_statusbar":"\u663e\u793a\u72b6\u6001\u680f","popup_scrollbars":"\u663e\u793a\u6eda\u52a8\u6761","popup_return":"\u63d2\u5165 \"return false\"","popup_name":"\u65b0\u7a97\u53e3\u540d\u79f0","popup_url":"\u5f39\u7a97URL\u5730\u5740",popup:"JavaScript \u5f39\u51fa","target_blank":"\u5728\u65b0\u7a97\u53e3\u6253\u5f00","target_top":"\u5728\u9876\u90e8\u7a97\u53e3\u6253\u5f00\u8d85\u94fe\u63a5","target_parent":"\u5728\u7236\u7ea7\u7a97\u53e3\u6253\u5f00\u8d85\u94fe\u63a5","target_same":"\u5728\u76ee\u524d\u7a97\u53e3\u6253\u5f00\u8d85\u94fe\u63a5","anchor_names":"\u951a\u70b9","popup_opts":"\u9009\u9879","advanced_props":"\u9ad8\u7ea7\u5c5e\u6027","event_props":"\u4e8b\u4ef6","popup_props":"\u5f39\u51fa\u5c5e\u6027","general_props":"\u5e38\u89c4\u5c5e\u6027","advanced_tab":"\u9ad8\u7ea7","events_tab":"\u4e8b\u4ef6","popup_tab":"\u5f39\u7a97","general_tab":"\u5e38\u89c4",list:"\u94fe\u63a5\u5217\u8868","is_external":"\u60a8\u8f93\u5165\u7684 URL \u4f3c\u4e4e\u4e3a\u5916\u90e8\u8d85\u8fde\u7ed3\uff0c\u662f\u5426\u8981\u52a0\u4e0a \u201chttp://\u201d\u524d\u7f00?","is_email":"\u60a8\u8f93\u5165\u7684\u4f3c\u4e4e\u662f\u7535\u5b50\u90ae\u4ef6\u5730\u5740,\u662f\u5426\u9700\u8981\u52a0 mailto:\uff1f",titlefield:"\u6807\u9898",target:"\u76ee\u6807",url:"\u94fe\u63a5URL\u5730\u5740",title:"\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5","link_list":"\u94fe\u63a5\u5217\u8868",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",accesskey:"\u5feb\u6377\u952e",tabindex:"Tab\u952e\u8bbf\u95ee\u987a\u5e8f",rev:"\u76ee\u6807\u5230\u7f51\u9875\u7684\u5173\u7cfb",rel:"\u7f51\u9875\u5230\u76ee\u6807\u7684\u5173\u7cfb",mime:"\u76ee\u6807MIME\u7c7b\u578b",encoding:"\u76ee\u6807\u5b57\u7b26\u96c6\uff08UTF-8\uff09",langcode:"\u8bed\u8a00\u7f16\u7801","target_langcode":"\u76ee\u6807\u8bed\u8a00",width:"\u5bbd\u5ea6",height:"\u9ad8\u5ea6"}); -------------------------------------------------------------------------------- /locale/zh_CN/template/email/admin_password_new.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 14 | 15 | 16 |
17 | 18 | 19 | 40 | 41 |
20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 |
24 | {{var logo_alt}} 25 |
30 |

亲爱的 {{htmlescape var=$user.name}},

31 |

您的新密码为: {{htmlescape var=$password}}

32 |

您可以点击 我的账户 随时修改密码。

33 |

谢谢您的支持,{{var store.getFrontendName()}}

39 |
42 |
43 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/password_new.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 13 | 14 | 15 |
16 | 17 | 18 | 39 | 40 |
19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | 33 | 34 | 35 | 36 | 37 |
23 | {{var logo_alt}} 24 |
29 |

亲爱的 {{htmlescape var=$customer.name}},

30 |

您的新密码为: {{htmlescape var=$customer.password}}

31 |

您可以点击 我的账户 随时修改密码。

32 |

谢谢您的支持,{{var store.getFrontendName()}}

38 |
41 |
42 | 43 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/wishlist_share.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 12 | 13 | 14 |
15 | 16 | 17 | 40 | 41 |
18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 34 | 35 | 36 | 37 | 38 |
22 | {{var logo_alt}} 23 |
28 |

你好,{{var store.getFrontendName()}},以下是我的收藏:

29 |

{{var message}}

30 | {{var items}} 31 |
32 | {{depend salable}}

添加所有商品至购物车 |{{/depend}} 查看收藏的商品

33 |

谢谢,{{htmlescape var=$customer.name}}

39 |
42 |
43 | -------------------------------------------------------------------------------- /template/translate.csv: -------------------------------------------------------------------------------- 1 | "Keep your eyes open for our special Back to School items and save A LOT!","请随时关注我们的新学期开学大促销,惊喜不断!" 2 | "Special Price","特价" 3 | "Total:","合计:" 4 | "Log In","登陆" 5 | "Sign Up","注册" 6 | "Add to Cart","加入购物车" 7 | "Add to Wishlist","加入收藏夹" 8 | "Availability:","库存状态:" 9 | "Currency:","汇率" 10 | "BAG","购物车" 11 | "Featured Products","热门推荐" 12 | "On Sale","打折促销" 13 | "New Products","新品上市" 14 | "quick view","商品预览" 15 | "View Cart","购物车" 16 | "Checkout","结账" 17 | "Continue to Checkout","结账" 18 | "Total:","合计" 19 | "You have no items in your shopping cart.","您的购物车里没有商品。" 20 | "Billing address","订单地址" 21 | "Shipping method","配送方式" 22 | "Payment method","支付方式" 23 | "Review your order","确认订单" 24 | "Grand total","总计" 25 | "Confirm password","确认密码" 26 | "Place order now","确认付款" 27 | "back to main","返回上一页" 28 | "WRITE YOUR REVIEW","您的评论" 29 | "Shopping cart","购物车" 30 | "Shopping Cart","购物车" 31 | "Navigation","网站导航" 32 | "Sign In","会员登录" 33 | "No tags connected to product","该商品暂无标签" 34 | "Bestsellers","人气商品" 35 | "Show %s per page","每页显示 %s 个" 36 | "User Show","美图秀" 37 | "Username","用户名" 38 | "Checkout Method","支付方式" 39 | "Forgot Your Password?","忘记密码?" 40 | "Back to Login?","返回登录?" 41 | "Sign Up for Newsletter","订阅邮件" 42 | "There is already an account with this email address. If you are sure that it is your email address, click here to get your password and access your account.","已经有人用该邮件地址注册过,如果您确认是自己的邮件地址,请点击找回密码访问您的账号。" 43 | 44 | "Home","首页" 45 | 46 | "Fill in the fields below to complete your purchase!","填写表单完成购物" 47 | "Name & Address","姓名与地址" 48 | "First Name","名" 49 | "Last Name","姓" 50 | "Company","公司" 51 | "Address","地址" 52 | "City","城市" 53 | "State / Province","省" 54 | "Zip Code","邮编" 55 | "Telephone","电话" 56 | "Review Your Order","确认订单信息" 57 | "Place Order Now","支付结帐" 58 | "New Address","填写新地址" 59 | "Select One","请选择" 60 | 61 | "Save in address book","保存到地址簿" 62 | "Please enter your full address to obtain a shipping quote.","请输入您的地址获得运费。" 63 | 64 | "Already registered? Click here to login","您已经有账号了?请点击这里登陆" 65 | "Login to your Account","登陆信息" 66 | "This email adress is already registered. Please enter another email to register account or login using this email.","该邮件地址已注册,请登陆该邮件地址或输入其他邮件地址注册" 67 | "Additional","商品属性" 68 | "Shop By","筛选" 69 | "next","下一个" 70 | "prev","上一个" 71 | 72 | "Email Address","电子邮箱地址" 73 | "Country","国家" 74 | "Create an account for later use","是否注册账号" 75 | "Password","密码" 76 | "Confirm Password","密码确认" -------------------------------------------------------------------------------- /wysiwyg/plugins/advlink/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.advlink_dlg',{"target_name":"\u94fe\u63a5\u76ee\u6807\u540d\u79f0",classes:"\u7c7b",style:"\u6837\u5f0f",id:"ID","popup_position":"\u4f4d\u7f6e(X/Y)",langdir:"\u8bed\u8a00\u4e66\u5199\u65b9\u5411","popup_size":"\u5927\u5c0f","popup_dependent":"\u6d4f\u89c8\u5668\u9650\u5236(\u4ec5\u652f\u6301Mozilla/Firefox)","popup_resizable":"\u53ef\u8c03\u6574\u5927\u5c0f\u7684\u5f39\u51fa\u7a97\u53e3","popup_location":"\u663e\u793a\u7f51\u5740\u680f","popup_menubar":"\u663e\u793a\u83dc\u5355\u680f","popup_toolbar":"\u663e\u793a\u5de5\u5177\u680f","popup_statusbar":"\u663e\u793a\u72b6\u6001\u680f","popup_scrollbars":"\u663e\u793a\u6eda\u52a8\u680f","popup_return":"\u63d2\u5165\'return false\'","popup_name":"\u7a97\u53e3\u540d\u79f0","popup_url":"\u5f39\u51fa\u7a97\u53e3\u7684URL",popup:"JavaScript\u5f39\u51fa\u7a97\u53e3","target_blank":"\u5728\u65b0\u7a97\u53e3\u6253\u5f00\u94fe\u63a5","target_top":"\u5728top\u6846\u67b6\u6253\u5f00\u94fe\u63a5 (\u5957\u7528\u5728\u6240\u6709\u6846\u67b6)","target_parent":"\u5728\u7236(\u4e0a\u5c42)\u7a97\u53e3/\u6846\u67b6\u6253\u5f00\u94fe\u63a5","target_same":"\u5728\u5f53\u524d\u7a97\u53e3\u6253\u5f00\u94fe\u63a5","anchor_names":"\u951a\u70b9","popup_opts":"\u9009\u9879","advanced_props":"\u9ad8\u7ea7\u5c5e\u6027","event_props":"Javascript\u4e8b\u4ef6","popup_props":"\u5f39\u51fa\u7a97\u53e3\u5c5e\u6027","general_props":"\u666e\u901a\u5c5e\u6027","advanced_tab":"\u9ad8\u7ea7","events_tab":"Javascript\u4e8b\u4ef6","popup_tab":"\u5f39\u51fa\u7a97\u53e3","general_tab":"\u666e\u901a",list:"\u94fe\u63a5\u6e05\u5355","is_external":"\u60a8\u6240\u8f93\u5165\u7684URL\u4f3c\u4e4e\u4e3a\u5916\u90e8\u94fe\u63a5\uff0c\u662f\u5426\u9700\u8981\u52a0\u4e0ahttp://\u524d\u7f00\uff1f","is_email":"\u60a8\u8f93\u5165\u7684URL\u4f3c\u4e4e\u662f\u7535\u5b50\u90ae\u4ef6\u4f4d\u5740\uff0c\u662f\u5426\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\uff1f",titlefield:"\u94fe\u63a5\u6807\u9898",target:"\u94fe\u63a5\u76ee\u6807",url:"URL\u94fe\u63a5",title:"\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5","link_list":"\u94fe\u63a5\u6e05\u5355",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",accesskey:"\u5feb\u6377\u952e",tabindex:"Tab\u7d22\u5f15",rev:"\u76ee\u6807\u5230\u7f51\u9875\u7684\u5173\u7cfb",rel:"\u7f51\u9875\u5230\u76ee\u6807\u7684\u5173\u7cfb",mime:"\u76ee\u6807MIME\u7c7b\u578b",encoding:"\u76ee\u6807\u5b57\u7b26\u7f16\u7801",langcode:"\u8bed\u8a00\u4ee3\u7801","target_langcode":"\u76ee\u6807\u8bed\u8a00",width:"\u5bbd",height:"\u9ad8"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Page.csv: -------------------------------------------------------------------------------- 1 | "%s Item(s)","%s件商品" 2 | "© 2008 Magento Demo Store. All Rights Reserved.","© 2008-2014 演示商店。 版权所有。" 3 | "(Shift-)Click or drag to change value","(Shift-)点击(Click)或拖住(drag)以更换值" 4 | "(ver. %s)","(版本 %s)" 5 | "- Click on any of the time parts to increase it","- 点击任何时间部分以增加它" 6 | "- Hold mouse button on any of the above buttons for faster selection.","- 点按鼠标纽于上面任何按钮以加速选择。" 7 | "- Use the %s buttons to select month","- 使用 %s 按钮以选择月份。" 8 | "- Use the %s, %s buttons to select year","- 使用 %s 和 %s 按钮以选择年份。" 9 | "- or Shift-click to decrease it","- 或同时按下Shift健和按鼠标纽(Shift-click)以减少选择。" 10 | "- or click and drag for faster selection.","-或点击(Click)和拖住(drag)以以加速选择。" 11 | "About the calendar","日历器" 12 | "Click here if nothing has happened","若没动静, 点击这里。" 13 | "Close","关闭" 14 | "Close Window","关闭窗口" 15 | "DHTML Date/Time Selector","DHTML 日期/时间选择" 16 | "Date selection:","日期选择:" 17 | "Default Description","默认描述" 18 | "Default welcome msg!","默认欢迎信息!" 19 | "Display %s first","现显示 %s" 20 | "Distributed under GNU LGPL. See %s for details.","Distributed under GNU LGPL. See %s for details." 21 | "Drag to move","拖住移动" 22 | "For latest version visit: %s","最新版本请拜访: %s" 23 | "Go Today","Go Today" 24 | "Help Us to Keep Magento Healthy","协助我们完善系统" 25 | "Interface Language","语言界面" 26 | "Items %s to %s of %s total","%s至%s之%s件商品" 27 | "Next Page","下一页" 28 | "Next month (hold for menu)","下个月(点击鼠标直到菜单出现)" 29 | "Next year (hold for menu)","明年(点击鼠标直到菜单出现)" 30 | "Page:","页:" 31 | "Prev. month (hold for menu)","上个月(点击鼠标直到菜单出现)" 32 | "Prev. year (hold for menu)","前年(点击鼠标直到菜单出现)" 33 | "Previous Page","上一页" 34 | "Redirecting...","跳转至..." 35 | "Report All Bugs","报告所有错误。" 36 | "Select Store","选择商店" 37 | "Select date","选择日期" 38 | "Show","显示" 39 | "Skip to Footer","跳到页尾" 40 | "Skip to Left Column","转到左栏" 41 | "Skip to Main Content","转到内容" 42 | "Skip to Right Column","转到右栏" 43 | "This is a demo store. Any orders placed through this store will not be honored or fulfilled.","这是演示商店,所有的订单将不受理。" 44 | "Time selection:","时间选择:" 45 | "Time:","时间:" 46 | "Welcome, %s!","欢迎%s!" 47 | "You're currently on:","当前登录帐号:" 48 | "Your Language","您的语言" 49 | "Your Language:","您的语言:" 50 | "per page","件" 51 | "Your Language:","您的语言:" 52 | "(ver. %s)","(ver. %s)" 53 | "Help Us to Keep Magento Healthy","保持更新" 54 | "Report All Bugs","错误报告" 55 | "Your Language","您的语言" 56 | 57 | "Submit","提交" 58 | "Cancel","取消" 59 | "WYSIWYG Editor","所见即所得编辑器" 60 | "-- Please Select --","-- 请选择 --" 61 | "--Please Select--","--请选择--" -------------------------------------------------------------------------------- /wysiwyg/themes/advanced/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.advanced_dlg',{"link_list":"\u94fe\u63a5\u5217\u8868","link_is_external":"\u60a8\u8f93\u5165\u7684 URL \u662f\u4e00\u4e2a\u5916\u90e8\u8d85\u94fe\u63a5\uff0c\u662f\u5426\u8981\u52a0\u4e0a http:// \uff1f","link_is_email":"\u60a8\u8f93\u5165\u7684\u662f\u7535\u5b50\u90ae\u4ef6\u5730\u5740,\u662f\u5426\u9700\u8981\u52a0 mailto:\uff1f","link_titlefield":"\u6807\u9898","link_target_blank":"\u5728\u65b0\u7a97\u53e3\u6253\u5f00\u94fe\u63a5","link_target_same":"\u5728\u540c\u4e00\u7a97\u53e3\u6253\u5f00\u94fe\u63a5","link_target":"\u94fe\u63a5\u76ee\u6807","link_url":"\u94fe\u63a5URL","link_title":"\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5","image_align_right":"\u9760\u53f3","image_align_left":"\u9760\u5de6","image_align_textbottom":"\u6587\u5b57\u5e95\u90e8","image_align_texttop":"\u6587\u5b57\u9876\u90e8","image_align_bottom":"\u5e95\u90e8","image_align_middle":"\u4e2d\u95f4","image_align_top":"\u9876\u90e8","image_align_baseline":"\u57fa\u7ebf","image_align":"\u5bf9\u9f50\u65b9\u5f0f","image_hspace":"\u6c34\u5e73\u95f4\u8ddd","image_vspace":"\u5782\u76f4\u95f4\u8ddd","image_dimensions":"\u5c3a\u5bf8","image_alt":"\u56fe\u7247\u63cf\u8ff0","image_list":"\u56fe\u7247\u5217\u8868","image_border":"\u8fb9\u6846","image_src":"\u56fe\u7247URL","image_title":"\u63d2\u5165/\u7f16\u8f91\u56fe\u7247","charmap_title":"\u9009\u62e9\u7279\u6b8a\u5b57\u7b26","colorpicker_name":"\u540d\u79f0:","colorpicker_color":"\u989c\u8272:","colorpicker_named_title":"\u5e38\u7528\u989c\u8272","colorpicker_named_tab":"\u5e38\u7528","colorpicker_palette_title":"WEB\u989c\u8272","colorpicker_palette_tab":"\u5b89\u5168\u8272","colorpicker_picker_title":"\u62fe\u8272\u5668","colorpicker_picker_tab":"\u62fe\u8272\u5668","colorpicker_title":"\u9009\u62e9\u4e00\u79cd\u989c\u8272","code_wordwrap":"\u81ea\u52a8\u6362\u884c","code_title":"HTML\u6e90\u7801\u7f16\u8f91\u5668","anchor_name":"\u4e66\u7b7e\u540d\u79f0","anchor_title":"\u63d2\u5165/\u7f16\u8f91\u4e66\u7b7e","about_loaded":"\u5df2\u542f\u7528\u7684\u63d2\u4ef6","about_version":"\u7248\u672c","about_author":"\u4f5c\u8005","about_plugin":"\u63d2\u4ef6","about_plugins":"\u63d2\u4ef6","about_license":"\u6388\u6743","about_help":"\u5e2e\u52a9","about_general":"\u5173\u4e8e","about_title":"\u5173\u4e8eTinyMCE","charmap_usage":"\u4f7f\u7528\u5de6\u53f3\u952e\u8df3\u8f6c","anchor_invalid":"\u8bf7\u6307\u5b9a\u4e00\u4e2a\u6709\u6548\u7684\u4e66\u7b7e\u7684\u540d\u79f0","accessibility_help":"\u65e0\u969c\u788d\u8bbe\u8ba1\u8bf4\u660e","accessibility_usage_title":"\u901a\u7528","invalid_color_value":"\u65e0\u6548\u989c\u8272\u503c"}); -------------------------------------------------------------------------------- /wysiwyg/themes/advanced/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advanced_dlg',{"link_list":"\u94fe\u63a5\u5217\u8868","link_is_external":"\u60a8\u8f93\u5165\u7684URL\u662f\u4e00\u4e2a\u5916\u90e8\u94fe\u63a5\uff0c\u662f\u5426\u8981\u52a0\u4e0a\"http://\"\u524d\u7f00\uff1f","link_is_email":"\u8f93\u5165URL\u662f\u7535\u5b50\u90ae\u4ef6\u5730\u5740\uff0c\u662f\u5426\u9700\u8981\u52a0\"mailto:\"\u524d\u7f00\uff1f","link_titlefield":"\u6807\u9898","link_target_blank":"\u5728\u65b0\u7a97\u53e3\u6253\u5f00","link_target_same":"\u5728\u5f53\u524d\u7a97\u53e3\u6253\u5f00","link_target":"\u6253\u5f00\u65b9\u5f0f","link_url":"\u8d85\u94fe\u63a5URL","link_title":"\u63d2\u5165/\u7f16\u8f91 \u8d85\u94fe\u63a5","image_align_right":"\u53f3\u5bf9\u9f50","image_align_left":"\u5de6\u5bf9\u9f50","image_align_textbottom":"\u6587\u5b57\u4e0b\u65b9","image_align_texttop":"\u6587\u5b57\u4e0a\u65b9","image_align_bottom":"\u5e95\u7aef\u5bf9\u9f50","image_align_middle":"\u5c45\u4e2d\u5bf9\u9f50","image_align_top":"\u9876\u7aef\u5bf9\u9f50","image_align_baseline":"\u5e95\u7ebf","image_align":"\u5bf9\u9f50","image_hspace":"\u6c34\u5e73\u8ddd\u79bb","image_vspace":"\u5782\u76f4\u8ddd\u79bb","image_dimensions":"\u5c3a\u5bf8","image_alt":"\u56fe\u7247\u63cf\u8ff0","image_list":"\u56fe\u7247\u5217\u8868","image_border":"\u8fb9\u6846","image_src":"\u56fe\u7247\u94fe\u63a5","image_title":"\u63d2\u5165/\u7f16\u8f91 \u56fe\u7247","charmap_title":"\u9009\u62e9\u81ea\u5b9a\u4e49\u7b26\u53f7","colorpicker_name":"\u540d\u79f0\uff1a","colorpicker_color":"\u989c\u8272\uff1a","colorpicker_named_title":"\u547d\u540d\u989c\u8272","colorpicker_named_tab":"\u547d\u540d\u989c\u8272","colorpicker_palette_title":"\u8c03\u8272\u677f\u989c\u8272","colorpicker_palette_tab":"\u8c03\u8272\u677f","colorpicker_picker_title":"\u989c\u8272\u62fe\u53d6","colorpicker_picker_tab":"\u62fe\u53d6","colorpicker_title":"\u9009\u62e9\u989c\u8272","code_wordwrap":"\u81ea\u52a8\u6362\u884c","code_title":"HTML\u4ee3\u7801\u7f16\u8f91\u5668","anchor_name":"\u951a\u540d\u79f0","anchor_title":"\u63d2\u5165/\u7f16\u8f91 \u951a","about_loaded":"\u5df2\u8f7d\u5165\u7684\u63d2\u4ef6","about_version":"\u7248\u672c","about_author":"\u4f5c\u8005","about_plugin":"\u63d2\u4ef6","about_plugins":"\u63d2\u4ef6","about_license":"\u8bb8\u53ef\u534f\u8bae","about_help":"\u5e2e\u52a9","about_general":"\u5173\u4e8e","about_title":"\u5173\u4e8eTinyMCE","anchor_invalid":"\u8bf7\u6307\u5b9a\u4e00\u4e2a\u6709\u6548\u7684\u951a\u540d\u79f0\u3002","charmap_usage":"Use left and right arrows to navigate.","accessibility_help":"Accessibility Help","accessibility_usage_title":"General Usage","invalid_color_value":"Invalid color value"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Index.csv: -------------------------------------------------------------------------------- 1 | "%s Index process is working now. Please try run this process later.","%s 索引进程正在运行.请稍后再试." 2 | "%s index was rebuilt.","%s 索引已重建." 3 | "%s' Index Process Information","%s' 索引进程信息" 4 | "Action","操作" 5 | "Cannot initialize the indexer process.","无法初始化索引进程." 6 | "Change Index Mode","改变索引模式 " 7 | "Description","描述" 8 | "Disable","禁用" 9 | "Enable","可用" 10 | "General","一般" 11 | "Index","索引的描述 " 12 | "Index Description","索引描述 " 13 | "Index Management","索引管理" 14 | "Index Mode","索引模式" 15 | "Index Name","索引名称" 16 | "Index mode","索引模式" 17 | "Indexer code is not defined.","未定义索引代码" 18 | "Indexer model is not defined.","未定义索引模型" 19 | "Indexer model should extend Mage_Index_Model_Indexer_Abstract.","索引器的模型应该扩展于类Mage_Index_Model_Indexer_Abstract." 20 | "Last Run","上次运行 " 21 | "Manual Update","手动更新 " 22 | "Mode","模式" 23 | "Never","从不" 24 | "One or more of the Indexes are not up to date:","索引需要更新:" 25 | "Pending Events","挂起的事件 " 26 | "Please select Index(es)","请选择索引" 27 | "Please select Indexes","请选择索引" 28 | "Process Information","进程信息" 29 | "Processing","处理中" 30 | "Ready","准备" 31 | "Refresh","刷新" 32 | "Reindex Data","重建索引数据" 33 | "Reindex Required","需要重建索引" 34 | "Status","状态" 35 | "System","系统" 36 | "The index has been saved.","已保存索引." 37 | "There was a problem with reindexing process.","重建索引出错." 38 | "There was a problem with saving process.","保存进程出错." 39 | "Total of %d index(es) have changed index mode.","总共%d个索引已经改变索模型." 40 | "Total of %d index(es) have reindexed data.","总共%d个索引已经重建索引数据." 41 | "Update on Save","在保存时更新 " 42 | 43 | 44 | 45 | "Click here to go to Index Management and rebuild required indexes.","点击 索引管理 重建索引。" 46 | "Click here to go to Cache Management and refresh cache types.","点击 缓存管理 立刻刷新。" 47 | "One or more of the Cache Types are invalidated:","以下缓存需要刷新:" 48 | 49 | 50 | "Update Required","必须更新" 51 | "Index product attributes for layered navigation building","索引导航中的商品属性" 52 | "Product Prices","产品价格" 53 | "Index product prices","索引价格" 54 | "Catalog URL Rewrites","路径重写" 55 | "Index product and categories URL rewrites","索引商品和分类的路径重写" 56 | "Product Flat Data","产品数据" 57 | "Reorganize EAV product structure to flat structure","重新更新优化商品数据" 58 | "Category Flat Data","分类数据" 59 | "Reorganize EAV category structure to flat structure","重新更新优化分类数据" 60 | "Indexed category/products association","索引产品和分类的关联关系" 61 | "Catalog Search Index","索引商品搜索数据" 62 | "Rebuild Catalog product fulltext search index","重建商品全文搜索" 63 | "Stock Status","库存状态" 64 | "Index Product Stock Status","索引商品库存状态" 65 | "Tag Aggregation Data","标签数据" 66 | "Rebuild Tag aggregation data","重建标签数据" -------------------------------------------------------------------------------- /wysiwyg/themes/advanced/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.advanced_dlg',{"link_list":"\u94fe\u63a5\u6e05\u5355","link_is_external":"\u60a8\u6240\u8f93\u5165\u7684URL\u4f3c\u4e4e\u4e3a\u5916\u90e8\u94fe\u63a5\uff0c\u662f\u5426\u9700\u8981\u52a0\u4e0ahttp://\u524d\u7f00\uff1f","link_is_email":"\u60a8\u8f93\u5165\u7684URL\u4f3c\u4e4e\u662f\u7535\u5b50\u90ae\u4ef6\u4f4d\u5740\uff0c\u662f\u5426\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\uff1f","link_titlefield":"\u6807\u9898","link_target_blank":"\u5728\u65b0\u7a97\u53e3\u6253\u5f00\u94fe\u63a5","link_target_same":"\u5728\u5f53\u524d\u7a97\u53e3\u6253\u5f00\u94fe\u63a5","link_target":"\u94fe\u63a5\u76ee\u6807","link_url":"\u94fe\u63a5URL","link_title":"\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5","image_align_right":"\u9760\u53f3","image_align_left":"\u9760\u5de6","image_align_textbottom":"\u6587\u5b57\u4e0b\u65b9","image_align_texttop":"\u6587\u5b57\u4e0a\u65b9","image_align_bottom":"\u9760\u4e0b","image_align_middle":"\u5782\u76f4\u5c45\u4e2d","image_align_top":"\u9760\u4e0a","image_align_baseline":"\u57fa\u51c6\u7ebf","image_align":"\u5bf9\u9f50\u65b9\u5f0f","image_hspace":"\u6c34\u5e73\u95f4\u8ddd","image_vspace":"\u5782\u76f4\u95f4\u8ddd","image_dimensions":"\u5c3a\u5bf8","image_alt":"\u56fe\u7247\u8bf4\u660e","image_list":"\u56fe\u7247\u6e05\u5355","image_border":"\u8fb9\u6846","image_src":"\u56fe\u7247URL","image_title":"\u63d2\u5165/\u7f16\u8f91\u56fe\u7247","charmap_title":"\u63d2\u5165\u7279\u6b8a\u7b26\u53f7","colorpicker_name":"\u540d\u79f0\uff1a","colorpicker_color":"\u989c\u8272\uff1a","colorpicker_named_title":"\u547d\u540d\u7684\u989c\u8272","colorpicker_named_tab":"\u547d\u540d\u7684","colorpicker_palette_title":"WEB\u989c\u8272","colorpicker_palette_tab":"\u5b89\u5168\u8272","colorpicker_picker_title":"\u8c03\u8272\u76d8","colorpicker_picker_tab":"\u62fe\u53d6\u5668","colorpicker_title":"\u9009\u62e9\u989c\u8272","code_wordwrap":"\u81ea\u52a8\u6362\u884c","code_title":"HTML\u7f16\u8f91\u5668","anchor_name":"\u951a\u70b9\u540d\u79f0","anchor_title":"\u63d2\u5165/\u7f16\u8f91\u951a\u70b9","about_loaded":"\u88c5\u8f7d\u7684\u63d2\u4ef6","about_version":"\u7248\u672c","about_author":"\u4f5c\u8005","about_plugin":"\u63d2\u4ef6","about_plugins":"\u63d2\u4ef6","about_license":"\u6388\u6743","about_help":"\u5e2e\u52a9","about_general":"\u5173\u4e8e","about_title":"\u5173\u4e8eTinyMCE","charmap_usage":"\u4f7f\u7528\u5de6\u53f3\u65b9\u5411\u952e\u5207\u6362\u3002","anchor_invalid":"\u8bf7\u8f93\u5165\u6709\u6548\u7684\u951a\u70b9\u540d\u79f0\u3002","accessibility_help":"\u534f\u52a9\u5de5\u5177\u8bf4\u660e","accessibility_usage_title":"\u666e\u901a\u7528\u9014","invalid_color_value":"\u9519\u8bef\u7684\u989c\u8272\u503c"}); -------------------------------------------------------------------------------- /Sales/etc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 1.0.0 29 | 30 | 31 | 32 | 33 | 34 | 35 | CosmoCommerce_Sales_Block_Order_History 36 | CosmoCommerce_Sales_Block_Order_Recent 37 | 38 | 39 | 40 | 41 | 42 | 43 | CosmoCommerce_Sales_Model_Order 44 | CosmoCommerce_Sales_Model_Order_Config 45 | 46 | 47 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | Mage_Sales.csv 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | CosmoCommerce_Sales 71 | 72 | 73 | 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/order_update_guest.html: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 16 | 17 |
18 | 19 | 20 | 43 | 44 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 37 | 38 | 39 | 40 | 41 |
{{var logo_alt}}
29 |

亲爱的 {{htmlescape var=$order.getCustomerName()}},

30 |

31 | 您的订单 # {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}} 32 |

33 |

{{var comment}}

34 |

35 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。

36 |

谢谢,{{var store.getFrontendName()}}

42 |
45 |
46 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/invoice_update_guest.html: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 16 | 17 |
18 | 19 | 20 | 44 | 45 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 38 | 39 | 40 | 41 | 42 |
{{var logo_alt}}
29 |

亲爱的 {{htmlescape var=$billing.getName()}},

30 |

31 | 您的订单 {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}}。 32 |

33 |

{{var comment}}

34 |

35 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。 36 |

37 |

谢谢,{{var store.getFrontendName()}}

43 |
46 |
-------------------------------------------------------------------------------- /locale/zh_CN/Mage_Downloadable.csv: -------------------------------------------------------------------------------- 1 | "Add New Row","增添新行" 2 | "An error occurred while saving the file(s).","保存文件时出错。" 3 | "Availability: In stock.","库存:有货。" 4 | "Availability: Out of stock.","库存:无货。" 5 | "Back","返回" 6 | "Can't connect to remote host, error: %s","无法链接远程主机,错误: %s" 7 | "Canceled","已取消" 8 | "Date","日期" 9 | "Default Link Title","默认连接标题" 10 | "Default Maximum Number of Downloads","设默认值为最多下载次数" 11 | "Default Sample Title","默认样本标题" 12 | "Disable Guest Checkout if cart contains downloadable items","购物车中有可下载商品时,禁用访客结账" 13 | "Downloadable Information","下载信息" 14 | "Downloadable Product","下载商品" 15 | "Downloadable Product Options","下载商品选项" 16 | "Downloadable product Section","下载商品单元" 17 | "Excl. Tax","不含税" 18 | "File","文件" 19 | "File does not exists","文件不存在" 20 | "From:","从:" 21 | "Gift Message","礼物内容" 22 | "Go to My Downloadable Products","到我的下载商品" 23 | "Guest checkout will only work with shareable","访客结账仅与可共享一起启用" 24 | "Incl. Tax","含税" 25 | "Invalid download URL host","下载 URL 主机不正确" 26 | "Invalid download URL scheme","下载 URL 模式不正确" 27 | "Invalid download link type","下载链接类型不正确" 28 | "Invoiced","已开发票" 29 | "Link has expired.","Link has expired." 30 | "Link is not available.","链接不可用。" 31 | "Links can be purchased separately","可购买单个链接" 32 | "Max. Downloads","最多下载次数" 33 | "Message:","消息:" 34 | "My Downloadable Products","我的下载商品" 35 | "Open Links in New Window","打开连接到新窗口" 36 | "Order #","订单 #" 37 | "Order Item Status to enable Downloads","Order Item Status to enable Downloads" 38 | "Ordered","已订购" 39 | "Pending","待审" 40 | "Please log in to download your product.","请登录以便下载您购买的商品。" 41 | "Please set resource file and link type","请设置源文件和练级类型" 42 | "Please specify product link(s).","请指定商品链接。" 43 | "Price","价格" 44 | "Refunded","已退款" 45 | "Remaining Downloads","剩于的下载次数" 46 | "Remove item","删除商品" 47 | "Requested link doesn't exist.","Requested link doesn't exist." 48 | "Sample","样本" 49 | "Shareable","可共享" 50 | "Shipped","已发货" 51 | "Sorry, the was an error getting requested content. Please contact store owner.","抱歉,获取请求内容时出错。请与店主联系。" 52 | "Sorry, there was an error getting requested content","Sorry, there was an error getting requested content" 53 | "Sorry, there was an error getting requested content. Please contact store owner.","抱歉,获取请求内容时出错。请与店主联系。" 54 | "Sort Order","排序" 55 | "Start Download","开始下载" 56 | "Status","状态" 57 | "Title","标题" 58 | "To:","到:" 59 | "U","U" 60 | "Unlimited","无限" 61 | "View Order","查看订单" 62 | "You have not purchased any downloadable products yet.","您尚未购买然后可下载商品。" 63 | "attachment","附件" 64 | "download","下载" 65 | "inline","在线" 66 | "sample","样本" 67 | "My Downloadable Products","My Downloadable Products" 68 | "You have not purchased any downloadable products yet.","You have not purchased any downloadable products yet." 69 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/admin_password_reset_confirmation.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 14 | 15 | 16 |
17 | 18 | 19 | 38 | 39 |
20 | 21 | 22 | 25 | 26 | 27 | 33 | 34 | 35 | 36 |
23 | {{var logo_alt}} 24 |
28 |

亲爱的 {{htmlescape var=$user.name}},

29 |

您提交了重置密码的请求。

30 |

请点击以下链接重置密码: {{store url="adminhtml/index/resetpassword/" _query_id=$user.id _query_token=$user.rp_token}}

31 |

如果该链接无法点击,请将链接复制至浏览器地址栏打开。

32 |

谢谢您的支持,{{var store.getFrontendName()}}

37 |
40 |
41 | 42 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/shipment_update_guest.html: -------------------------------------------------------------------------------- 1 | 2 | 12 | 15 | 16 | 17 |
18 | 19 | 20 | 44 | 45 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 38 | 39 | 40 | 41 | 42 |
{{var logo_alt}}
29 |

亲爱的 {{htmlescape var=$order.getCustomerName()}},

30 |

31 | 您的订单 # {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}} 32 |

33 |

{{var comment}}

34 |

35 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。 36 |

37 |

谢谢,{{var store.getFrontendName()}}

43 |
46 |
47 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/account_password_reset_confirmation.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 13 | 14 | 15 |
16 | 17 | 18 | 38 | 39 |
19 | 20 | 21 | 24 | 25 | 26 | 32 | 33 | 34 | 35 | 36 |
22 | {{var logo_alt}} 23 |
27 |

亲爱的 {{htmlescape var=$customer.name}},

28 |

您提交了重置密码的请求。

29 |

请点击以下链接重置密码: {{store url="customer/account/resetpassword/" _query_id=$customer.id _query_token=$customer.rp_token}}

30 |

如果该链接无法点击,请将链接复制至浏览器地址栏打开。

31 |

谢谢您的支持,{{var store.getFrontendName()}}

37 |
40 |
41 | 42 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/creditmemo_update_guest.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | 16 | 17 | 18 |
19 | 20 | 21 | 45 | 46 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 39 | 40 | 41 | 42 | 43 |
{{var logo_alt}}
30 |

亲爱的 {{htmlescape var=$billing.getName()}},

31 |

32 | 您的订单 {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}} 33 |

34 |

{{var comment}}

35 |

36 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}. 37 |

38 |

谢谢,{{var store.getFrontendName()}}

44 |
47 |
48 | -------------------------------------------------------------------------------- /wysiwyg/plugins/table/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.table_dlg',{"rules_border":"\u8fb9\u6846","rules_box":"\u6846","rules_vsides":"\u5782\u76f4","rules_rhs":"\u53f3\u8fb9","rules_lhs":"\u5de6\u8fb9","rules_hsides":"\u6c34\u5e73","rules_below":"\u4e0b","rules_above":"\u4e0a","rules_void":"\u7a7a",rules:"\u89c4\u5219","frame_all":"\u5168\u90e8","frame_cols":"\u5217","frame_rows":"\u884c","frame_groups":"\u5206\u7ec4","frame_none":"\u65e0",frame:"\u6846\u67b6",caption:"\u683c\u6807\u9898","missing_scope":"\u60a8\u6ca1\u6709\u6307\u5b9a\u8868\u683c\u7684\u6807\u9898\u5355\u5143\uff0c\u5982\u679c\u4e0d\u8bbe\u7f6e\uff0c\u53ef\u80fd\u4f1a\u4f7f\u7528\u6237\u96be\u4ee5\u7406\u89e3\u60a8\u7684\u8868\u683c\u7684\u5185\u5bb9\u3002\u60a8\u8981\u7ee7\u7eed\u5417\uff1f","cell_limit":"\u5df2\u7ecf\u8d85\u51fa\u6700\u5927\u5355\u5143\u683c\u6570{$cells}\u3002","row_limit":"\u5df2\u7ecf\u8d85\u51fa\u6700\u5927\u884c\u6570{$rows}\u3002","col_limit":"\u5df2\u7ecf\u8d85\u51fa\u6700\u5927\u5217\u6570{$cols}\u3002",colgroup:"\u5217\u5206\u7ec4",rowgroup:"\u884c\u5206\u7ec4",scope:"\u8303\u56f4",tfoot:"\u8868\u5c3e",tbody:"\u8868\u683c\u4e3b\u4f53",thead:"\u8868\u5934","row_all":"\u66f4\u65b0\u8868\u683c\u7684\u6240\u6709\u884c","row_even":"\u66f4\u65b0\u8868\u683c\u7684\u5076\u6570\u884c","row_odd":"\u66f4\u65b0\u8868\u683c\u7684\u5947\u6570\u884c","row_row":"\u66f4\u65b0\u5f53\u524d\u884c","cell_all":"\u66f4\u65b0\u6240\u6709\u5355\u5143\u683c","cell_row":"\u66f4\u65b0\u5f53\u524d\u884c\u7684\u5355\u5143\u683c","cell_cell":"\u66f4\u65b0\u5f53\u524d\u5355\u5143\u683c",th:"\u8868\u5934",td:"\u5185\u5bb9",summary:"\u6458\u8981",bgimage:"\u80cc\u666f\u56fe\u7247",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",mime:"\u76ee\u6807MIME\u7c7b\u578b",langcode:"\u8bed\u8a00\u7f16\u7801",langdir:"\u8bed\u8a00\u4e66\u5199\u65b9\u5411",style:"\u6837\u5f0f",id:"ID","merge_cells_title":"\u5408\u5e76\u5355\u5143\u683c",bgcolor:"\u80cc\u666f\u989c\u8272",bordercolor:"\u8fb9\u6846\u989c\u8272","align_bottom":"\u9760\u4e0b","align_top":"\u9760\u4e0a",valign:"\u5782\u76f4\u5bf9\u9f50","cell_type":"\u5355\u5143\u683c\u7c7b\u578b","cell_title":"\u5355\u5143\u683c\u5c5e\u6027","row_title":"\u884c\u5c5e\u6027","align_middle":"\u5c45\u4e2d","align_right":"\u53f3\u5bf9\u9f50","align_left":"\u5de6\u5bf9\u9f50","align_default":"\u9ed8\u8ba4",align:"\u5bf9\u9f50",border:"\u8fb9\u6846",cellpadding:"\u5355\u5143\u683c\u8fb9\u8ddd",cellspacing:"\u5355\u5143\u683c\u95f4\u8ddd",rows:"\u884c\u6570",cols:"\u5217\u6570",height:"\u9ad8\u5ea6",width:"\u5bbd\u5ea6",title:"\u63d2\u5165/\u7f16\u8f91 \u8868\u683c",rowtype:"\u884c\u6240\u5728\u7684\u8868\u683c\u4f4d\u7f6e","advanced_props":"\u9ad8\u7ea7\u5c5e\u6027","general_props":"\u666e\u901a\u5c5e\u6027","advanced_tab":"\u9ad8\u7ea7","general_tab":"\u666e\u901a","cell_col":"\u66f4\u65b0\u8be5\u5217\u5168\u90e8\u5355\u5143\u683c"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/fullpage/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.fullpage_dlg',{title:"\u6587\u4ef6\u5c5e\u6027","meta_tab":"\u666e\u901a","appearance_tab":"\u5916\u89c2","advanced_tab":"\u9ad8\u7ea7","meta_props":"Meta\u4fe1\u606f",langprops:"\u8bed\u8a00\u548c\u7f16\u7801","meta_title":"\u6807\u9898","meta_keywords":"Meta \u5173\u952e\u5b57","meta_description":"Meta \u63cf\u8ff0","meta_robots":"\u641c\u7d22\u673a\u5668\u4eba",doctypes:"\u6587\u6863\u7c7b\u578b",langcode:"\u8bed\u8a00\u7f16\u7801",langdir:"\u8bed\u8a00\u6587\u5b57\u65b9\u5411",ltr:"\u4ece\u5de6\u5230\u53f3",rtl:"\u4ece\u53f3\u5230\u5de6","xml_pi":"XML\u7533\u660e",encoding:"\u5b57\u7b26\u7f16\u7801","appearance_bgprops":"\u80cc\u666f\u5c5e\u6027","appearance_marginprops":"\u9875\u8fb9\u8ddd","appearance_linkprops":"\u8d85\u94fe\u63a5\u989c\u8272","appearance_textprops":"\u6587\u672c\u5c5e\u6027",bgcolor:"\u80cc\u666f\u989c\u8272",bgimage:"\u80cc\u666f\u56fe\u7247","left_margin":"\u5de6\u8fb9\u8ddd","right_margin":"\u53f3\u8fb9\u8ddd","top_margin":"\u4e0a\u8fb9\u8ddd","bottom_margin":"\u4e0b\u8fb9\u8ddd","text_color":"\u6587\u672c\u989c\u8272","font_size":"\u5b57\u4f53\u5927\u5c0f","font_face":"\u5b57\u4f53","link_color":"\u8d85\u94fe\u63a5\u989c\u8272","hover_color":"Hover\u989c\u8272","visited_color":"Visited\u989c\u8272","active_color":"Active\u989c\u8272",textcolor:"\u989c\u8272",fontsize:"\u5b57\u4f53\u5927\u5c0f",fontface:"\u5b57\u4f53","meta_index_follow":"\u7d22\u5f15\u5e76\u8fde\u7ed3","meta_index_nofollow":"\u7d22\u5f15\u4f46\u4e0d\u8fde\u7ed3","meta_noindex_follow":"\u4e0d\u7d22\u5f15\u4f46\u8fde\u7ed3","meta_noindex_nofollow":"\u4e0d\u7d22\u5f15\u4e5f\u4e0d\u8fde\u7ed3","appearance_style":"\u6837\u5f0f\u8868\u4e0e\u6837\u5f0f\u5c5e\u6027",stylesheet:"\u6837\u5f0f\u8868",style:"\u6837\u5f0f",author:"\u4f5c\u8005",copyright:"\u7248\u6743\u58f0\u660e",add:"\u6dfb\u52a0\u5143\u7d20",remove:"\u5220\u9664\u9009\u62e9\u5143\u7d20",moveup:"\u4e0a\u79fb\u9009\u62e9\u5143\u7d20",movedown:"\u4e0b\u79fb\u9009\u62e9\u5143\u7d20","head_elements":"Head\u5143\u7d20",info:"\u4fe1\u606f","add_title":"Title\u5143\u7d20","add_meta":"Meta\u5143\u7d20","add_script":"Script\u5143\u7d20","add_style":"Style\u5143\u7d20","add_link":"Link\u5143\u7d20","add_base":"Base\u5143\u7d20","add_comment":"\u6ce8\u91ca","title_element":"Title\u5143\u7d20","script_element":"Script\u5143\u7d20","style_element":"Style\u5143\u7d20","base_element":"Base\u5143\u7d20","link_element":"Link\u5143\u7d20","meta_element":"Meta\u5143\u7d20","comment_element":"\u6ce8\u91ca",src:"\u5730\u5740",language:"\u8bed\u8a00",href:"Href",target:"\u76ee\u6807",type:"\u7c7b\u578b",charset:"\u5b57\u7b26\u96c6",defer:"Defer",media:"\u5a92\u4f53",properties:"\u5c5e\u6027",name:"\u540d\u79f0",value:"\u503c",content:"\u5185\u5bb9",rel:"Rel",rev:"Rev",hreflang:"Href\u8bed\u8a00","general_props":"\u5e38\u89c4","advanced_props":"\u9ad8\u7ea7"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/fullpage/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.fullpage_dlg',{title:"\u6587\u4ef6\u5c5e\u6027","meta_tab":"\u666e\u901a","appearance_tab":"\u5916\u89c2","advanced_tab":"\u9ad8\u7ea7","meta_props":"Meta\u4fe1\u606f",langprops:"\u8bed\u8a00\u548c\u7f16\u7801","meta_title":"\u6807\u9898","meta_keywords":"\u5173\u952e\u5b57","meta_description":"\u63cf\u8ff0","meta_robots":"Robots",doctypes:"DocType",langcode:"\u8bed\u8a00\u4ee3\u7801",langdir:"\u6587\u5b57\u4e66\u5199\u65b9\u5411",ltr:"\u4ece\u5de6\u5230\u53f3",rtl:"\u4ece\u53f3\u5230\u5de6","xml_pi":"XML\u7533\u660e",encoding:"\u5b57\u7b26\u7f16\u7801","appearance_bgprops":"\u80cc\u666f\u989c\u8272","appearance_marginprops":"\u5916\u8fb9\u8ddd","appearance_linkprops":"\u94fe\u63a5\u989c\u8272","appearance_textprops":"\u6587\u5b57\u5c5e\u6027",bgcolor:"\u80cc\u666f\u989c\u8272",bgimage:"\u80cc\u666f\u56fe\u7247","left_margin":"\u5de6\u8fb9\u8ddd","right_margin":"\u53f3\u8fb9\u8ddd","top_margin":"\u4e0a\u8fb9\u8ddd","bottom_margin":"\u4e0b\u8fb9\u8ddd","text_color":"\u5b57\u4f53\u989c\u8272","font_size":"\u5b57\u4f53\u5927\u5c0f","font_face":"\u5b57\u4f53","link_color":"\u94fe\u63a5\u989c\u8272","hover_color":"\u9f20\u6807\u79fb\u5165\u540e\u94fe\u63a5\u989c\u8272","visited_color":"\u8bbf\u95ee\u8fc7\u7684\u94fe\u63a5\u989c\u8272","active_color":"\u6fc0\u6d3b\u7684\u94fe\u63a5\u989c\u8272",textcolor:"\u5b57\u4f53\u989c\u8272",fontsize:"\u5b57\u4f53\u5927\u5c0f",fontface:"\u5b57\u4f53","meta_index_follow":"\u7d22\u5f15\u5e76\u94fe\u63a5","meta_index_nofollow":"\u7d22\u5f15\u4f46\u4e0d\u94fe\u63a5","meta_noindex_follow":"\u4e0d\u7d22\u5f15\u4f46\u94fe\u63a5","meta_noindex_nofollow":"\u4e0d\u7d22\u5f15\u4e5f\u4e0d\u94fe\u63a5","appearance_style":"\u6837\u5f0f\u8868\u4e0e\u6837\u5f0f\u5c5e\u6027",stylesheet:"\u6837\u5f0f\u8868",style:"\u6837\u5f0f",author:"\u4f5c\u8005",copyright:"\u7248\u6743\u7533\u660e",add:"\u65b0\u589e\u5143\u7d20",remove:"\u5220\u9664\u9009\u62e9\u7684\u5143\u7d20",moveup:"\u4e0a\u79fb\u9009\u62e9\u7684\u5143\u7d20",movedown:"\u4e0b\u79fb\u9009\u62e9\u7684\u5143\u7d20","head_elements":"head\u5143\u7d20",info:"\u4fe1\u606f","add_title":"title\u5143\u7d20","add_meta":"meta\u5143\u7d20","add_script":"script\u5143\u7d20","add_style":"style\u5143\u7d20","add_link":"link\u5143\u7d20","add_base":"base\u5143\u7d20","add_comment":"\u6ce8\u91ca","title_element":"title\u5143\u7d20","script_element":"script\u5143\u7d20","style_element":"style\u5143\u7d20","base_element":"base\u5143\u7d20","link_element":"link\u5143\u7d20","meta_element":"meta\u5143\u7d20","comment_element":"\u6ce8\u91ca",src:"src",language:"\u8bed\u8a00",href:"href",target:"\u76ee\u6807",type:"\u7c7b\u578b",charset:"\u5b57\u5143",defer:"Defer",media:"\u591a\u5a92\u4f53",properties:"\u5c5e\u6027",name:"\u540d\u79f0",value:"\u503c",content:"\u5185\u5bb9",rel:"rel",rev:"rev",hreflang:"href lang","general_props":"\u666e\u901a","advanced_props":"\u9ad8\u7ea7"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Review.csv: -------------------------------------------------------------------------------- 1 | "%d Review(s)","%d个评论" 2 | "%s Review(s)","%s个评论" 3 | "(Posted on %s)","(评论日期 %s)" 4 | "1 star","1星" 5 | "2 stars","2星" 6 | "3 stars","3星" 7 | "4 stars","4星" 8 | "5 stars","5星" 9 | "Add New Review","发表新的评论" 10 | "Add Your Review","发表评论" 11 | "Administrator","管理员" 12 | "All Reviews","所有评论" 13 | "All reviews of customer `%s`","客户`%s`的所有评论" 14 | "Allow guests to write reviews","允许未注册用户发表评论" 15 | "Allow Guests to Write Reviews","允许未注册用户发表评论" 16 | "Are you sure you want to do this?","您确认要这么做吗?" 17 | "Are you sure?","您确认吗?" 18 | "Average Customer Rating","平均客户评级" 19 | "Average Customer Rating:","平均客户评级:" 20 | "Back","返回" 21 | "Back to Main Product Info","返回商品页" 22 | "Back to My Reviews","返回我的评论" 23 | "Back to Product Reviews","返回商品评论" 24 | "Be the first to review this product","第一个评论此商品" 25 | "Created On","创建日期" 26 | "Customer","顾客" 27 | "Customer Reviews","顾客评论" 28 | "Delete","删除" 29 | "Delete Review","删除评论" 30 | "Detailed Rating","评极详情" 31 | "Edit Review '%s'","修改'%s'的评级" 32 | "Guest","游客" 33 | "How do you rate this product?","您对此商品的评级是?" 34 | "ID","编号" 35 | "Manage Ratings","评级管理" 36 | "My Product Reviews","我的商品评论" 37 | "My Recent Reviews","我最近的评论" 38 | "Name","名字" 39 | "Name In Store","在商店的名字" 40 | "New Review","新评论" 41 | "Nickname","昵称" 42 | "Pending Reviews","待审评论" 43 | "Pending reviews","待审评论" 44 | "Pending reviews of customer `%s`","客户`%s`的待审评论" 45 | "Please select a product","请选择商品" 46 | "Please select one of each of the ratings above","请选择上面的一个评级" 47 | "Posted By","作者" 48 | "Price","价格" 49 | "Product","商品名" 50 | "Product Name","商品名" 51 | "Product Rating","商品评级" 52 | "Product Rating:","商品评级:" 53 | "Product Review (submitted on %s):","商品评论 (提交日期 %s):" 54 | "Product Reviews","商品评论" 55 | "Product SKU","商品 SKU" 56 | "Qty","件数" 57 | "Rating:","评级:" 58 | "Review","评论内容" 59 | "Reviews","评论" 60 | "Review Details","评论详情" 61 | "Review by %s","评论人 %s" 62 | "Reviews and Ratings","评论与评级" 63 | "SKU","SKU" 64 | "Save Review","储存评论" 65 | "Status","状态" 66 | "Submit Review","提交评论" 67 | "Summary Rating","评级摘要" 68 | "Summary of Review","评论摘要" 69 | "Summary of Your Review","您的评论摘要" 70 | "Summary of review","评论内容" 71 | "Title","标题" 72 | "Type","类型" 73 | "Unable to post review. Please, try again later.","无法发表评论,请稍后再试。" 74 | "Update status","更新状态" 75 | "View All Reviews","查看全部评论" 76 | "View Details","查看详情" 77 | "Visible In","显示于" 78 | "Websites","网站" 79 | "Write Your Own Review","发表您的评论" 80 | "You have submitted no reviews.","您尚未提交评论" 81 | "You're reviewing: %s","您正在评论:%s" 82 | "Your Rating:","您的评价:" 83 | "Your Review (submitted on %s):","您的评论 (写于%s):" 84 | "Your review has been accepted for moderation","您的评论已提交审核" 85 | "OR","OR" 86 | "My Product Reviews","My Product Reviews" 87 | "WRITE YOUR REVIEW","发表您的评价" 88 | "You're reviewing:","被评论的商品" 89 | "Customers Reviews","顾客评论" 90 | "Products Reviews","商品评论" 91 | 92 | "Your review has been accepted for moderation.","您的评论已经提交请等待审核." -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Wishlist.csv: -------------------------------------------------------------------------------- 1 | "%1$s was successfully added to your wishlist. Click here to continue shopping","成功添加%1$s到您的收藏,点击这里以继续购物" 2 | "%s's Wishlist","%s的收藏" 3 | "* Required Fields","* 必填栏目" 4 | "Add All to Cart","全部放入购物车" 5 | "Add to Cart","加入购物车" 6 | "Add to Wishlist","加入收藏" 7 | "Added On","加入在" 8 | "Are You sure?","您确定吗?" 9 | "Are you sure you want to remove this product from your wishlist?","请确定是否从收藏中删除此商品?" 10 | "Are you sure you would like to remove this item from the wishlist?","你真的确定想从收藏中删除此项商品吗?" 11 | "Back","返回" 12 | "Can't save description %s","无法保存%s产品描述" 13 | "Cannot create wishlist","无法创建收藏" 14 | "Cannot specify product","无法指定产品" 15 | "Check this checkbox if you want to add a link to an rss feed to your wishlist.","如果您要在收藏中添加一个到RSS订阅的链接,请核选该处。" 16 | "Comment","备注" 17 | "Email Sender","电子邮件发件人" 18 | "Email Template","电子邮件模板" 19 | "Email address can't be empty.","电子邮件地址不能为空。" 20 | "Email addresses, separated by commas","多个电子邮件地址间,请使用逗号分隔" 21 | "Enabled","已启用" 22 | "General Options","基本选项" 23 | "Go to Wishlist","转到收藏" 24 | "Last Added Items","最后加入的商品" 25 | "Message","内容" 26 | "My Wishlist","我的收藏" 27 | "My Wishlist (%d item)","收藏(%d 件)" 28 | "My Wishlist (%d items)","收藏(%d 件)" 29 | "Please enter a valid email addresses, separated by commas. For example johndoe@domain.com, johnsmith@domain.com.","请输入有效电子邮件地址并以逗号分隔。 例如:johndoe@domain.com, johnsmith@domain.com" 30 | "Please, enter your comments...","请输入备注..." 31 | "Product","产品" 32 | "RSS Feed","RSS 订阅" 33 | "RSS link to %s's wishlist","RSS 连接到%s的收藏" 34 | "Remove Item","删除" 35 | "Share Wishlist","共享收藏" 36 | "Share Your Wishlist","共享您的收藏" 37 | "Share options","共享选项" 38 | "Sharing Information","共享信息" 39 | "There was an error while adding item to wishlist.","向收藏中添加商品时出错。" 40 | "There was an error while adding item to wishlist: %s","向收藏中添加产品时出错:%s" 41 | "There was an error while deleting item from wishlist.","从收藏中删除产品项时出错。" 42 | "There was an error while deleting item from wishlist: %s","从收藏中删除产品时出错:%s" 43 | "This product(s) is currently out of stock:","此产品当前缺货:" 44 | "Update Wishlist","更新收藏" 45 | "View Product","查看产品" 46 | "Wishlist","收藏" 47 | "Wishlist Section","收藏部分" 48 | "Wishlist Sharing","共享收藏" 49 | "Wishlist is empty now.","暂无收藏产品。" 50 | "You have no items in your wishlist.","收藏中无任何产品项。" 51 | "You input not valid email address.","您输入的电子邮件地址无效。" 52 | "Your Wishlist was successfully shared","成功共享您的收藏。" 53 | "My Wishlist - %d Item(s)","我的收藏 - %件商品" 54 | "My Wishlist","我的收藏" 55 | "Are you sure you want to remove this product from your wishlist?","确认将该商品移出收藏夹?" 56 | "Please, enter your comments...","请输入您的评论" 57 | "%1$s has been added to your wishlist. Click here to continue shopping.","%1$s 已添加至您的收藏夹。点击 这里 继续购物。" 58 | "%1$s has been updated in your wishlist.","%1$s 已经更新在收藏夹。" 59 | "User Description","收藏介绍" -------------------------------------------------------------------------------- /wysiwyg/plugins/table/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.table_dlg',{"rules_border":"\u8868\u683c\u8fb9\u6846","rules_box":"\u65b9\u5757","rules_vsides":"\u5782\u76f4","rules_rhs":"\u53f3\u8fb9","rules_lhs":"\u5de6\u8fb9","rules_hsides":"\u6c34\u5e73","rules_below":"\u4e0b","rules_above":"\u4e0a","rules_void":"\u7a7a",rules:"\u89c4\u5219","frame_all":"\u5168\u90e8","frame_cols":"\u5217","frame_rows":"\u884c","frame_groups":"\u7ec4","frame_none":"\u65e0",frame:"\u6846\u67b6",caption:"\u8868\u683c\u6807\u9898","missing_scope":"\u4f60\u786e\u5b9a\u4e0d\u6307\u5b9a\u8868\u683c\u5934\u90e8\u50a8\u5b58\u683c\u4e00\u4e2a\u8303\u56f4\u5417\uff1f\u6ca1\u6709\u5b83\uff0c\u6216\u8bb8\u5bf9\u90a3\u4e9b\u6709\u969c\u788d\u7684\u7528\u6237\u7406\u89e3\u8868\u683c\u5c55\u793a\u7684\u5185\u5bb9\u6216\u6570\u636e\u66f4\u52a0\u7684\u56f0\u96be\u3002","cell_limit":"\u5df2\u8d85\u8fc7\u6700\u5927\u50a8\u5b58\u683c\u9650\u5236{$cells} \u50a8\u5b58\u683c\u3002","row_limit":"\u5df2\u8d85\u8fc7\u6700\u5927\u884c\u6570\u9650\u5236 {$rows} \u884c","col_limit":"\u5df2\u8d85\u8fc7\u6700\u5927\u884c\u6570\u9650\u5236 {$cols} \u5217",colgroup:"\u5217\u7ec4",rowgroup:"\u884c\u7ec4",scope:"\u8303\u56f4",tfoot:"\u8868\u5c3e",tbody:"\u8868\u683c\u4e3b\u4f53",thead:"\u8868\u5934","row_all":"\u66f4\u65b0\u8868\u683c\u7684\u6240\u6709\u884c","row_even":"\u66f4\u65b0\u8868\u683c\u7684\u5076\u6570\u884c","row_odd":"\u66f4\u65b0\u8868\u683c\u7684\u5947\u6570\u884c","row_row":"\u66f4\u65b0\u76ee\u524d\u884c","cell_all":"\u66f4\u65b0\u6240\u6709\u50a8\u5b58\u683c","cell_row":"\u66f4\u65b0\u76ee\u524d\u884c\u7684\u50a8\u5b58\u683c","cell_cell":"\u66f4\u65b0\u76ee\u524d\u50a8\u5b58\u683c",th:"\u8868\u5934",td:"\u5185\u5bb9",summary:"\u6458\u8981",bgimage:"\u80cc\u666f\u56fe\u7247",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",mime:"MIME \u7c7b\u578b",langcode:"\u8bed\u8a00\u7f16\u7801",langdir:"\u8bed\u8a00\u4e66\u5199\u65b9\u5411",style:"\u6837\u5f0f",id:"Id\u7f16\u53f7","merge_cells_title":"\u5408\u4f75\u50a8\u5b58\u683c",bgcolor:"\u80cc\u666f\u989c\u8272",bordercolor:"\u8fb9\u6846\u989c\u8272","align_bottom":"\u5c45\u4e0b","align_top":"\u5c45\u4e0a",valign:"\u5782\u76f4\u5bf9\u9f50","cell_type":"\u50a8\u5b58\u683c\u7c7b\u578b","cell_title":"\u50a8\u5b58\u683c\u5c5e\u6027","row_title":"\u884c\u5c5e\u6027","align_middle":"\u5c45\u4e2d","align_right":"\u5c45\u53f3","align_left":"\u5c45\u5de6","align_default":"\u9ed8\u8ba4",align:"\u5bf9\u9f50",border:"\u8fb9\u6846",cellpadding:"\u8868\u683c\u8fb9\u8ddd",cellspacing:"\u8868\u683c\u95f4\u8ddd",rows:"\u884c",cols:"\u5217",height:"\u9ad8\u5ea6",width:"\u5bbd\u5ea6",title:"\u63d2\u5165/\u4fee\u6539\u8868\u683c",rowtype:"\u884c\u6240\u5728\u7684\u8868\u683c\u4f4d\u7f6e","advanced_props":"\u9ad8\u7ea7\u9009\u9879","general_props":"\u5e38\u89c4\u9009\u9879","advanced_tab":"\u9ad8\u7ea7","general_tab":"\u5e38\u89c4","cell_col":"\u66f4\u65b0\u5217\u7684\u6240\u6709\u5355\u5143\u683c"}); -------------------------------------------------------------------------------- /Customer/etc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 1.0.0 29 | 30 | 31 | 32 | 33 | 34 | 35 | CosmoCommerce_Customer_Model_Customer 36 |
CosmoCommerce_Customer_Model_Form
37 | CosmoCommerce_Customer_Model_Address_Abstract 38 |
39 |
40 | 41 | 42 | CosmoCommerce_Customer_Model_Resource_Customer_Collection 43 | 44 | 45 | 52 |
53 | 68 |
69 |
70 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Eav.csv: -------------------------------------------------------------------------------- 1 | "Attempt to add an invalid object","试图添加一个无效对象" 2 | "Attribute '%s' used in configurable products.","'%s'属性用在可配置商品里。" 3 | "Attribute set with the ""%s"" name already exists","名为""%s"" 的属性集已存在" 4 | "Attribute used in configurable products.","用于可配置商品中的属性。" 5 | "Attribute with the same code","相同编码的属性" 6 | "Data integrity: No header row found for attribute","数据完整性:未找到属性的标题行" 7 | "Default Product Listing Sort by not exists on Available Product Listing Sort by","默认产品排序属性不存在" 8 | "Default option value is not defined","缺省选项值未定义" 9 | "EAV types and attributes","实体类型与属性" 10 | "Entity collection expected","需要实体组合" 11 | "Entity collections expected","需要实体组合" 12 | "Entity is not initialized","实体未初始化" 13 | "Failed to load node %s from config.","配置节点%s加载失败。" 14 | "Frontend label is not defined","前台标签未定义" 15 | "Invalid alias, already exists in joined attributes","无效别名,已存在联合属性中" 16 | "Invalid attribute name: %s","无效属性名:%s" 17 | "Invalid attribute requested: %s","无效属性请求:%s" 18 | "Invalid attribute type","无效属性类型" 19 | "Invalid character encountered in increment ID: %s","增量ID里有无效的字符: %s" 20 | "Invalid data object key","无效数据对象键值" 21 | "Invalid entity specified","指定的实体无效。" 22 | "Invalid entity supplied","提供的实体无效" 23 | "Invalid entity supplied: %s","提供的实体不正确: %s" 24 | "Invalid entity type","无效实体类型" 25 | "Invalid entity_id, skipping the record","无效实体ID,此记录跳过" 26 | "Invalid entity_type specified: %s","指定的entity_type无效: %s" 27 | "Invalid foreign key","无效外键" 28 | "Invalid joined fields","无效联合字段" 29 | "Invalid store specified","指定的商店无效" 30 | "Joined field or attribute expression with this alias is already declared","该别名的联合字段或属性表达式已声明" 31 | "Joined field with this alias (%s) is already declared","该别名(%s)的联合字段已声明" 32 | "Joined field with this alias is already declared","该别名的联合字段已声明" 33 | "Loaded %d records","%d记录已加载。" 34 | "No","否" 35 | "No options found in config node %s","配置节点%s下未找到选项" 36 | "Problem loading a record, aborting. Error: %s","加载记录出错,退出。错误:%s" 37 | "Problem loading the collection, aborting. Error: %s","加载时出现错误,终止中。错误信息:%s" 38 | "Problem saving a record, aborting. Error: ","保存记录出错,退出。错误:" 39 | "Problem saving the collection, aborting. Error: %s","保存时出现错误,终止中。错误信息:%s" 40 | "Saved ","已保存 " 41 | "Scope must not be changed, because the attribute is used in configurable products.","范围必须更改,因为属性用于可设置商品。" 42 | "The attribute code '%s' is reserved by system. Please, try another attribute code.","属性代码'%s'为系统保留代码,请尝试其他的属性代码。" 43 | "Unknown parameter","未知参数" 44 | "Valid store_id is expected!","需要正确的store_id" 45 | "Value of attribute ""%s"" must be unique","属性""%s""的值必须唯一" 46 | "Wrong attribute ID","属性编号错误" 47 | "Wrong attribute group ID","属性组编号错误" 48 | "Wrong attribute set ID","属性组合编号错误" 49 | "Wrong entity ID","实体编号错误" 50 | "Yes","是" 51 | "Please select a static block ...","请选择模块 ..." 52 | 53 | "For internal use. Must be unique with no spaces. Maximum length of attribute code must be less then %s symbols","内部标识,必须不包含空格. 最多 %s 字符." 54 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Cms.csv: -------------------------------------------------------------------------------- 1 | "(eg: domain.com/identifier)","(例如:domain.com/identifier)" 2 | "Action","操作" 3 | "Add New Block","创建新模块" 4 | "Add New Page","创建新页面" 5 | "All countries","所有国家" 6 | "Block Information","模块信息" 7 | "Block Title","模块标题" 8 | "Block was successfully deleted","模块已删除" 9 | "Block was successfully saved","模块已保存" 10 | "CMS","内容管理" 11 | "CMS Home Page","内容首页" 12 | "CMS No Route Page","没有内容导航页" 13 | "Content","内容" 14 | "Custom Design","自定义设计" 15 | "Custom Theme","自定义模版" 16 | "Custom Theme From","自定义主题自" 17 | "Custom Theme To","自定义主题到" 18 | "Customer Tax Class Information","顾客税种信息" 19 | "Date Created","创建日期" 20 | "Delete Block","删除模块" 21 | "Delete Page","删除页面" 22 | "Description","说明" 23 | "Disabled","禁用" 24 | "Edit Block","编辑模块" 25 | "Edit Block '%s'","编辑模块:'%s'" 26 | "Edit Page","编辑页面" 27 | "Edit Page '%s'","编辑页面:'%s'" 28 | "Enabled","启用" 29 | "General Information","基本信息" 30 | "Go to Home Page","回首页" 31 | "Home","首页" 32 | "Identifier","标识符(Identifier)" 33 | "Keywords","关键字" 34 | "Last Modified","最后修改日期" 35 | "Layout","页面布局" 36 | "Content Heading","内容标题" 37 | "Layout Update XML","XML版面更新" 38 | "Manage Pages","页面管理" 39 | "Meta Data","Meta数据(用于SEO优化)" 40 | "Meta Description","Meta说明" 41 | "Meta Keywords","Meta关键字" 42 | "New Block","新模块" 43 | "New Page","新页面" 44 | "Page Identifier cannot consist only of numbers.","页面标识符不能只含数字。" 45 | "Page Identifier for specified store already exist.","输入的商店页面标识符已存在。" 46 | "Page Information","页面信息" 47 | "Page Status","页面状态" 48 | "Page Title","页面标题" 49 | "Page was successfully deleted","成功删除页面" 50 | "Page was successfully saved","成功保存页面" 51 | "Poll Manager","投票管理" 52 | "Product Tax Class Information","商品税种信息" 53 | "SEF URL Identifier","搜索引擎友好网址的标识符" 54 | "Save Block","保存模块" 55 | "Save Page","保存页面" 56 | "Show breadcrumbs for CMS pages","显示CMS页面导航条" 57 | "Static Blocks","模块管理" 58 | "Status","状态" 59 | "Store View","商店界面" 60 | "Such a block identifier in selected store already exist.","选择商店的方框标识符已存在。" 61 | "The page you are trying to save no longer exists","要保存的页面不存在" 62 | "This block no longer exists","该方框不存在" 63 | "This page no longer exists","该页面不存在" 64 | "Title","标题" 65 | "Unable to find a block to delete","没有找到要删除的方框" 66 | "Unable to find a page to delete","没有找到要删除的页面" 67 | "CMS","内容管理" 68 | "Pages","页面管理" 69 | "Design","页面设计" 70 | "Submit","提交" 71 | "Cancel","取消" 72 | "1 column","1栏式" 73 | "2 columns with left bar","2栏式带左边栏" 74 | "2 columns with right bar","2栏式带右边栏" 75 | "3 columns","3栏式" 76 | "Custom Design From","自定义设计生效时期" 77 | "Custom Design To","自定义设计失效时期" 78 | "Custom Layout","自定义页面布局" 79 | "Custom Layout Update XML","自定义XML版面更新" 80 | "WYSIWYG Editor","所见即所得编辑器" 81 | "-- Please Select --","-- 请选择 --" 82 | "Relative to Website Base URL" 83 | "Create Folder...","创建文件夹" 84 | "Media Storage","媒体管理" 85 | "Storage Root","存储根目录" 86 | "No files found","没有文件" 87 | "Delete File","删除" 88 | "Are you sure you want to delete the selected file?","您确定要删除选择的文件吗?" 89 | "Insert File","插入" 90 | "Delete Folder","删除文件夹" -------------------------------------------------------------------------------- /wysiwyg/plugins/fullpage/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.fullpage_dlg',{title:"\u6587\u6863\u5c5e\u6027","meta_tab":"\u5e38\u89c4","appearance_tab":"\u5916\u89c2","advanced_tab":"\u9ad8\u7ea7","meta_props":"Meta\u4fe1\u606f",langprops:"\u8bed\u8a00\u4e0e\u5b57\u7b26\u96c6","meta_title":"\u6807\u9898","meta_keywords":"\u5173\u952e\u5b57","meta_description":"\u63cf\u8ff0","meta_robots":"\u641c\u7d22\u673a\u5668\u4eba",doctypes:"\u6587\u6863\u7c7b\u578b",langcode:"\u8bed\u8a00\u4ee3\u53f7",langdir:"\u6587\u5b57\u65b9\u5411",ltr:"\u4ece\u5de6\u5230\u53f3",rtl:"\u4ece\u53f3\u5230\u5de6","xml_pi":"XML\u58f0\u660e",encoding:"\u5b57\u7b26\u96c6","appearance_bgprops":"\u80cc\u666f\u5c5e\u6027","appearance_marginprops":"Body\u5916\u8fb9\u6846","appearance_linkprops":"\u94fe\u63a5\u989c\u8272","appearance_textprops":"\u6587\u672c\u5c5e\u6027",bgcolor:"\u80cc\u666f\u989c\u8272",bgimage:"\u80cc\u666f\u56fe\u7247","left_margin":"\u5de6\u5916\u8fb9\u8ddd","right_margin":"\u53f3\u5916\u8fb9\u8ddd","top_margin":"\u4e0a\u5916\u8fb9\u8ddd","bottom_margin":"\u4e0b\u5916\u8fb9\u8ddd","text_color":"\u6587\u672c\u989c\u8272","font_size":"\u5b57\u4f53\u5927\u5c0f","font_face":"\u5b57\u4f53\u5916\u89c2","link_color":"\u94fe\u63a5\u989c\u8272","hover_color":"\u9f20\u6807\u60ac\u505c\u989c\u8272","visited_color":"\u5df2\u8bbf\u95ee\u989c\u8272","active_color":"\u6fc0\u6d3b\u65f6\u7684\u989c\u8272",textcolor:"\u989c\u8272",fontsize:"\u5b57\u4f53\u5927\u5c0f",fontface:"\u5b57\u4f53","meta_index_follow":"\u7d22\u5f15\u5e76\u8fde\u7ed3","meta_index_nofollow":"\u7d22\u5f15\u4f46\u4e0d\u8fde\u7ed3","meta_noindex_follow":"\u4e0d\u7d22\u5f15\u4f46\u8fde\u7ed3","meta_noindex_nofollow":"\u4e0d\u7d22\u5f15\u4e5f\u4e0d\u8fde\u7ed3","appearance_style":"\u6837\u5f0f\u5217\u8868\u4e0e\u6837\u5f0f\u5c5e\u6027",stylesheet:"\u6837\u5f0f\u5217\u8868",style:"\u6837\u5f0f",author:"\u4f5c\u8005",copyright:"\u7248\u6743",add:"\u6dfb\u52a0\u65b0\u5143\u7d20",remove:"\u5220\u9664\u5df2\u9009\u5143\u7d20",moveup:"\u5411\u4e0a\u79fb\u52a8\u5df2\u9009\u5143\u7d20",movedown:"\u5411\u4e0b\u79fb\u52a8\u5df2\u9009\u5143\u7d20","head_elements":"Head\u5143\u7d20",info:"\u4fe1\u606f","add_title":"Title\u5143\u7d20","add_meta":"Meta\u5143\u7d20","add_script":"Script\u5143\u7d20","add_style":"Style\u5143\u7d20","add_link":"Link\u5143\u7d20","add_base":"Base\u5143\u7d20","add_comment":"\u6ce8\u91ca","title_element":"Title\u5143\u7d20","script_element":"Script\u5143\u7d20","style_element":"Style\u5143\u7d20","base_element":"Base\u5143\u7d20","link_element":"Link\u5143\u7d20","meta_element":"Meta\u5143\u7d20","comment_element":"\u6ce8\u91ca",src:"Src\u5730\u5740",language:"\u8bed\u8a00",href:"Href\u94fe\u63a5",target:"Target\u76ee\u6807",type:"\u7c7b\u578b",charset:"\u5b57\u7b26\u96c6",defer:"Defer\u5b9a\u4e49",media:"\u5a92\u4f53",properties:"\u5c5e\u6027",name:"\u540d\u79f0",value:"\u503c",content:"\u5185\u5bb9",rel:"Rel",rev:"Rev",hreflang:"Href lang","general_props":"\u5e38\u89c4","advanced_props":"\u9ad8\u7ea7"}); -------------------------------------------------------------------------------- /wysiwyg/plugins/table/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.table_dlg',{"rules_border":"\u8fb9\u6846","rules_box":"\u65b9\u76d2","rules_vsides":"\u5782\u76f4","rules_rhs":"\u53f3\u8fb9","rules_lhs":"\u5de6\u8fb9","rules_hsides":"\u6c34\u5e73","rules_below":"\u4e0b","rules_above":"\u4e0a","rules_void":"\u7a7a",rules:"\u89c4\u5219","frame_all":"\u5168\u90e8","frame_cols":"\u5217\u8868\u5934","frame_rows":"\u884c\u8868\u5934","frame_groups":"\u7fa4\u7ec4","frame_none":"\u65e0",frame:"\u6846\u67b6",caption:"\u8868\u683c\u6807\u9898","missing_scope":"\u60a8\u786e\u5b9a\u4e0d\u4e3a\u8868\u5934\u5355\u5143\u683c\u6307\u5b9a\u4e00\u4e2a\u8303\u56f4\u5417\uff1f\u5982\u679c\u4e0d\u6307\u5b9a\uff0c\u5bf9\u4f7f\u7528\u975e\u53ef\u89c6\u6d4f\u89c8\u5668\u7684\u4f7f\u7528\u8005\u5c06\u66f4\u96be\u9605\u8bfb\u6216\u7406\u89e3\u8868\u683c\u5185\u5bb9\u3002","cell_limit":"\u5df2\u8fbe\u5230\u6700\u591a {$cells} \u4e2a\u5355\u5143\u683c\u7684\u4e0a\u9650\u3002","row_limit":"\u5df2\u8fbe\u5230\u6700\u591a {$rows} \u884c\u5355\u5143\u683c\u7684\u4e0a\u9650\u3002","col_limit":"\u5df2\u8fbe\u5230\u6700\u591a {$cols} \u5217\u5355\u5143\u683c\u7684\u4e0a\u9650\u3002",colgroup:"\u5217\u7ec4\u8868\u5934",rowgroup:"\u884c\u7ec4\u8868\u5934",scope:"\u8868\u5934\u8303\u56f4",tfoot:"\u8868\u5c3e",tbody:"\u8868\u683c\u4e3b\u4f53",thead:"\u8868\u5934","row_all":"\u66f4\u65b0\u6240\u6709\u884c","row_even":"\u66f4\u65b0\u5076\u6570\u884c","row_odd":"\u66f4\u65b0\u5947\u6570\u884c","row_row":"\u66f4\u65b0\u5f53\u524d\u884c","cell_all":"\u66f4\u65b0\u6240\u6709\u5355\u5143\u683c","cell_row":"\u66f4\u65b0\u884c\u4e2d\u6240\u6709\u5355\u5143\u683c","cell_cell":"\u66f4\u65b0\u5f53\u524d\u5355\u5143\u683c",th:"\u8868\u5934",td:"\u8868\u683c\u5185\u5bb9",summary:"\u8868\u683c\u6458\u8981",bgimage:"\u80cc\u666f\u56fe\u7247",rtl:"\u4ece\u53f3\u5230\u5de6",ltr:"\u4ece\u5de6\u5230\u53f3",mime:"\u76ee\u6807MIME\u7c7b\u578b",langcode:"\u8bed\u8a00\u4ee3\u7801",langdir:"\u8bed\u8a00\u4e66\u5199\u65b9\u5411",style:"\u6837\u5f0f",id:"ID","merge_cells_title":"\u5408\u5e76\u5355\u5143\u683c",bgcolor:"\u80cc\u666f\u989c\u8272",bordercolor:"\u8fb9\u6846\u989c\u8272","align_bottom":"\u9760\u4e0b","align_top":"\u9760\u4e0a",valign:"\u5782\u76f4\u5bf9\u9f50","cell_type":"\u5355\u5143\u683c\u7c7b\u578b","cell_title":"\u5355\u5143\u683c\u5c5e\u6027","row_title":"\u884c\u5c5e\u6027","align_middle":"\u5c45\u4e2d\u5bf9\u9f50","align_right":"\u9760\u53f3\u5bf9\u9f50","align_left":"\u9760\u5de6\u5bf9\u9f50","align_default":"\u9ed8\u8ba4",align:"\u5bf9\u9f50\u65b9\u5411",border:"\u8fb9\u6846",cellpadding:"\u5355\u5143\u683c\u8fb9\u8ddd",cellspacing:"\u5355\u5143\u683c\u95f4\u8ddd",rows:"\u884c\u6570",cols:"\u5217\u6570",height:"\u9ad8",width:"\u5bbd",title:"\u63d2\u5165/\u7f16\u8f91\u5355\u5143\u683c",rowtype:"\u884c\u7c7b\u578b","advanced_props":"\u9ad8\u7ea7\u5c5e\u6027","general_props":"\u666e\u901a\u5c5e\u6027","advanced_tab":"\u9ad8\u7ea7","general_tab":"\u666e\u901a","cell_col":"\u66f4\u65b0\u5217\u4e2d\u6240\u6709\u5355\u5143\u683c"}); -------------------------------------------------------------------------------- /wysiwyg/themes/advanced/langs/zh.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.advanced',{"underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)",dd:"\u540d\u8bcd\u63cf\u8ff0",dt:"\u540d\u8bcd\u5b9a\u4e49",samp:"\u4ee3\u7801\u8303\u4f8b",code:"\u4ee3\u7801",blockquote:"\u5f15\u7528",h6:"\u6807\u98986",h5:"\u6807\u98985",h4:"\u6807\u98984",h3:"\u6807\u98983",h2:"\u6807\u98982",h1:"\u6807\u98981",pre:"\u9884\u8bbe\u683c\u5f0f",address:"\u5730\u5740",div:"div",paragraph:"\u6bb5\u843d",block:"\u683c\u5f0f\u5316",fontdefault:"\u5b57\u4f53","font_size":"\u5b57\u4f53\u5927\u5c0f","style_select":"\u6837\u5f0f","anchor_delta_height":"","anchor_delta_width":"","link_delta_height":"60","link_delta_width":"40","more_colors":"\u66f4\u591a\u989c\u8272","toolbar_focus":"\u8df3\u81f3\u5de5\u5177\u5217-Alt Q\uff0c\u8df3\u81f3\u7f16\u8f91\u6846-Alt Z\uff0c\u8df3\u81f3\u5143\u7d20\u8282\u70b9-Alt X\u3002",newdocument:"\u60a8\u786e\u5b9a\u8981\u6e05\u9664\u6240\u6709\u7f16\u8f91\u7684\u5185\u5bb9\u5417\uff1f",path:"\u8def\u5f84","clipboard_msg":"Mozilla\u548cFirefox\u4e0d\u652f\u6301\u590d\u5236/\u526a\u5207/\u7c98\u8d34\u3002\n\u60a8\u9700\u8981\u5173\u4e8e\u6b64\u95ee\u9898\u66f4\u8fdb\u4e00\u6b65\u7684\u4fe1\u606f\u5417\uff1f","blockquote_desc":"\u5f15\u7528","help_desc":"\u5e2e\u52a9","newdocument_desc":"\u65b0\u5efa\u6587\u4ef6","image_props_desc":"\u56fe\u7247\u5c5e\u6027","paste_desc":"\u7c98\u8d34(Ctrl V)","copy_desc":"\u590d\u5236(Ctrl C)","cut_desc":"\u526a\u5207(Ctrl X)","anchor_desc":"\u63d2\u5165/\u7f16\u8f91\u951a\u70b9","visualaid_desc":"\u663e\u793a/\u9690\u85cf\u76ee\u6807","charmap_desc":"\u63d2\u5165\u7279\u6b8a\u7b26\u53f7","backcolor_desc":"\u80cc\u666f\u989c\u8272","forecolor_desc":"\u5b57\u4f53\u989c\u8272","custom1_desc":"\u5728\u6b64\u8f93\u5165\u63cf\u8ff0","removeformat_desc":"\u6e05\u9664\u683c\u5f0f","hr_desc":"\u6c34\u5e73\u7ebf","sup_desc":"\u4e0a\u6807","sub_desc":"\u4e0b\u6807","code_desc":"\u7f16\u8f91HTML","cleanup_desc":"\u51c0\u5316\u4ee3\u7801","image_desc":"\u63d2\u5165/\u7f16\u8f91\u56fe\u7247","unlink_desc":"\u5220\u9664\u94fe\u63a5","link_desc":"\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5","redo_desc":"\u6062\u590d(Ctrl Y)","undo_desc":"\u64a4\u6d88(Ctrl Z)","indent_desc":"\u589e\u52a0\u7f29\u8fdb","outdent_desc":"\u51cf\u5c11\u7f29\u8fdb","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","justifyfull_desc":"\u4e24\u7aef\u5bf9\u9f50","justifyright_desc":"\u9760\u53f3\u5bf9\u9f50","justifycenter_desc":"\u5c45\u4e2d\u5bf9\u9f50","justifyleft_desc":"\u9760\u5de6\u5bf9\u9f50","striketrough_desc":"\u5220\u9664\u7ebf","help_shortcut":"\u6309ALT-F10\u5230\u5de5\u5177\u680f\uff0c\u6309ALT-0\u5230\u8bf4\u660e\u3002","rich_text_area":"\u5bcc\u6587\u672c\u7f16\u8f91\u533a","shortcuts_desc":"\u534f\u52a9\u5de5\u5177\u8bf4\u660e",toolbar:"\u5de5\u5177\u680f","charmap_delta_height":"","charmap_delta_width":"","colorpicker_delta_height":"","colorpicker_delta_width":"","image_delta_height":"","image_delta_width":""}); -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/order_update.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | 16 | 17 | 18 |
19 | 20 | 21 | 45 | 46 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 39 | 40 | 41 | 42 | 43 |
{{var logo_alt}}
30 |

亲爱的 {{htmlescape var=$order.getCustomerName()}},

31 |

32 | 您的订单 # {{var order.increment_id}}目前状态为 {{var order.getStatusLabel()}} 33 |

34 |

您可以 登陆您的账户 查看订单状态。

35 |

{{var comment}}

36 |

37 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。

38 |

谢谢,{{var store.getFrontendName()}}

44 |
47 |
48 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/invoice_update.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | 16 | 17 | 18 |
19 | 20 | 21 | 45 | 46 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 39 | 40 | 41 | 42 | 43 |
{{var logo_alt}}
30 |

亲爱的 {{htmlescape var=$order.getCustomerName()}},

31 |

32 | 您的订单 {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}} 33 |

34 |

您可以 登陆您的账户 查看订单状态。

35 |

{{var comment}}

36 |

37 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。

38 |

谢谢,{{var store.getFrontendName()}}

44 |
47 |
48 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/shipment_update.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | 16 | 17 | 18 |
19 | 20 | 21 | 45 | 46 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 39 | 40 | 41 | 42 | 43 |
{{var logo_alt}}
30 |

亲爱的 {{htmlescape var=$order.getCustomerName()}},

31 |

32 | 您的订单 # {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}} 33 |

34 |

您可以 登陆您的账户 查看订单状态。

35 |

{{var comment}}

36 |

37 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。

38 |

谢谢, {{var store.getFrontendName()}}

44 |
47 |
48 | -------------------------------------------------------------------------------- /locale/zh_CN/template/email/sales/creditmemo_update.html: -------------------------------------------------------------------------------- 1 | 2 | 13 | 16 | 17 | 18 |
19 | 20 | 21 | 46 | 47 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 40 | 41 | 42 | 43 | 44 |
{{var logo_alt}}
30 |

亲爱的 {{htmlescape var=$order.getCustomerName()}},

31 |

32 | 您的订单 {{var order.increment_id}} 目前状态为 {{var order.getStatusLabel()}} 33 |

34 |

您可以 登陆您的账户 查看订单状态。

35 |

{{var comment}}

36 |

37 | 如果您有任何疑问,请联系我们客服邮箱 {{config path='trans_email/ident_support/email'}} 或客服电话 {{config path='general/store_information/phone'}}。 38 |

39 |

谢谢,{{var store.getFrontendName()}}

45 |
48 |
49 | -------------------------------------------------------------------------------- /wysiwyg/themes/advanced/langs/zh-cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advanced',{"underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)",dd:"\u5b9a\u4e49\u8bf4\u660e",dt:"\u672f\u8bed\u5b9a\u4e49",samp:"\u4ee3\u7801\u793a\u4f8b",code:"\u4ee3\u7801",blockquote:"\u5f15\u7528",h6:"\u6807\u98986",h5:"\u6807\u98985",h4:"\u6807\u98984",h3:"\u6807\u98983",h2:"\u6807\u98982",h1:"\u6807\u98981",pre:"\u9884\u683c\u5f0f\u6587\u672c",address:"\u5730\u5740",div:"Div\u533a\u5757",paragraph:"\u6bb5\u843d",block:"\u683c\u5f0f\u5316",fontdefault:"\u5b57\u4f53","font_size":"\u5b57\u4f53\u5927\u5c0f","style_select":"\u6837\u5f0f","more_colors":"\u66f4\u591a\u989c\u8272","toolbar_focus":"\u8f6c\u5230\u5de5\u5177\u6309\u94ae - Alt-Q\uff0c\u8f6c\u5230\u7f16\u8f91\u5668 - Alt-Z\uff0c\u8f6c\u5230\u5143\u7d20\u8def\u5f84 - Alt-X\u3002",newdocument:"\u60a8\u771f\u7684\u8981\u6e05\u9664\u6240\u6709\u5185\u5bb9\u5417\uff1f",path:"\u8def\u5f84","clipboard_msg":"\u5728Mozilla\u548cFirefox\u4e2d\u4e0d\u80fd\u4f7f\u7528\u590d\u5236/\u7c98\u8d34/\u526a\u5207\u3002n\u60a8\u8981\u67e5\u770b\u8be5\u95ee\u9898\u66f4\u591a\u7684\u4fe1\u606f\u5417\uff1f","blockquote_desc":"\u5f15\u7528","help_desc":"\u5e2e\u52a9","newdocument_desc":"\u65b0\u5efa","image_props_desc":"\u56fe\u7247\u5c5e\u6027","paste_desc":"\u7c98\u8d34","copy_desc":"\u590d\u5236","cut_desc":"\u526a\u5207","anchor_desc":"\u63d2\u5165/\u7f16\u8f91 \u951a","visualaid_desc":"\u663e\u793a/\u9690\u85cf \u5143\u7d20","charmap_desc":"\u63d2\u5165\u81ea\u5b9a\u4e49\u7b26\u53f7","backcolor_desc":"\u9009\u62e9\u80cc\u666f\u989c\u8272","forecolor_desc":"\u9009\u62e9\u6587\u672c\u989c\u8272","custom1_desc":"\u8fd9\u91cc\u662f\u60a8\u81ea\u5b9a\u4e49\u7684\u63cf\u8ff0","removeformat_desc":"\u6e05\u9664\u683c\u5f0f","hr_desc":"\u63d2\u5165\u6c34\u5e73\u7ebf","sup_desc":"\u4e0a\u6807","sub_desc":"\u4e0b\u6807","code_desc":"\u7f16\u8f91HTML\u6e90\u4ee3\u7801","cleanup_desc":"\u6e05\u9664\u65e0\u7528\u4ee3\u7801","image_desc":"\u63d2\u5165/\u7f16\u8f91 \u56fe\u7247","unlink_desc":"\u53d6\u6d88\u8d85\u94fe\u63a5","link_desc":"\u63d2\u5165/\u7f16\u8f91 \u8d85\u94fe\u63a5","redo_desc":"\u6062\u590d (Ctrl Y)","undo_desc":"\u64a4\u9500 (Ctrl Z)","indent_desc":"\u589e\u52a0\u7f29\u8fdb","outdent_desc":"\u51cf\u5c11\u7f29\u8fdb","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","justifyfull_desc":"\u4e24\u7aef\u5bf9\u9f50","justifyright_desc":"\u53f3\u5bf9\u9f50","justifycenter_desc":"\u5c45\u4e2d","justifyleft_desc":"\u5de6\u5bf9\u9f50","striketrough_desc":"\u5220\u9664\u7ebf","help_shortcut":"\u6309 ALT-F10 \u5b9a\u4f4d\u5230\u5de5\u5177\u680f.\u6309 ALT-0 \u83b7\u53d6\u5e2e\u52a9\u3002","rich_text_area":"\u5bcc\u6587\u672c\u533a","shortcuts_desc":"\u8f85\u52a9\u8bf4\u660e",toolbar:"\u5de5\u5177\u680f","anchor_delta_height":"","anchor_delta_width":"","charmap_delta_height":"","charmap_delta_width":"","colorpicker_delta_height":"","colorpicker_delta_width":"","link_delta_height":"","link_delta_width":"","image_delta_height":"","image_delta_width":""}); -------------------------------------------------------------------------------- /wysiwyg/themes/advanced/langs/cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.advanced',{"underline_desc":"\u4e0b\u5212\u7ebf (Ctrl U)","italic_desc":"\u659c\u4f53 (Ctrl I)","bold_desc":"\u7c97\u4f53 (Ctrl B)",dd:"\u540d\u8bcd\u63cf\u8ff0",dt:"\u540d\u8bcd\u5b9a\u4e49",samp:"\u4ee3\u7801\u8303\u4f8b",code:"\u4ee3\u7801",blockquote:"\u5f15\u7528",h6:"6\u7ea7\u6807\u9898",h5:"5\u7ea7\u6807\u9898",h4:"4\u7ea7\u6807\u9898",h3:"3\u7ea7\u6807\u9898",h2:"2\u7ea7\u6807\u9898",h1:"1\u7ea7\u6807\u9898",pre:"\u9884\u8bbe\u683c\u5f0f",address:"\u5730\u5740\u683c\u5f0f",div:"Div\u533a\u5757",paragraph:"\u6bb5\u843d",block:"\u683c\u5f0f",fontdefault:"\u5b57\u4f53","font_size":"\u5b57\u4f53\u5927\u5c0f","style_select":"\u5b57\u4f53\u6837\u5f0f","anchor_delta_height":"","anchor_delta_width":"","charmap_delta_height":"","charmap_delta_width":"","colorpicker_delta_height":"","colorpicker_delta_width":"","link_delta_height":"","link_delta_width":"","image_delta_height":"","image_delta_width":"","more_colors":"\u66f4\u591a\u989c\u8272","toolbar_focus":"\u5b9a\u4f4d\u5230\u5de5\u5177\u5217\uff1aAlt Q\uff0c\u5b9a\u4f4d\u5230\u7f16\u8f91\u6846\uff1aAlt Z\u5b9a\u4f4d\u5230\u5de5\u5177\u5217- Alt Q\uff0c\u5b9a\u4f4d\u5230\u5143\u7d20\u8def\u5f84\uff1aAlt X\u3002",newdocument:"\u786e\u8ba4\u6e05\u9664\u76ee\u524d\u7f16\u8f91\u7684\u5185\u5bb9\u5417\uff1f",path:"\u5143\u7d20\u8def\u5f84","clipboard_msg":"\u5f88\u62b1\u6b49\uff0c\u60a8\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u8be5\u529f\u80fd\u3002","blockquote_desc":"\u5f15\u7528","help_desc":"\u5e2e\u52a9","newdocument_desc":"\u65b0\u6587\u6863","image_props_desc":"\u56fe\u7247\u5c5e\u6027","paste_desc":"\u7c98\u8d34","copy_desc":"\u590d\u5236","cut_desc":"\u526a\u5207","anchor_desc":"\u63d2\u5165/\u7f16\u8f91\u4e66\u7b7e","visualaid_desc":"\u663e\u793a/\u9690\u85cf\u4e0d\u53ef\u89c1\u5185\u5bb9","charmap_desc":"\u63d2\u5165\u7279\u6b8a\u7b26\u53f7","backcolor_desc":"\u9009\u62e9\u80cc\u666f\u989c\u8272","forecolor_desc":"\u9009\u62e9\u6587\u672c\u989c\u8272","custom1_desc":"\u5728\u6b64\u8f93\u5165\u63cf\u8ff0","removeformat_desc":"\u6e05\u9664\u683c\u5f0f","hr_desc":"\u6c34\u5e73\u7ebf","sup_desc":"\u4e0a\u6807","sub_desc":"\u4e0b\u6807","code_desc":"\u7f16\u8f91 HTML \u6e90\u4ee3\u7801","cleanup_desc":"\u6e05\u9664\u591a\u4f59\u683c\u5f0f","image_desc":"\u63d2\u5165/\u7f16\u8f91\u56fe\u7247","unlink_desc":"\u6e05\u9664\u94fe\u63a5","link_desc":"\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5","redo_desc":"\u91cd\u505a (Ctrl Y)","undo_desc":"\u64a4\u9500 (Ctrl Z)","indent_desc":"\u589e\u52a0\u7f29\u8fdb","outdent_desc":"\u51cf\u5c11\u7f29\u8fdb","numlist_desc":"\u6709\u5e8f\u7f16\u53f7","bullist_desc":"\u65e0\u5e8f\u7f16\u53f7","justifyfull_desc":"\u5de6\u53f3\u5bf9\u9f50","justifyright_desc":"\u53f3\u5bf9\u9f50","justifycenter_desc":"\u5c45\u4e2d\u5bf9\u9f50","justifyleft_desc":"\u5de6\u5bf9\u9f50","striketrough_desc":"\u5220\u9664\u7ebf","help_shortcut":"\u4f7f\u7528 ALT-F10 \u542f\u7528\u5de5\u5177\u680f. \u4f7f\u7528 ALT-0 \u6253\u5f00\u5e2e\u52a9","rich_text_area":"\u5bcc\u6587\u672c\u533a\u57df","shortcuts_desc":"Accessability\u5e2e\u52a9",toolbar:"\u5de5\u5177\u680f"}); -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Tag.csv: -------------------------------------------------------------------------------- 1 | "# of Uses","使用次数" 2 | "%s tag(s) have been accepted for moderation","成功将 %s 个标签提交审核。" 3 | "Action","操作" 4 | "Actions","操作" 5 | "Add New Tag","增添新标签" 6 | "Add Tags","增添标签" 7 | "Add Your Tags:","添加您的标签:" 8 | "Add to Cart","加入购物车" 9 | "Add to Wishlist","加入收藏" 10 | "All Tags","所有标签" 11 | "Approved","批准" 12 | "Are you sure that you want to delete this tag?","您确认要删除该标签吗?" 13 | "Are you sure you want to delete this tag?","您确定要删除此标签吗?" 14 | "Are you sure you want to do this?","您确定要这么做吗?" 15 | "Are you sure?","确定?" 16 | "Back","返回" 17 | "Back to Tags List","返回标签列表" 18 | "Back to view Tag","返回查看标签" 19 | "Block Information","区块信息" 20 | "CSV","CSV" 21 | "Change status","更改状态" 22 | "Click on a tag to view your corresponding products.","点击标签查看相应的商品。" 23 | "Country","国家" 24 | "Customer Since","注册日期" 25 | "Customers","顾客" 26 | "Customers Tagged '%s'","顾客标签过的'%s'" 27 | "Delete","删除" 28 | "Delete Tag","删除标签" 29 | "Disabled","禁用" 30 | "Edit Tag","修改标签" 31 | "Edit Tag '%s'","编辑标签'%s'" 32 | "Email","电邮" 33 | "First Name","名字" 34 | "General Information","基本信息" 35 | "Grid","多栏" 36 | "ID","编号" 37 | "Last Name","姓氏" 38 | "List","单栏" 39 | "My Recent Tags","我最近的标签" 40 | "My Tags","我的标签" 41 | "Name","名字" 42 | "New Tag","新标签" 43 | "No matches found.","无匹配的标签。" 44 | "Other people marked this product with these tags:","其它顾客于商品的标签:" 45 | "Pending","待审" 46 | "Pending Tags","待审标签" 47 | "Popular","热门" 48 | "Popular Tags","热门标签" 49 | "Popularity","热门度" 50 | "Price","价格" 51 | "Product Name","商品名字" 52 | "Product SKU","商品SKU" 53 | "Product Tags","商品标签" 54 | "Products","商品" 55 | "Products Tagged with '%s'","'%s'标签的商品" 56 | "Products tagged with '%s'","'%s'标签的商品" 57 | "Products tagged with '%s' (RSS)","标记为'%s'的商品 (RSS)" 58 | "SKU","SKU" 59 | "Save Tag","保存标签" 60 | "Search Results for '%s' (RSS)","%s'的搜索结果 (RSS)" 61 | "Search Terms","搜索关键词" 62 | "Status","状态" 63 | "Tag","标签" 64 | "Tag ""%s"" has already been added to the product","已为指定商品添加标签 ""%s""" 65 | "Tag Information","标签信息" 66 | "Tag Name","标签名字" 67 | "Tag Name: %s","标签名称:%s" 68 | "Tag can't be empty.","标签不能为空。" 69 | "Tagged in","登记的标签" 70 | "Tags","标签" 71 | "Tags Aren't Available","标签不可用" 72 | "Tags:","标签:" 73 | "Telephone","电话" 74 | "Thank you. Your tag has been accepted for moderation.","多谢,您的标签已加入系统审核。" 75 | "Unable to find any products tagged with '%s' in the current store","先商店里查找不到'%s标签'的商品。" 76 | "Unable to remove tag. Please, try again later.","无法删除标签。请重试。" 77 | "Unable to save tag(s)","无法保存标签" 78 | "Unable to save your tag. Please, try again later.","无法保存标签,请稍后再试。" 79 | "Use spaces to separate tags. Use single quotes (') for phrases.","用空格分开标签。短语请使用单引号(')标出。" 80 | "Uses","使用" 81 | "View All","View All" 82 | "View All Tags","查看所有标签" 83 | "View Customers","查看顾客" 84 | "View Products","查看商品" 85 | "Visible In","可见于" 86 | "XML","XML" 87 | "You have not tagged any products yet.","您还没有加标签于任何商品。" 88 | "Your tag was successfully deleted","成功删除标签" 89 | "Your tag was successfully saved","成功保存标签" 90 | "ZIP/Post Code","邮编" 91 | "You have not tagged any products yet.","You have not tagged any products yet." 92 | -------------------------------------------------------------------------------- /code/etc/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 1.1.7 29 | 30 | 31 | 32 | 33 | 34 | CosmoCommerce_ChineseLocale_Helper 35 | 36 | 37 | 38 | 39 | CosmoCommerce_ChineseLocale_Model_Mysql4 40 | 41 | 42 | CosmoCommerce_ChineseLocale_Model 43 | chineselocale_resource 44 | 45 | 46 | Mage_Directory_Model_Resource 47 | chineselocale_mysql4 48 | 49 | 50 | chineselocale_city
51 |
52 |
53 |
54 |
55 | 56 | 57 | 58 | CosmoCommerce_ChineseLocale 59 | 60 | 61 | 62 | 63 | 64 | 65 | CosmoCommerce_ChineseLocale_Block_Adminhtml_Catalog_Product_Edit_Tabs 66 | CosmoCommerce_ChineseLocale_Block_Adminhtml_Catalog_Product_Edit 67 | 68 | 69 | 70 |
71 | 72 | 73 | 74 | standard 75 | 76 | CosmoCommerce_ChineseLocale 77 | chineselocale 78 | 79 | 80 | 81 | 82 |
83 | -------------------------------------------------------------------------------- /locale/zh_CN/Mage_Shipping.csv: -------------------------------------------------------------------------------- 1 | " for more information or email us at ","查阅详情或发邮件到" 2 | "# of Items (and above)","商品件数(及以上)" 3 | "# of Items vs. Destination","产品件数 :目的地" 4 | "Allow Shipping to multiple addresses","允许发货到多个地址" 5 | "Calculate Handling Fee","计算手续费" 6 | "Carrier:","承运商:" 7 | "City","城市" 8 | "Close Window","关闭窗口" 9 | "Condition","条件" 10 | "Country","国家" 11 | "Date","日期" 12 | "Delivered on:","递送日期" 13 | "Delivered to:","递送至:" 14 | "Description","描述" 15 | "Displayed Error Message","显示错误信息" 16 | "Duplicate Row #%s (Country ""%s"", Region/State ""%s"", Zip ""%s"" and Value ""%s"")","内容重复 %s (国家 ""%s"",省份 ""%s"",邮编 ""%s"" 及 金额 ""%s"")" 17 | "Enabled","已启用" 18 | "Error:","错误信息:" 19 | "Export","输出" 20 | "Fixed","固定" 21 | "Flat Rate","统一费率" 22 | "Free Shipping","免运费" 23 | "Handling Fee","手续费" 24 | "Import","导入" 25 | "Info:","信息:" 26 | "Invalid %s ""%s"" in the Row #%s","无效的 %s ""%s"" 位于行 %s" 27 | "Invalid Country ""%s"" in the Row #%s","国家 ""%s"" 不正确,位于行 %s" 28 | "Invalid Region/State ""%s"" in the Row #%s","省份 ""%s"" 不正确,位于行 %s" 29 | "Invalid Shipping Price ""%s"" in the Row #%s","运费 ""%s"" 不正确,位于行 %s" 30 | "Invalid Table Rate code for type %s: %s","%s无效的运费文件代号类型:: %s" 31 | "Invalid Table Rate code type: %s","无效的运费文件代号类型:%s" 32 | "Invalid Table Rates File Format","无效的运费文件格式" 33 | "Local Time","本地时间" 34 | "Location","地点" 35 | "Maximum qty allowed for Shipping to multiple addresses","多地址配送的最大允许数量" 36 | "Method name","名称" 37 | "Minimum order amount","最小订单金额" 38 | "N/A","(无)" 39 | "None","无" 40 | "Options","选项" 41 | "Order Subtotal (and above)","订单小计(及以上)" 42 | "Origin","发送地" 43 | "Per Order","每单" 44 | "Per Package","每包" 45 | "Percent","百分比" 46 | "Price","价格" 47 | "Price vs. Destination","价格 : 目的地" 48 | "Region/State","区/州/省" 49 | "Service Type:","服务类型:" 50 | "Ship to Specific countries","发货到指定国家" 51 | "Ship to applicable countries","发货到适用国家" 52 | "Shipment #","货单#" 53 | "Shipped or billed on:","发货或账单日期:" 54 | "Shipping Methods","配送方式" 55 | "Shipping Methods Section","配送方式单元" 56 | "Shipping Settings","配送设置" 57 | "Shipping Settings Section","配送设置单元" 58 | "Show method if not applicable","显示不可用的方式" 59 | "Signed by:","签收人:" 60 | "Sort order","排序" 61 | "Status:","状态:" 62 | "Store Pickup","店内取货" 63 | "Table rates","表运费" 64 | "The shipping module is not available for selected delivery country","该配送模块不适用所选的递送国家" 65 | "There is no tracking available for this shipment.","此货单没有可用追踪方式。" 66 | "There is no tracking available.","无追踪方式。" 67 | "This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.","无此配送方式。如您想使用这一配送方式,请联系我们。" 68 | "Title","标题" 69 | "Track:","追踪:" 70 | "Tracking Number:","物流追踪号:" 71 | "Tracking information is currently not available. Please ","尚无物流追踪信息, 请 " 72 | "Tracking information is currently unavailable.","尚无物流追踪信息。" 73 | "Type","类型" 74 | "Weight (and above)","重量(及以上)" 75 | "Weight vs. Destination","重量 : 目的地" 76 | "Weight:","重量:" 77 | "ZIP/Postal Code","邮编" 78 | "contact us","联系我们" 79 | "Table Rates","阶梯运费" 80 | "Method Name","运费计算方式" 81 | "Ship to Applicable Countries","可以配送的国家" 82 | "Ship to Specific Countries","指定配送国家" 83 | "Show Method if Not Applicable","如果无法配送显示配送方式" 84 | "Sort Order","排序" 85 | "Minimum Order Amount","最小订单金额" 86 | "Include Virtual Products in Price Calculation","运费计假包括虚拟商品" 87 | "Tracking Information","物流追踪" --------------------------------------------------------------------------------