Skip to content

Commit

Permalink
Merge pull request #257 from ma10/checksheet-adjust-20240809
Browse files Browse the repository at this point in the history
チェックリストV5.0.0の更新情報を修正
  • Loading branch information
ma10 authored Aug 9, 2024
2 parents 39c28b5 + 88e262f commit 5337d27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion en/source/checks/checksheet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Accessibility Check List Update History
Here, we list updates related to the English translation since the introduction of V4.3.7, when we began providing translations for all sheets.
For the changes to the original Japanese version, please refer to the `Japanese version of this page </checks/checksheet.html>`__.

V5.0.0 (August 2, 2024)
V5.0.0 (August 9, 2024)
=======================

* Reviewed the checklist items whose applicable stage is "Product"
Expand Down
2 changes: 1 addition & 1 deletion ja/source/checks/checksheet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ V3.0.0以降、バージョン番号は、メジャー・バージョン番号
アクセシビリティー・チェック・リスト更新履歴
********************************************

V5.0.0 (2024年8月2日)
V5.0.0 (2024年8月9日)
=====================

* 対象が「プロダクト」のチェック内容について見直し
Expand Down
4 changes: 2 additions & 2 deletions tools/yaml2x/a11y_guidelines/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,15 +320,15 @@ def object_data(self, baseurl = ''):
data['info'] = [inforef.link_data() for inforef in info]
if len(self.conditions) > 0:
data['conditions'] = [cond.object_data() for cond in self.conditions]
data['condition_statements'] = []
data['conditionStatements'] = []
for condition in self.conditions:
statement = {
'platform': condition.platform,
'summary': {}
}
for lang in self.check:
statement['summary'][lang] = condition.summary(lang)
data['condition_statements'].append(statement)
data['conditionStatements'].append(statement)

if len(self.implementations) > 0:
implementations = {}
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
guidelines_version = 'Ver. 202405.0'
checksheet_version = '5.0.0'
checksheet_date = '2024-08-02'
checksheet_date = '2024-08-09'
publishedDate = '2024-05-14'

0 comments on commit 5337d27

Please sign in to comment.