Last active
August 29, 2015 14:20
-
-
Save cscartjp/fa514bef48ca4bdea551 to your computer and use it in GitHub Desktop.
CS-Cart Advanced Add-on チュートリアル
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<addon scheme="3.0"> | |
<id>advanced_addon</id> | |
<version>1.0</version> | |
<priority>100500</priority> | |
<position>0</position> | |
<status>active</status> | |
<default_language>ja</default_language> | |
<queries> | |
<item>DROP TABLE IF EXISTS ?:advanced_addon_data;</item> | |
<item> | |
CREATE TABLE `?:advanced_addon_data` ( | |
`user_id` int(11) unsigned NOT NULL DEFAULT 0, | |
`categories` text NOT NULL DEFAULT '', | |
PRIMARY KEY (`user_id`) | |
) Engine=MyISAM DEFAULT CHARSET UTF8; | |
</item> | |
<item for="uninstall">DROP TABLE IF EXISTS ?:advanced_addon_data;</item> | |
</queries> | |
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msgid "" | |
msgstr "Project-Id-Version: tygh" | |
"Content-Type: text/plain; charset=UTF-8\n" | |
"Language-Team: Japanese\n" | |
"Language: ja_JP\n" | |
msgctxt "Addons::name::advanced_addon" | |
msgid "Advanced Add-on" | |
msgstr "アドバンスド・アドオン" | |
msgctxt "Addons::description::advanced_addon" | |
msgid "This is Advanced Add-on tutolial." | |
msgstr "アドオンの学習を行います。" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment