lokka 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +48 -0
- data/LICENSE +20 -0
- data/README.ja.rdoc +46 -0
- data/README.rdoc +46 -0
- data/Rakefile +116 -0
- data/VERSION +1 -0
- data/bin/autotest +16 -0
- data/bin/bluefeather +16 -0
- data/bin/convert_to_should_syntax +16 -0
- data/bin/css2sass +16 -0
- data/bin/edit_json.rb +16 -0
- data/bin/erubis +16 -0
- data/bin/exceptional +16 -0
- data/bin/haml +16 -0
- data/bin/html2haml +16 -0
- data/bin/jeweler +16 -0
- data/bin/lokka +4 -0
- data/bin/prettify_json.rb +16 -0
- data/bin/rackup +16 -0
- data/bin/rake +16 -0
- data/bin/rcov +16 -0
- data/bin/sass +16 -0
- data/bin/sass-convert +16 -0
- data/bin/tilt +16 -0
- data/bin/unit_diff +16 -0
- data/config.ru +3 -0
- data/config.yml +4 -0
- data/i18n/en.yml +149 -0
- data/i18n/ja.yml +149 -0
- data/init.rb +7 -0
- data/install.rb +16 -0
- data/lib/lokka.rb +138 -0
- data/lib/lokka/app.rb +562 -0
- data/lib/lokka/before.rb +29 -0
- data/lib/lokka/bread_crumb.rb +34 -0
- data/lib/lokka/category.rb +33 -0
- data/lib/lokka/comment.rb +26 -0
- data/lib/lokka/entry.rb +70 -0
- data/lib/lokka/helpers.rb +214 -0
- data/lib/lokka/option.rb +23 -0
- data/lib/lokka/site.rb +19 -0
- data/lib/lokka/tag.rb +5 -0
- data/lib/lokka/theme.rb +17 -0
- data/lib/lokka/user.rb +77 -0
- data/lib/sqlite3.dll +0 -0
- data/lokka.exe +0 -0
- data/lokka.exy +15 -0
- data/lokka.gemspec +373 -0
- data/lokka.ico +0 -0
- data/lokka.rb +11 -0
- data/public/admin/categories/edit.haml +6 -0
- data/public/admin/categories/form.haml +18 -0
- data/public/admin/categories/index.haml +15 -0
- data/public/admin/categories/new.haml +5 -0
- data/public/admin/comments/edit.haml +6 -0
- data/public/admin/comments/form.haml +29 -0
- data/public/admin/comments/index.haml +22 -0
- data/public/admin/comments/new.haml +5 -0
- data/public/admin/css/editor.css +10 -0
- data/public/admin/css/jquery.cleditor.css +24 -0
- data/public/admin/css/style.css +710 -0
- data/public/admin/edit.haml +42 -0
- data/public/admin/favicon.ico +0 -0
- data/public/admin/images/add.png +0 -0
- data/public/admin/images/aside_arrow.png +0 -0
- data/public/admin/images/buttons.gif +0 -0
- data/public/admin/images/category.png +0 -0
- data/public/admin/images/comment.png +0 -0
- data/public/admin/images/dashboard.png +0 -0
- data/public/admin/images/file.png +0 -0
- data/public/admin/images/files.png +0 -0
- data/public/admin/images/mail-attachment.png +0 -0
- data/public/admin/images/plugin.png +0 -0
- data/public/admin/images/post.png +0 -0
- data/public/admin/images/setting.png +0 -0
- data/public/admin/images/tag.png +0 -0
- data/public/admin/images/theme.png +0 -0
- data/public/admin/images/toolbar.gif +0 -0
- data/public/admin/images/user.png +0 -0
- data/public/admin/index.haml +1 -0
- data/public/admin/js/editor.js +7 -0
- data/public/admin/js/jquery.cleditor.js +1132 -0
- data/public/admin/js/jquery.cleditor.min.js +31 -0
- data/public/admin/layout.haml +91 -0
- data/public/admin/pages/edit.haml +6 -0
- data/public/admin/pages/form.haml +33 -0
- data/public/admin/pages/index.haml +23 -0
- data/public/admin/pages/new.haml +5 -0
- data/public/admin/plugins/index.haml +4 -0
- data/public/admin/posts/edit.haml +6 -0
- data/public/admin/posts/form.haml +33 -0
- data/public/admin/posts/index.haml +23 -0
- data/public/admin/posts/new.haml +5 -0
- data/public/admin/show.haml +7 -0
- data/public/admin/signup.haml +17 -0
- data/public/admin/site/edit.haml +13 -0
- data/public/admin/tags/edit.haml +6 -0
- data/public/admin/tags/form.haml +10 -0
- data/public/admin/tags/index.haml +19 -0
- data/public/admin/themes/index.haml +13 -0
- data/public/admin/users/edit.haml +6 -0
- data/public/admin/users/form.haml +22 -0
- data/public/admin/users/index.haml +24 -0
- data/public/admin/users/new.haml +5 -0
- data/public/plugin/lokka-google_analytics/lib/lokka/google_analytics.rb +29 -0
- data/public/plugin/lokka-google_analytics/views/index.haml +15 -0
- data/public/plugin/lokka-hello/lib/lokka/hello.rb +15 -0
- data/public/plugin/lokka-markdown/lib/lokka/markdown.rb +12 -0
- data/public/plugin/lokka-rbconfig/lib/lokka/rbconfig.rb +11 -0
- data/public/plugin/lokka-rbconfig/views/index.haml +7 -0
- data/public/plugin/lokka-rbconfig/views/style.css +12 -0
- data/public/system/404.haml +20 -0
- data/public/system/500.haml +19 -0
- data/public/system/comments/form.haml +22 -0
- data/public/system/favicon.ico +0 -0
- data/public/system/index.builder +25 -0
- data/public/system/style.css +8 -0
- data/public/theme/default/entries.erb +40 -0
- data/public/theme/default/entry.erb +23 -0
- data/public/theme/default/layout.erb +74 -0
- data/public/theme/default/quote.gif +0 -0
- data/public/theme/default/screenshot.png +0 -0
- data/public/theme/default/style.css +1147 -0
- data/public/theme/jarvi/entries.erb +26 -0
- data/public/theme/jarvi/entry.erb +14 -0
- data/public/theme/jarvi/favicon.ico +0 -0
- data/public/theme/jarvi/images/aside_dt.gif +0 -0
- data/public/theme/jarvi/images/aside_dt.png +0 -0
- data/public/theme/jarvi/images/footer.gif +0 -0
- data/public/theme/jarvi/images/footer.psd +0 -0
- data/public/theme/jarvi/images/header_deascription_ul.gif +0 -0
- data/public/theme/jarvi/images/header_language.gif +0 -0
- data/public/theme/jarvi/images/header_nav.gif +0 -0
- data/public/theme/jarvi/images/html.gif +0 -0
- data/public/theme/jarvi/images/index_content.gif +0 -0
- data/public/theme/jarvi/images/index_content_footer.gif +0 -0
- data/public/theme/jarvi/images/index_content_header.gif +0 -0
- data/public/theme/jarvi/images/index_header_nav.gif +0 -0
- data/public/theme/jarvi/images/section_header_title.gif +0 -0
- data/public/theme/jarvi/images/wide_content.gif +0 -0
- data/public/theme/jarvi/images/wide_content_body.gif +0 -0
- data/public/theme/jarvi/images/wide_content_h3.gif +0 -0
- data/public/theme/jarvi/layout.erb +55 -0
- data/public/theme/jarvi/screenshot.png +0 -0
- data/public/theme/jarvi/style.css +618 -0
- data/public/theme/lokka-org/article.haml +9 -0
- data/public/theme/lokka-org/entries.haml +9 -0
- data/public/theme/lokka-org/entry.haml +1 -0
- data/public/theme/lokka-org/favicon.ico +0 -0
- data/public/theme/lokka-org/images/aside_dt.gif +0 -0
- data/public/theme/lokka-org/images/aside_dt.png +0 -0
- data/public/theme/lokka-org/images/download_button.jpg +0 -0
- data/public/theme/lokka-org/images/footer.gif +0 -0
- data/public/theme/lokka-org/images/footer.psd +0 -0
- data/public/theme/lokka-org/images/header_capture.gif +0 -0
- data/public/theme/lokka-org/images/header_capture.jpg +0 -0
- data/public/theme/lokka-org/images/header_capture_a.gif +0 -0
- data/public/theme/lokka-org/images/header_deascription_ul.gif +0 -0
- data/public/theme/lokka-org/images/header_h1_a.gif +0 -0
- data/public/theme/lokka-org/images/header_language.gif +0 -0
- data/public/theme/lokka-org/images/header_nav.gif +0 -0
- data/public/theme/lokka-org/images/heder_nav_home.gif +0 -0
- data/public/theme/lokka-org/images/heder_nav_home.jpg +0 -0
- data/public/theme/lokka-org/images/html.gif +0 -0
- data/public/theme/lokka-org/images/index_content.gif +0 -0
- data/public/theme/lokka-org/images/index_content_footer.gif +0 -0
- data/public/theme/lokka-org/images/index_content_header.gif +0 -0
- data/public/theme/lokka-org/images/index_header_h1.gif +0 -0
- data/public/theme/lokka-org/images/index_header_nav.gif +0 -0
- data/public/theme/lokka-org/images/language_a.png +0 -0
- data/public/theme/lokka-org/images/section_header_title.gif +0 -0
- data/public/theme/lokka-org/images/wide_content.gif +0 -0
- data/public/theme/lokka-org/images/wide_content_body.gif +0 -0
- data/public/theme/lokka-org/images/wide_content_h3.gif +0 -0
- data/public/theme/lokka-org/index.haml +5 -0
- data/public/theme/lokka-org/layout.haml +72 -0
- data/public/theme/lokka-org/quote.gif +0 -0
- data/public/theme/lokka-org/screenshot.png +0 -0
- data/public/theme/lokka-org/style.css +806 -0
- data/public/theme/p0t/article.haml +10 -0
- data/public/theme/p0t/entries.haml +9 -0
- data/public/theme/p0t/entry.haml +7 -0
- data/public/theme/p0t/favicon.ico +0 -0
- data/public/theme/p0t/images/quote.gif +0 -0
- data/public/theme/p0t/layout.haml +68 -0
- data/public/theme/p0t/screenshot.png +0 -0
- data/public/theme/p0t/style.css +359 -0
- data/public/theme/vicuna-mono/entries.erb +40 -0
- data/public/theme/vicuna-mono/entry.erb +23 -0
- data/public/theme/vicuna-mono/layout.erb +76 -0
- data/public/theme/vicuna-mono/quote.gif +0 -0
- data/public/theme/vicuna-mono/screenshot.png +0 -0
- data/public/theme/vicuna-mono/style.css +1156 -0
- data/test/helper.rb +23 -0
- data/test/lokka/app_test.rb +15 -0
- data/test/lokka/post_test.rb +17 -0
- metadata +965 -0
data/bin/lokka
ADDED
|
@@ -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')
|
data/bin/rackup
ADDED
|
@@ -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')
|
data/bin/rake
ADDED
|
@@ -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')
|
data/bin/rcov
ADDED
|
@@ -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')
|
data/bin/sass
ADDED
|
@@ -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')
|
data/bin/sass-convert
ADDED
|
@@ -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')
|
data/bin/tilt
ADDED
|
@@ -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')
|
data/bin/unit_diff
ADDED
|
@@ -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')
|
data/config.ru
ADDED
data/config.yml
ADDED
data/i18n/en.yml
ADDED
|
@@ -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
|
data/i18n/ja.yml
ADDED
|
@@ -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: コメントする
|