diff --git a/.gitignore b/.gitignore index e43b0f9..4befed3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .DS_Store +.idea diff --git a/css/main.css b/css/main.css index 04fb949..e1b5464 100644 --- a/css/main.css +++ b/css/main.css @@ -21,6 +21,31 @@ section > div , footer > div{ font-weight: normal; padding: 48px 0px 58px; } +/***** lang *****/ +#change-lang{ + display: flex; + margin-top: 10px; + justify-content: center; + align-items: center; +} +#change-lang > label{ + font-size: 13px; +} + +#change-lang > select { + max-width: 100%; + height: 25px; + float: right; + margin-left: 5px; + padding: 0px 24px; + font-size: 13px; + line-height: 1.75; + color: #333; + background:none; + border: 1px solid #379ad9; + -ms-word-break: normal; + word-break: normal; +} /***** application *****/ #application > div{ @@ -176,14 +201,10 @@ section > div , footer > div{ .dots{ display: none !important; } -#thumbnail1{ - background-image: url( '../img/thumbnail1.png' ); -} -#thumbnail2{ - background-image: url( '../img/thumbnail2.png' ); -} -#thumbnail3{ - background-image: url( '../img/thumbnail3.png' ); +.thumbnail{ + width: 98px; + height: 78px; + object-fit: cover; } /***** function *****/ diff --git a/img/screenshots/en/1.png b/img/screenshots/en/1.png new file mode 100644 index 0000000..e844e82 Binary files /dev/null and b/img/screenshots/en/1.png differ diff --git a/img/screenshots/en/2.png b/img/screenshots/en/2.png new file mode 100644 index 0000000..2534070 Binary files /dev/null and b/img/screenshots/en/2.png differ diff --git a/img/screenshots/en/3.png b/img/screenshots/en/3.png new file mode 100644 index 0000000..82253b5 Binary files /dev/null and b/img/screenshots/en/3.png differ diff --git a/img/screenshot1.png b/img/screenshots/ja/1.png similarity index 100% rename from img/screenshot1.png rename to img/screenshots/ja/1.png diff --git a/img/screenshot2.png b/img/screenshots/ja/2.png similarity index 100% rename from img/screenshot2.png rename to img/screenshots/ja/2.png diff --git a/img/screenshot3.png b/img/screenshots/ja/3.png similarity index 100% rename from img/screenshot3.png rename to img/screenshots/ja/3.png diff --git a/img/thumbnails/en/thumbnail1.png b/img/thumbnails/en/thumbnail1.png new file mode 100644 index 0000000..b2aebd9 Binary files /dev/null and b/img/thumbnails/en/thumbnail1.png differ diff --git a/img/thumbnails/en/thumbnail2.png b/img/thumbnails/en/thumbnail2.png new file mode 100644 index 0000000..c9a4fcc Binary files /dev/null and b/img/thumbnails/en/thumbnail2.png differ diff --git a/img/thumbnails/en/thumbnail3.png b/img/thumbnails/en/thumbnail3.png new file mode 100644 index 0000000..c253d49 Binary files /dev/null and b/img/thumbnails/en/thumbnail3.png differ diff --git a/img/thumbnail1.png b/img/thumbnails/ja/thumbnail1.png similarity index 100% rename from img/thumbnail1.png rename to img/thumbnails/ja/thumbnail1.png diff --git a/img/thumbnail2.png b/img/thumbnails/ja/thumbnail2.png similarity index 100% rename from img/thumbnail2.png rename to img/thumbnails/ja/thumbnail2.png diff --git a/img/thumbnail3.png b/img/thumbnails/ja/thumbnail3.png similarity index 100% rename from img/thumbnail3.png rename to img/thumbnails/ja/thumbnail3.png diff --git a/index.html b/index.html index 8fb5c72..9dd5a8a 100644 --- a/index.html +++ b/index.html @@ -2,138 +2,225 @@ - - - - - Clipy - Clipboard extension app for macOS - - - - - - - - - - - - - - - - - - - - - - + + + + + Clipy - Clipboard extension app for macOS + + + + + + + + + + + + + + + + + + + + + + + + + + - -
- - - Fork me on GitHub - -
-
- -
- -

macOS スニペットアプリ

- Download - -

macOS 10.10以降

-
-
-
- -
-
-
-
    -
  • -
  • -
  • -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-

主な機能

- - -
-
- -
-
-

オープンソース

-

Clipyはオープンソースで公開されています。バグや不具合、要望等ありましたら、IssuePullRequestなどお待ちしています!日本語でも大丈夫です!

- -
-
- -
-
-

スペシャルサンクス

-

- Clipmenuをオープンソースとして公開していただき@naotaka氏に感謝いたします。このコードがなければリメイクという形で公開はありえませんでした。
-
- 現状機能が被ってしまっていますが、独自機能を追加してさらなる機能向上を目指していきます。本当にありがとうございました。 -

- -
-
- - - - - + +
+ + + + Fork me on GitHub +
+ + +
+
+
+ +
+ +

macOS + スニペットアプリ

+ Download +

macOS 10.10以降

+
+
+
+ +
+
+
+
    +
  • +
  • +
  • +
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+ +
+
+

主な機能

+ + +
+
+ +
+
+

オープンソース

+

+ Clipyはオープンソースで公開されています。バグや不具合、要望等ありましたら、 + Issue、 + PullRequest + などお待ちしています!日本語でも大丈夫です! +

+ +
+
+ +
+
+

スペシャルサンクス

+

+ Clipmenuをオープンソースとして公開していただき + @naotaka氏 + に感謝いたします。このコードがなければリメイクという形で公開はありえませんでした。
+
+ 現状機能が被ってしまっていますが、独自機能を追加してさらなる機能向上を目指していきます。本当にありがとうございました。 +

+ +
+
+ + + + diff --git a/locales/en/translation.json b/locales/en/translation.json new file mode 100644 index 0000000..a0eb58c --- /dev/null +++ b/locales/en/translation.json @@ -0,0 +1,37 @@ +{ + "app": { + "application-description": "macOS Snippet App", + "application-condition": "macOS 10.10 or later" + }, + "function": { + "title": "Main Functions", + "function-content": { + "1": "It is a clipboard extension application that supports multiple formats such as plain text and images.", + "2": "You can freely call up the menu with the shortcut key, and you can refer to the clipboard history at any time.", + "3": "Also, by registering a fixed phrase as a snippet, you can paste the fixed phrase at any time." + } + }, + "opensource": { + "title": "Open Source", + "help": "Clipy is open source. If you have any bugs, bugs, requests, etc,", + "waiting": "We are waiting for you! Japanese is fine too!" + }, + "img": { + "screenshots": { + "1": "img/screenshots/en/1.png", + "2": "img/screenshots/en/2.png", + "3": "img/screenshots/en/3.png" + }, + "thumbnails": { + "1": "img/thumbnails/en/thumbnail1.png", + "2": "img/thumbnails/en/thumbnail2.png", + "3": "img/thumbnails/en/thumbnail3.png" + } + }, + "thanks": { + "title": "Special thanks", + "clipmenu": "Clipmenu Is released as open source", + "naotaka": "Thank you. Without this code, it wouldn't have been possible to publish it in the form of a remake.", + "context": "The current functions have been covered, but we will aim to further improve the functions by adding unique functions. I'm really thankful to you." + } +} \ No newline at end of file diff --git a/locales/ja/translation.json b/locales/ja/translation.json new file mode 100644 index 0000000..9273c70 --- /dev/null +++ b/locales/ja/translation.json @@ -0,0 +1,37 @@ +{ + "app": { + "application-description": "macOS スニペットアプリ", + "application-condition": "macOS 10.10以降" + }, + "function": { + "title": "主な機能", + "function-content": { + "1": "プレーンテキストや画像といった複数の形式に対応したクリップボード拡張アプリです。", + "2": "ショートカットキーで自由にメニューを呼び出すことができ、いつでもクリップボードの履歴を参照できます。", + "3": "また、スニペットとして定型文を登録しておくことで、いつでも定型文をペーストできます。" + } + }, + "opensource": { + "title": "オープンソース", + "help": "Clipyはオープンソースで公開されています。バグや不具合、要望等ありましたら、", + "waiting": "などお待ちしています!日本語でも大丈夫です!" + }, + "img": { + "screenshots": { + "1": "img/screenshots/ja/1.png", + "2": "img/screenshots/ja/2.png", + "3": "img/screenshots/ja/3.png" + }, + "thumbnails": { + "1": "img/thumbnails/ja/thumbnail1.png", + "2": "img/thumbnails/ja/thumbnail2.png", + "3": "img/thumbnails/ja/thumbnail3.png" + } + }, + "thanks": { + "title": "スペシャルサンクス", + "clipmenu": "Clipmenuをオープンソースとして公開していただき", + "naotaka": "に感謝いたします。このコードがなければリメイクという形で公開はありえませんでした。", + "context": "現状機能が被ってしまっていますが、独自機能を追加してさらなる機能向上を目指していきます。本当にありがとうございました。" + } +} \ No newline at end of file