Skip to content

Commit f64be55

Browse files
authored
Merge branch 'development' into dev-370
2 parents d1de8b5 + d576bdd commit f64be55

File tree

6 files changed

+23
-11
lines changed

6 files changed

+23
-11
lines changed

src/assets/locales/en.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,16 @@
7070
"time": "Time Setting",
7171
"subject_label_color": "Label Color",
7272
"description": "Detailed Description",
73+
"video_keyword": "(Optional function) Video Search",
7374
"video_url": "Reference Video URL",
7475
"video_thumbnail": "Video Thumbnail/Caption Display",
7576
"textbook_page": "Textbook Page",
7677
"material_title": "Learning Material Title",
7778
"material_url": "Learning Material URL"
7879
},
80+
"placeholders": {
81+
"video_keyword": "EX) Science"
82+
},
7983
"required": "*Items Marked with Are Required"
8084
},
8185
"editing_visibility_dialog": {

src/assets/locales/ja.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"title": "タイトル",
2525
"subject_name": "教科名",
2626
"textbook": "教科書",
27-
"goal": "学習の目的",
28-
"description": "詳細",
27+
"goal": "ねらい",
28+
"description": "内容(ないよう)",
2929
"videos": "参考動画",
3030
"materials": "副教材"
3131
},
@@ -69,7 +69,7 @@
6969
"date": "日付設定",
7070
"time": "時間設定",
7171
"subject_label_color": "ラベル色",
72-
"description": "詳細説明",
72+
"description": "内容(ないよう)",
7373
"video_keyword": "(オプション機能)動画検索",
7474
"video_url": "参考動画URL",
7575
"video_thumbnail": "動画サムネイル・キャプション表示",

src/assets/locales/zh_TW.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,16 @@
7070
"time": "設定時間",
7171
"subject_label_color": "標籤顏色",
7272
"description": "詳細說明",
73+
"video_keyword": "可選功能(影片搜尋)",
7374
"video_url": "參考影片 URL",
7475
"video_thumbnail": "顯示影片縮圖",
7576
"textbook_page": "教科書頁",
7677
"material_title": "副教材標題",
7778
"material_url": "輔助教材 URL"
7879
},
80+
"placeholders": {
81+
"video_keyword": "例)理科"
82+
},
7983
"required": "*符號者為必填項目"
8084
},
8185
"editing_visibility_dialog": {

src/components/EditLessonScreenInner1.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,6 @@
141141
@clickButton="endTimePickerOpen = true"
142142
/>
143143
</div>
144-
<editor-input-field-pickable
145-
v-model="tempFormData.title"
146-
:title="`${$t('common.lesson_data.labels.title')} *`"
147-
:label="$t('common.lesson_data.labels.title')"
148-
placeholder="例)理科"
149-
/>
150144
<div class="EditingScreen-Flex">
151145
<editor-input-field-pickable
152146
v-model="tempFormData.subjectName"
@@ -164,6 +158,12 @@
164158
@clickPickerButton="colorPickerOpen = true"
165159
/>
166160
</div>
161+
<editor-input-field-pickable
162+
v-model="tempFormData.title"
163+
:title="`${$t('common.lesson_data.labels.title')} *`"
164+
:label="$t('common.lesson_data.labels.title')"
165+
placeholder="例)理科"
166+
/>
167167
</div>
168168
</template>
169169

src/pages/edit/index.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@
108108
</div>
109109
<edit-lesson-screen-bottom-sheet
110110
:message="
111-
$t('pages.edit_index.add_or_edit_lesson', { className: '2年B組' })
111+
$t('pages.edit_index.add_or_edit_lesson', {
112+
className: classData.className,
113+
})
112114
"
113115
:expanded="!editingMode"
114116
@clickAddButton="toggleScreen"

src/pages/user/classlist.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
<v-radio :value="item.classId">
2121
<template v-slot:label>
2222
<span class="ClassList-Label">
23-
{{ item.schoolName }} {{ item.className }}
23+
{{ item.schoolName }} {{ item.className }} ({{
24+
item.classId
25+
}})
2426
</span>
2527
</template>
2628
</v-radio>

0 commit comments

Comments
 (0)