lokka 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. data/Gemfile +48 -0
  2. data/LICENSE +20 -0
  3. data/README.ja.rdoc +46 -0
  4. data/README.rdoc +46 -0
  5. data/Rakefile +116 -0
  6. data/VERSION +1 -0
  7. data/bin/autotest +16 -0
  8. data/bin/bluefeather +16 -0
  9. data/bin/convert_to_should_syntax +16 -0
  10. data/bin/css2sass +16 -0
  11. data/bin/edit_json.rb +16 -0
  12. data/bin/erubis +16 -0
  13. data/bin/exceptional +16 -0
  14. data/bin/haml +16 -0
  15. data/bin/html2haml +16 -0
  16. data/bin/jeweler +16 -0
  17. data/bin/lokka +4 -0
  18. data/bin/prettify_json.rb +16 -0
  19. data/bin/rackup +16 -0
  20. data/bin/rake +16 -0
  21. data/bin/rcov +16 -0
  22. data/bin/sass +16 -0
  23. data/bin/sass-convert +16 -0
  24. data/bin/tilt +16 -0
  25. data/bin/unit_diff +16 -0
  26. data/config.ru +3 -0
  27. data/config.yml +4 -0
  28. data/i18n/en.yml +149 -0
  29. data/i18n/ja.yml +149 -0
  30. data/init.rb +7 -0
  31. data/install.rb +16 -0
  32. data/lib/lokka.rb +138 -0
  33. data/lib/lokka/app.rb +562 -0
  34. data/lib/lokka/before.rb +29 -0
  35. data/lib/lokka/bread_crumb.rb +34 -0
  36. data/lib/lokka/category.rb +33 -0
  37. data/lib/lokka/comment.rb +26 -0
  38. data/lib/lokka/entry.rb +70 -0
  39. data/lib/lokka/helpers.rb +214 -0
  40. data/lib/lokka/option.rb +23 -0
  41. data/lib/lokka/site.rb +19 -0
  42. data/lib/lokka/tag.rb +5 -0
  43. data/lib/lokka/theme.rb +17 -0
  44. data/lib/lokka/user.rb +77 -0
  45. data/lib/sqlite3.dll +0 -0
  46. data/lokka.exe +0 -0
  47. data/lokka.exy +15 -0
  48. data/lokka.gemspec +373 -0
  49. data/lokka.ico +0 -0
  50. data/lokka.rb +11 -0
  51. data/public/admin/categories/edit.haml +6 -0
  52. data/public/admin/categories/form.haml +18 -0
  53. data/public/admin/categories/index.haml +15 -0
  54. data/public/admin/categories/new.haml +5 -0
  55. data/public/admin/comments/edit.haml +6 -0
  56. data/public/admin/comments/form.haml +29 -0
  57. data/public/admin/comments/index.haml +22 -0
  58. data/public/admin/comments/new.haml +5 -0
  59. data/public/admin/css/editor.css +10 -0
  60. data/public/admin/css/jquery.cleditor.css +24 -0
  61. data/public/admin/css/style.css +710 -0
  62. data/public/admin/edit.haml +42 -0
  63. data/public/admin/favicon.ico +0 -0
  64. data/public/admin/images/add.png +0 -0
  65. data/public/admin/images/aside_arrow.png +0 -0
  66. data/public/admin/images/buttons.gif +0 -0
  67. data/public/admin/images/category.png +0 -0
  68. data/public/admin/images/comment.png +0 -0
  69. data/public/admin/images/dashboard.png +0 -0
  70. data/public/admin/images/file.png +0 -0
  71. data/public/admin/images/files.png +0 -0
  72. data/public/admin/images/mail-attachment.png +0 -0
  73. data/public/admin/images/plugin.png +0 -0
  74. data/public/admin/images/post.png +0 -0
  75. data/public/admin/images/setting.png +0 -0
  76. data/public/admin/images/tag.png +0 -0
  77. data/public/admin/images/theme.png +0 -0
  78. data/public/admin/images/toolbar.gif +0 -0
  79. data/public/admin/images/user.png +0 -0
  80. data/public/admin/index.haml +1 -0
  81. data/public/admin/js/editor.js +7 -0
  82. data/public/admin/js/jquery.cleditor.js +1132 -0
  83. data/public/admin/js/jquery.cleditor.min.js +31 -0
  84. data/public/admin/layout.haml +91 -0
  85. data/public/admin/pages/edit.haml +6 -0
  86. data/public/admin/pages/form.haml +33 -0
  87. data/public/admin/pages/index.haml +23 -0
  88. data/public/admin/pages/new.haml +5 -0
  89. data/public/admin/plugins/index.haml +4 -0
  90. data/public/admin/posts/edit.haml +6 -0
  91. data/public/admin/posts/form.haml +33 -0
  92. data/public/admin/posts/index.haml +23 -0
  93. data/public/admin/posts/new.haml +5 -0
  94. data/public/admin/show.haml +7 -0
  95. data/public/admin/signup.haml +17 -0
  96. data/public/admin/site/edit.haml +13 -0
  97. data/public/admin/tags/edit.haml +6 -0
  98. data/public/admin/tags/form.haml +10 -0
  99. data/public/admin/tags/index.haml +19 -0
  100. data/public/admin/themes/index.haml +13 -0
  101. data/public/admin/users/edit.haml +6 -0
  102. data/public/admin/users/form.haml +22 -0
  103. data/public/admin/users/index.haml +24 -0
  104. data/public/admin/users/new.haml +5 -0
  105. data/public/plugin/lokka-google_analytics/lib/lokka/google_analytics.rb +29 -0
  106. data/public/plugin/lokka-google_analytics/views/index.haml +15 -0
  107. data/public/plugin/lokka-hello/lib/lokka/hello.rb +15 -0
  108. data/public/plugin/lokka-markdown/lib/lokka/markdown.rb +12 -0
  109. data/public/plugin/lokka-rbconfig/lib/lokka/rbconfig.rb +11 -0
  110. data/public/plugin/lokka-rbconfig/views/index.haml +7 -0
  111. data/public/plugin/lokka-rbconfig/views/style.css +12 -0
  112. data/public/system/404.haml +20 -0
  113. data/public/system/500.haml +19 -0
  114. data/public/system/comments/form.haml +22 -0
  115. data/public/system/favicon.ico +0 -0
  116. data/public/system/index.builder +25 -0
  117. data/public/system/style.css +8 -0
  118. data/public/theme/default/entries.erb +40 -0
  119. data/public/theme/default/entry.erb +23 -0
  120. data/public/theme/default/layout.erb +74 -0
  121. data/public/theme/default/quote.gif +0 -0
  122. data/public/theme/default/screenshot.png +0 -0
  123. data/public/theme/default/style.css +1147 -0
  124. data/public/theme/jarvi/entries.erb +26 -0
  125. data/public/theme/jarvi/entry.erb +14 -0
  126. data/public/theme/jarvi/favicon.ico +0 -0
  127. data/public/theme/jarvi/images/aside_dt.gif +0 -0
  128. data/public/theme/jarvi/images/aside_dt.png +0 -0
  129. data/public/theme/jarvi/images/footer.gif +0 -0
  130. data/public/theme/jarvi/images/footer.psd +0 -0
  131. data/public/theme/jarvi/images/header_deascription_ul.gif +0 -0
  132. data/public/theme/jarvi/images/header_language.gif +0 -0
  133. data/public/theme/jarvi/images/header_nav.gif +0 -0
  134. data/public/theme/jarvi/images/html.gif +0 -0
  135. data/public/theme/jarvi/images/index_content.gif +0 -0
  136. data/public/theme/jarvi/images/index_content_footer.gif +0 -0
  137. data/public/theme/jarvi/images/index_content_header.gif +0 -0
  138. data/public/theme/jarvi/images/index_header_nav.gif +0 -0
  139. data/public/theme/jarvi/images/section_header_title.gif +0 -0
  140. data/public/theme/jarvi/images/wide_content.gif +0 -0
  141. data/public/theme/jarvi/images/wide_content_body.gif +0 -0
  142. data/public/theme/jarvi/images/wide_content_h3.gif +0 -0
  143. data/public/theme/jarvi/layout.erb +55 -0
  144. data/public/theme/jarvi/screenshot.png +0 -0
  145. data/public/theme/jarvi/style.css +618 -0
  146. data/public/theme/lokka-org/article.haml +9 -0
  147. data/public/theme/lokka-org/entries.haml +9 -0
  148. data/public/theme/lokka-org/entry.haml +1 -0
  149. data/public/theme/lokka-org/favicon.ico +0 -0
  150. data/public/theme/lokka-org/images/aside_dt.gif +0 -0
  151. data/public/theme/lokka-org/images/aside_dt.png +0 -0
  152. data/public/theme/lokka-org/images/download_button.jpg +0 -0
  153. data/public/theme/lokka-org/images/footer.gif +0 -0
  154. data/public/theme/lokka-org/images/footer.psd +0 -0
  155. data/public/theme/lokka-org/images/header_capture.gif +0 -0
  156. data/public/theme/lokka-org/images/header_capture.jpg +0 -0
  157. data/public/theme/lokka-org/images/header_capture_a.gif +0 -0
  158. data/public/theme/lokka-org/images/header_deascription_ul.gif +0 -0
  159. data/public/theme/lokka-org/images/header_h1_a.gif +0 -0
  160. data/public/theme/lokka-org/images/header_language.gif +0 -0
  161. data/public/theme/lokka-org/images/header_nav.gif +0 -0
  162. data/public/theme/lokka-org/images/heder_nav_home.gif +0 -0
  163. data/public/theme/lokka-org/images/heder_nav_home.jpg +0 -0
  164. data/public/theme/lokka-org/images/html.gif +0 -0
  165. data/public/theme/lokka-org/images/index_content.gif +0 -0
  166. data/public/theme/lokka-org/images/index_content_footer.gif +0 -0
  167. data/public/theme/lokka-org/images/index_content_header.gif +0 -0
  168. data/public/theme/lokka-org/images/index_header_h1.gif +0 -0
  169. data/public/theme/lokka-org/images/index_header_nav.gif +0 -0
  170. data/public/theme/lokka-org/images/language_a.png +0 -0
  171. data/public/theme/lokka-org/images/section_header_title.gif +0 -0
  172. data/public/theme/lokka-org/images/wide_content.gif +0 -0
  173. data/public/theme/lokka-org/images/wide_content_body.gif +0 -0
  174. data/public/theme/lokka-org/images/wide_content_h3.gif +0 -0
  175. data/public/theme/lokka-org/index.haml +5 -0
  176. data/public/theme/lokka-org/layout.haml +72 -0
  177. data/public/theme/lokka-org/quote.gif +0 -0
  178. data/public/theme/lokka-org/screenshot.png +0 -0
  179. data/public/theme/lokka-org/style.css +806 -0
  180. data/public/theme/p0t/article.haml +10 -0
  181. data/public/theme/p0t/entries.haml +9 -0
  182. data/public/theme/p0t/entry.haml +7 -0
  183. data/public/theme/p0t/favicon.ico +0 -0
  184. data/public/theme/p0t/images/quote.gif +0 -0
  185. data/public/theme/p0t/layout.haml +68 -0
  186. data/public/theme/p0t/screenshot.png +0 -0
  187. data/public/theme/p0t/style.css +359 -0
  188. data/public/theme/vicuna-mono/entries.erb +40 -0
  189. data/public/theme/vicuna-mono/entry.erb +23 -0
  190. data/public/theme/vicuna-mono/layout.erb +76 -0
  191. data/public/theme/vicuna-mono/quote.gif +0 -0
  192. data/public/theme/vicuna-mono/screenshot.png +0 -0
  193. data/public/theme/vicuna-mono/style.css +1156 -0
  194. data/test/helper.rb +23 -0
  195. data/test/lokka/app_test.rb +15 -0
  196. data/test/lokka/post_test.rb +17 -0
  197. metadata +965 -0
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
3
+ require 'lokka'
4
+ Lokka::App.run! :port => 9646
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'prettify_json.rb' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('json_pure', 'prettify_json.rb')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rackup' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rack', 'rackup')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake', 'rake')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rcov' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rcov', 'rcov')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'sass' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('haml', 'sass')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'sass-convert' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('haml', 'sass-convert')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'tilt' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('tilt', 'tilt')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'unit_diff' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('autotest', 'unit_diff')
@@ -0,0 +1,3 @@
1
+ Encoding.default_external = 'utf-8' if defined?(Encoding) && Encoding.respond_to?('default_external')
2
+ require './init'
3
+ run Lokka::App
@@ -0,0 +1,4 @@
1
+ production:
2
+ dsn: sqlite3://<%= root %>/production.sqlite3
3
+ development:
4
+ dsn: sqlite3://<%= root %>/development.sqlite3
@@ -0,0 +1,149 @@
1
+ demo: Demo
2
+ contributor: Contributor
3
+ english: English
4
+ japanese: 日本語
5
+ option: Option
6
+ error: Error
7
+ profile: Profile
8
+ next: Next
9
+ previous: Previous
10
+ older_post: Older Post
11
+ newer_post: Newer Post
12
+ older: Older
13
+ newer: Newer
14
+ admin: Admin
15
+ admin_page: Admin page
16
+ dashboard: Dashboard
17
+ login: Login
18
+ logout: Logout
19
+ signup: Signup
20
+ users: Users
21
+ categories: Categories
22
+ posts: Posts
23
+ pages: Pages
24
+ comments: Comments
25
+ themes: Themes
26
+ plugins: Plugins
27
+ settings: Settings
28
+ site: Site
29
+ list: List
30
+ new: New
31
+ edit: Edit
32
+ delete: Delete
33
+ about: About this site
34
+ recent_entries: Recent Entries
35
+ recent_comments: Recent Comments
36
+ tags: Tags
37
+ archives: Archives
38
+ search: Search
39
+ others: Others
40
+ feed: Feed
41
+ listing_posts: Listing Posts
42
+ listing_pages: Listing Pages
43
+ listing_categories: Listing Categories
44
+ listing_tags: Listing Tags
45
+ listing_comments: Listing Comments
46
+ listing_users: Listing Users
47
+ listing_themes: Listing Themes
48
+ listing_plugins: Listing Plugins
49
+ new_post: New Post
50
+ new_page: New Page
51
+ new_category: New Category
52
+ new_user: New User
53
+ new_comment: New Comment
54
+ edit_post: Edit Post
55
+ edit_page: Edit Page
56
+ edit_category: Edit Category
57
+ edit_comment: Edit Comment
58
+ edit_tag: Edit Tag
59
+ edit_user: Edit User
60
+ edit_site: Edit Site
61
+ post_was_successfully_created: Post was successfully created.
62
+ post_was_successfully_updated: Post was successfully updated.
63
+ post_was_successfully_deleted: Post was successfully deleted.
64
+ page_was_successfully_created: Page was successfully created.
65
+ page_was_successfully_updated: Page was successfully updated.
66
+ page_was_successfully_deleted: Page was successfully deleted.
67
+ comment_was_successfully_created: Comment was successfully created.
68
+ comment_was_successfully_updated: Comment was successfully updated.
69
+ comment_was_successfully_deleted: Comment was successfully deleted.
70
+ category_was_successfully_created: Category was successfully created.
71
+ category_was_successfully_updated: Category was successfully updated.
72
+ category_was_successfully_deleted: Category was successfully deleted.
73
+ tag_was_successfully_updated: Tag was successfully updated.
74
+ tag_was_successfully_deleted: Tag was successfully deleted.
75
+ user_was_successfully_created: User was successfully created.
76
+ user_was_successfully_updated: User was successfully updated.
77
+ user_was_successfully_deleted: User was successfully deleted.
78
+ site_was_successfully_updated: Site was successfully updated.
79
+ theme_was_successfully_updated: Theme was successfully updated.
80
+ may_i_change_the_theme: May I change the theme?
81
+ are_you_sure: Are you sure?
82
+ not_select: Not Select
83
+ no_category: No Cateogry
84
+ no_tag: No Tag
85
+ no_post: No Post
86
+ no_page: No Page
87
+ no_user: No User
88
+ no_comment: No Comment
89
+ no_plugin: No Plugin
90
+ your_name_or_password_is_incorrect: Your username or password is incorrect.
91
+ logged_in_successfully: Logged in successfully.
92
+ page:
93
+ id: ID
94
+ slug: Slug
95
+ title: Title
96
+ body: Body
97
+ user: Author
98
+ category: Category
99
+ tags: Tags
100
+ created_at: Created at
101
+ updated_at: Updated at
102
+ post:
103
+ id: ID
104
+ slug: Slug
105
+ title: Title
106
+ body: Body
107
+ user: Author
108
+ category: Category
109
+ tags: Tags
110
+ created_at: Created at
111
+ updated_at: Updated at
112
+ category:
113
+ id: ID
114
+ slug: Slug
115
+ title: Title
116
+ description: Description
117
+ created_at: Created at
118
+ updated_at: Updated at
119
+ tag:
120
+ name: Name
121
+ user:
122
+ id: ID
123
+ name: Name
124
+ email: Email
125
+ password: Password
126
+ password_confirmation: Password Confirmation
127
+ created_at: Created at
128
+ updated_at: Updated at
129
+ site:
130
+ id: ID
131
+ title: Title
132
+ description: Description
133
+ theme: Theme
134
+ created_at: Created at
135
+ updated_at: Updated at
136
+ comment:
137
+ id: ID
138
+ name: Name
139
+ body: Body
140
+ entry: Entry
141
+ homepage: Homepage
142
+ created_at: Created at
143
+ updated_at: Updated at
144
+ what_about_lokka: <p>Lokka is a blogging/CMS tool for the personal cloud.</p><p>Users who are accustomed to WordPress or other existing systems like it will find it easy to manage.<br />It's easy on theme designers, and provides a clean plugin API for Ruby developers.</p>
145
+ home: Home
146
+ getting_started: Getting Started
147
+ download: Download
148
+ source_code: Souce Code
149
+ post_comment: Comment
@@ -0,0 +1,149 @@
1
+ demo: デモ
2
+ contributor: 開発参加
3
+ english: English
4
+ japanese: 日本語
5
+ option: オプション
6
+ error: エラー
7
+ profile: プロフィール
8
+ next: 次
9
+ previous: 前
10
+ older_post: 古い記事
11
+ newer_post: 新しい記事
12
+ older: もっと古いもの
13
+ newer: もっと新しいもの
14
+ admin: 管理者
15
+ admin_page: 管理画面
16
+ dashboard: ダッシュボード
17
+ login: ログイン
18
+ logout: ログアウト
19
+ signup: 登録
20
+ users: ユーザー
21
+ categories: カテゴリー
22
+ posts: 投稿
23
+ pages: ページ
24
+ comments: コメント
25
+ themes: テーマ
26
+ plugins: プラグイン
27
+ settings: 設定
28
+ site: サイト
29
+ list: 一覧
30
+ new: 登録
31
+ edit: 編集
32
+ delete: 削除
33
+ about: このサイトについて
34
+ recent_entries: 最近のエントリー
35
+ recent_comments: 最近のコメント
36
+ tags: タグ
37
+ archives: アーカイブ
38
+ search: 検索
39
+ others: その他
40
+ feed: フィード
41
+ listing_posts: 投稿一覧
42
+ listing_pages: ページ一覧
43
+ listing_categories: カテゴリー一覧
44
+ listing_tags: タグ一覧
45
+ listing_comments: コメント一覧
46
+ listing_users: ユーザー一覧
47
+ listing_themes: テーマ一覧
48
+ listing_plugins: プラグイン一覧
49
+ new_post: 投稿登録
50
+ new_page: ページ登録
51
+ new_category: カテゴリー登録
52
+ new_user: ユーザー登録
53
+ new_comment: コメント登録
54
+ edit_post: 投稿編集
55
+ edit_page: ページ編集
56
+ edit_category: カテゴリー編集
57
+ edit_comment: コメント編集
58
+ edit_tag: タグ編集
59
+ edit_user: ユーザー編集
60
+ edit_site: サイト編集
61
+ post_was_successfully_created: 投稿を作成しました。
62
+ post_was_successfully_updated: 投稿を更新しました。
63
+ post_was_successfully_deleted: 投稿を削除しました。
64
+ page_was_successfully_created: ページを作成しました。
65
+ page_was_successfully_updated: ページを更新しました。
66
+ page_was_successfully_deleted: ページを削除しました。
67
+ comment_was_successfully_created: コメントを作成しました。
68
+ comment_was_successfully_updated: コメントを更新しました。
69
+ comment_was_successfully_deleted: コメントを削除しました。
70
+ category_was_successfully_created: カテゴリーを作成しました。
71
+ category_was_successfully_updated: カテゴリーを更新しました。
72
+ category_was_successfully_deleted: カテゴリーを削除しました。
73
+ tag_was_successfully_updated: タグを更新しました。
74
+ tag_was_successfully_deleted: タグを削除しました。
75
+ user_was_successfully_created: ユーザーを作成しました。
76
+ user_was_successfully_updated: ユーザーを更新しました。
77
+ user_was_successfully_deleted: ユーザーを削除しました。
78
+ site_was_successfully_updated: サイトを更新しました。
79
+ theme_was_successfully_updated: テーマを更新しました。
80
+ may_i_change_the_theme: テーマを変更してよろしいですか?
81
+ are_you_sure: 本当によろしいですか?
82
+ not_select: 未選択
83
+ no_category: カテゴリーがありません
84
+ no_tag: タグがありません
85
+ no_post: 投稿がありません
86
+ no_page: ページがありません
87
+ no_user: ユーザーがいません
88
+ no_comment: コメントがありません
89
+ no_plugin: プラグインがありません
90
+ your_name_or_password_is_incorrect: 名前かパスワードが違います。
91
+ logged_in_successfully: ログインしました。
92
+ page:
93
+ id: ID
94
+ slug: スラッグ
95
+ title: タイトル
96
+ body: 本文
97
+ user: 作成者
98
+ category: カテゴリー
99
+ tags: タグ
100
+ created_at: 作成日時
101
+ updated_at: 更新日時
102
+ post:
103
+ id: ID
104
+ slug: スラッグ
105
+ title: タイトル
106
+ body: 本文
107
+ user: 作成者
108
+ category: カテゴリー
109
+ tags: タグ
110
+ created_at: 作成日時
111
+ updated_at: 更新日時
112
+ category:
113
+ id: ID
114
+ slug: スラッグ
115
+ title: タイトル
116
+ description: 本文
117
+ created_at: 作成日時
118
+ updated_at: 更新日時
119
+ tag:
120
+ name: タグ名
121
+ user:
122
+ id: ID
123
+ name: 名前
124
+ email: Email
125
+ password: パスワード
126
+ password_confirmation: パスワード(確認)
127
+ created_at: 登録日時
128
+ updated_at: 更新日時
129
+ site:
130
+ id: ID
131
+ title: タイトル
132
+ description: 詳細
133
+ theme: テーマ
134
+ created_at: 作成日時
135
+ updated_at: 更新日時
136
+ comment:
137
+ id: ID
138
+ name: 名前
139
+ body: 本文
140
+ homepage: ホームページ
141
+ entry: エントリー
142
+ created_at: 作成日時
143
+ updated_at: 更新日時
144
+ what_about_lokka: <p>Lokka(ロッカ)はクラウド環境に対応したCMS/Blogツールです。</p><p>WordPressのような既存のツールに馴染んだユーザーにも簡単に扱えます。<br />テーマを作るデザイナーに優しく、RubyデベロッパーにクリーンなプラグインAPIを提供します。</p>
145
+ home: ホーム
146
+ getting_started: はじめよう
147
+ download: ダウンロード
148
+ source_code: ソースコード
149
+ post_comment: コメントする