File tree Expand file tree Collapse file tree 4 files changed +26
-2
lines changed Expand file tree Collapse file tree 4 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ const en = {
3333 Add_from_the_list_below : `Add from the list below` ,
3434 Today : 'Today' ,
3535 Tomorrow : 'Tomorrow' ,
36+ Favorited_schedule_not_implemented_yet : 'Favorited schedule not implemented (yet)' ,
37+ Info_page_still_under_construction : 'Info page still under construction'
3638} satisfies BaseTranslation
3739
3840export default en
Original file line number Diff line number Diff line change @@ -144,6 +144,14 @@ type RootTranslation = {
144144 * Tomorrow
145145 */
146146 Tomorrow : string
147+ /**
148+ * Favorited schedule not implemented (yet)
149+ */
150+ Favorited_schedule_not_implemented_yet : string
151+ /**
152+ * Info page still under construction
153+ */
154+ Info_page_still_under_construction : string
147155}
148156
149157export type TranslationFunctions = {
@@ -275,6 +283,14 @@ export type TranslationFunctions = {
275283 * Tomorrow
276284 */
277285 Tomorrow : ( ) => LocalizedString
286+ /**
287+ * Favorited schedule not implemented (yet)
288+ */
289+ Favorited_schedule_not_implemented_yet : ( ) => LocalizedString
290+ /**
291+ * Info page still under construction
292+ */
293+ Info_page_still_under_construction : ( ) => LocalizedString
278294}
279295
280296export type Formatters = { }
Original file line number Diff line number Diff line change 1414
1515 <div class =" infoMessage ion-text-center" >
1616 <ion-icon class =" infoMessage-iconIllu" src =" /assets/images/svg/illu-no-favorites.svg" ></ion-icon >
17- <span class =" infoMessage-title" >No favorites yet </span >
17+ <span class =" infoMessage-title" >🚧 {{ LL.Favorited_schedule_not_implemented_yet() }} </span >
1818 </div >
1919
2020 </ion-content >
2828 import {getRouteParamsValue } from " @/views/vue-utils" ;
2929 import {useSharedConferenceDescriptor } from " @/state/useConferenceDescriptor" ;
3030 import {computed , ref } from " vue" ;
31+ import {typesafeI18n } from " @/i18n/i18n-vue" ;
32+
33+ const { LL } = typesafeI18n ()
3134
3235 const route = useRoute ();
3336 const eventId = ref (new EventId (getRouteParamsValue (route , ' eventId' )));
Original file line number Diff line number Diff line change 1313 </ion-header >
1414
1515 <p >
16- Infos planned here !
16+ 🚧 {{ LL.Info_page_still_under_construction() }}
1717 </p >
1818 </ion-content >
1919 </ion-page >
2626 import {getRouteParamsValue } from " @/views/vue-utils" ;
2727 import {useSharedConferenceDescriptor } from " @/state/useConferenceDescriptor" ;
2828 import {computed , ref } from " vue" ;
29+ import {typesafeI18n } from " @/i18n/i18n-vue" ;
30+
31+ const { LL } = typesafeI18n ()
2932
3033 const route = useRoute ();
3134 const eventId = ref (new EventId (getRouteParamsValue (route , ' eventId' )));
You can’t perform that action at this time.
0 commit comments