Skip to content

Commit

Permalink
feat: update locales
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuki-joto committed Aug 8, 2023
1 parent 9cfddd3 commit f6d4f83
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
run: |
sudo apt-get update -y
sudo apt-get -yqq install libpq-dev postgresql-client
- name: Set up Ruby 2.7
- name: Set up Ruby 3.0.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.0.6
bundler-cache: true
- name: Lint by RuboCop
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rails-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ jobs:
which convert
convert -version
- name: Set up Ruby 2.7
- name: Set up Ruby 3.0.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.0.6
bundler-cache: true

- name: setup Node
uses: actions/setup-node@v3
with:
node-version: 16.9.1
node-version: 16.13.0
cache: 'yarn'
- name: install yarn
run: |
npm i -g [email protected].5
npm i -g [email protected].15
yarn install --frozen-lockfile
- name: create assets precompile cache key
Expand Down
10 changes: 10 additions & 0 deletions config/locales/ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,16 @@ ja:
refuse:
modal_button: 同意しない
participatory_processes:
pages:
home:
highlighted_processes:
active_processes: アクティブな参加型プロセス
see_all_processes: 全ての参加型プロセス
active_step: アクティブ・フェーズ
more_information: もっと見る
participate: 参加する
participate_in: 参加型プロセス %{resource_name} に参加する
processes_button_title: すべてのプロセスを表示する
participatory_processes:
filters:
explanations:
Expand Down
14 changes: 13 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2023_07_19_081068) do
ActiveRecord::Schema.define(version: 2023_08_08_035643) do

# These are extensions that must be enabled in order to support this database
enable_extension "ltree"
Expand Down Expand Up @@ -1481,6 +1481,18 @@
t.index ["reset_password_token"], name: "index_decidim_system_admins_on_reset_password_token", unique: true
end

create_table "decidim_templates_templates", force: :cascade do |t|
t.integer "decidim_organization_id", null: false
t.string "templatable_type"
t.bigint "templatable_id"
t.jsonb "name", null: false
t.jsonb "description"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["decidim_organization_id"], name: "index_decidim_templates_organization"
t.index ["templatable_type", "templatable_id"], name: "index_decidim_templates_templatable"
end

create_table "decidim_term_customizer_constraints", force: :cascade do |t|
t.bigint "decidim_organization_id", null: false
t.string "subject_type"
Expand Down

0 comments on commit f6d4f83

Please sign in to comment.