diff --git a/src/app/dars/dars-view/dars-view.component.html b/src/app/dars/dars-view/dars-view.component.html
index 08aa490256dcc988689610135e901d80e97f9a0a..5c9ced6081e89527d5d4c2b048fe49cac7cc4a2e 100644
--- a/src/app/dars/dars-view/dars-view.component.html
+++ b/src/app/dars/dars-view/dars-view.component.html
@@ -31,7 +31,7 @@
             [metadata]="programMetadata$"
             [type]="'normal'"
             [title]="'Degree Audit'"
-            [tagline]="'See the progress towards your current program of study and degree plans.'"
+            [tagline]="'See the progress towards your current academic plan/program and degree plans.'"
             [button]="'Run new degree audit'"
             (buttonClick)="openDegreeAuditDialog()">
           </cse-dars-metadata-table>
@@ -42,7 +42,7 @@
             [metadata]="whatIfMetadata$"
             [type]="'what-if'"
             [title]="'&lsquo;What if&rsquo; Audit'"
-            [tagline]="'See the progress towards a new program of study and degree plans.'"
+            [tagline]="'See the progress towards a new academic plan/program and degree plans.'"
             [button]="'Run new &lsquo;what if&rsquo; audit'"
             (buttonClick)="openWhatIfAuditDialog()">
           </cse-dars-metadata-table>
@@ -78,7 +78,7 @@
           <mat-tab-group>
               <mat-tab label="Degree Audit">
                   <div class="run-audit-mobile">
-                      <p>See the progress towards your current program of study.</p>
+                      <p>See the progress towards your current academic plan/program.</p>
                       <button mat-raised-button
                         aria-label="Run new degree audit"
                         [disabled]="(metadataStatus$ | async) != 'Loaded'"
@@ -106,7 +106,7 @@
 
               <mat-tab label="What-if">
                 <div class="run-audit-mobile">
-                    <p>See the progress towards a new or current program of study and degree plans.</p>
+                    <p>See the progress towards a new or current academic plan/program and degree plans.</p>
                     <button
                     mat-raised-button
                     aria-label="Run new degree audit"
diff --git a/src/app/dars/metadata-table/metadata-table.component.html b/src/app/dars/metadata-table/metadata-table.component.html
index 200d9d9d4ed6c6b839c9d39f6836cc153417e684..775893e224b5bd8feb8d2a45756e12008a00daa3 100644
--- a/src/app/dars/metadata-table/metadata-table.component.html
+++ b/src/app/dars/metadata-table/metadata-table.component.html
@@ -40,7 +40,7 @@
 
     <!-- Program Column -->
     <ng-container matColumnDef="program">
-      <th mat-header-cell *matHeaderCellDef scope="col">Program of Study</th>
+      <th mat-header-cell *matHeaderCellDef scope="col">Academic Plan/Program</th>
       <td mat-cell *matCellDef="let audit" class="program-cell">{{(audit.darsDegreeProgramDescription || '').toLowerCase()}}</td>
     </ng-container>
 
diff --git a/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html b/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html
index 721b72c484ae6ede18f984dbe36e9895f862bd63..647c074c47c6d9da9793d2759ad867d65d81e6db 100644
--- a/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html
+++ b/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html
@@ -18,7 +18,7 @@
       {{ index + 1 }}
     </ng-template>
 
-    <mat-step [stepControl]="chosenProgram" label="Select program of study">
+    <mat-step [stepControl]="chosenProgram" label="Select academic plan/program">
       <!--
         User picks one of the majors or certificates that they're already enrolled in
       -->
diff --git a/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html b/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html
index 726887ca81890e87f897418a3e54b33d0d2c7466..4d3210a8584a558c21ae91293f4587670e663035 100644
--- a/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html
+++ b/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html
@@ -18,7 +18,7 @@
       {{ index + 1 }}
     </ng-template>
 
-    <mat-step [stepControl]="chosenProgram" label="Select program of study">
+    <mat-step [stepControl]="chosenProgram" label="Select academic plan/program">
       <form [formGroup]="chosenProgram">
         <ng-container *ngIf="institutions$ | async as institutions; else loading">
           <!--