File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 3
3
<!-- Use $store.state.page for page matching to make sure everything else has been set beforehand! -->
4
4
<div class =" status-header" >
5
5
<ModeIndicator v-if =" isSearch" :title =" searchTitle" />
6
- <ModeIndicator v-else-if =" isEdit" title =" Editing recipe" />
7
- <ModeIndicator v-else-if =" isRecipe" title =" Viewing recipe" />
6
+ <ModeIndicator
7
+ v-else-if =" isEdit"
8
+ :title =" t('cookbook', 'Editing recipe')"
9
+ />
10
+ <ModeIndicator
11
+ v-else-if =" isRecipe"
12
+ :title =" t('cookbook', 'Viewing recipe')"
13
+ />
8
14
<!-- INDEX PAGE -->
9
15
<Location v-if =" isIndex" :title =" t('cookbook', 'All recipes')" />
10
16
<Location
41
47
:title =" t('cookbook', 'Page not found')"
42
48
/>
43
49
<!-- Create new recipe -->
44
- <Location v-else-if =" isCreate" title =" Creating new recipe" />
50
+ <Location
51
+ v-else-if =" isCreate"
52
+ :title =" t('cookbook', 'Creating new recipe')"
53
+ />
45
54
</div >
46
55
{{/* Primary buttons */}}
47
56
<SimpleButton
You can’t perform that action at this time.
0 commit comments