@@ -8,7 +8,7 @@ public class EnglishTextBuilder() : PersonalLogTextBuilderBase, IPersonalLogText
88 protected override string LanguageCode => "en" ;
99
1010 public string BuildAccessoryCleaningLogText ( PersonalLog log )
11- => $ "I have cleaned { GetAccessoryType ( log . Data ) } by { GetCleaningMethod ( log . Data ) } " +
11+ => $ "I have cleaned { GetAccessoryType ( log . Data , useDefinitiveForm : true ) } by { GetCleaningMethod ( log . Data ) } " +
1212 GetLocation ( log . Data ) ;
1313
1414 public string BuildAccountActivationLogText ( PersonalLog log )
@@ -767,6 +767,12 @@ public string BuildAlkalinePhosphataseMeasurementLogText(PersonalLog log)
767767 => $ "My alkaline phosphatase level measured { GetDecimalValue ( log . Data , "alkaline_phosphatase_level" ) } { GetDataValue ( log . Data , "unit" , "U/L" ) } " +
768768 GetLocation ( log . Data ) ;
769769
770+ public string BuildApplicationInstallationLogText ( PersonalLog log )
771+ => $ "I have installed the application { GetDataValue ( log . Data , "application_name" ) } on { GetDevice ( log . Data ) } ";
772+
773+ public string BuildApplicationUninstallationLogText ( PersonalLog log )
774+ => $ "I have uninstalled the application { GetDataValue ( log . Data , "application_name" ) } from { GetDevice ( log . Data ) } ";
775+
770776 public string BuildBedLinenChangingLogText ( PersonalLog log )
771777 => "I have changed the bed linen" + GetLocation ( log . Data ) ;
772778
@@ -2000,6 +2006,9 @@ public string BuildMicronationExternalRelationsEstablishmentLogText(PersonalLog
20002006 return text ;
20012007 }
20022008
2009+ public string BuildMicronationFoundingLogText ( PersonalLog log )
2010+ => $ "I have founded the micronation of { GetDataValue ( log . Data , "name" ) } ";
2011+
20032012 public string BuildMicronationLegalActIssuanceLogText ( PersonalLog log )
20042013 {
20052014 string legalActTypeWord = GetMappedDataValue (
@@ -2043,6 +2052,9 @@ public string BuildMicronationLegalActIssuanceLogText(PersonalLog log)
20432052 return text ;
20442053 }
20452054
2055+ public string BuildMicronationNameChangeLogText ( PersonalLog log )
2056+ => $ "I have changed the name of the micronation of { GetDataValue ( log . Data , "old_name" ) } to { GetDataValue ( log . Data , "new_name" ) } ";
2057+
20462058 public string BuildMicronationSettlementFoundingLogText ( PersonalLog log )
20472059 {
20482060 string settlementType = GetMappedDataValue (
@@ -2797,7 +2809,12 @@ public string BuildVideoWatchingLogText(PersonalLog log)
27972809 {
27982810 string text = $ "I have watched the video '{ log . Data [ "video_title" ] } '";
27992811
2800- if ( log . Data . TryGetValue ( "channel_name" , out string channelName ) )
2812+ if ( TryGetDataValue ( log . Data , "video_id" , out string videoId ) )
2813+ {
2814+ text += $ " ({ videoId } )";
2815+ }
2816+
2817+ if ( TryGetDataValue ( log . Data , "channel_name" , out string channelName ) )
28012818 {
28022819 text += $ " from the '{ channelName } ' channel";
28032820 }
0 commit comments