@@ -76,7 +76,7 @@ private static List<AdaptiveElement> CreateAdaptiveBody(IChatFlowContext<DateTim
76
76
{
77
77
var adaptiveElements = new List < AdaptiveElement >
78
78
{
79
- CreateAdaptiveTimesheetRow ( context . FlowState . GetDurationSum ( ) , $ "Всего { context . FlowState . Date . ToStringRussianCulture ( ) } ")
79
+ CreateAdaptiveTimesheetRow ( context . FlowState . GetDurationSum ( ) , $ "Всего за { context . FlowState . Date . ToStringRussianCulture ( ) } ")
80
80
} ;
81
81
82
82
if ( context . FlowState . Timesheets is null )
@@ -169,7 +169,8 @@ private static string BuildText(IChatFlowContext<DateTimesheetFlowState> context
169
169
var flowState = context . FlowState ;
170
170
171
171
var textBuilder = new StringBuilder ( ) . AppendRow (
172
- flowState . GetDurationSum ( ) . ToDurationStringRussianCulture ( true ) , context . EncodeTextWithStyle ( flowState . Date . ToStringRussianCulture ( ) , BotTextStyle . Bold ) ) ;
172
+ flowState . GetDurationSum ( ) . ToDurationStringRussianCulture ( true ) ,
173
+ context . EncodeTextWithStyle ( $ "Всего за { context . FlowState . Date . ToStringRussianCulture ( ) } ", BotTextStyle . Bold ) ) ;
173
174
174
175
if ( context . FlowState . Timesheets ? . Count is not > 0 )
175
176
{
@@ -204,7 +205,7 @@ private static string BuildTelegramText(IChatFlowContext<DateTimesheetFlowState>
204
205
var flowState = context . FlowState ;
205
206
206
207
var textBuilder = new StringBuilder ( ) . AppendRow (
207
- flowState . GetDurationSum ( ) . ToDurationStringRussianCulture ( true ) , $ "<b>{ flowState . Date . ToStringRussianCulture ( ) } </b>") ;
208
+ flowState . GetDurationSum ( ) . ToDurationStringRussianCulture ( true ) , $ "<b>Всего за { flowState . Date . ToStringRussianCulture ( ) } </b>") ;
208
209
209
210
if ( context . FlowState . Timesheets ? . Count is not > 0 )
210
211
{
0 commit comments