(NFC) Fix possible flacky tests by splitting the parts of the checksum up so that...
[civicrm-core.git] / ang / crmCaseType / edit.html
index 55c7faf4fc547248503cb931c2094887669ffd1b..034093b2707596665d06ad3b75d0d14e48ed6698 100644 (file)
@@ -5,7 +5,7 @@ Required vars: caseType
 <h1 crm-page-title>{{caseType.title || ts('New Case Type')}}</h1>
 
 <div class="help">
-  {{ts('Use this screen to define or update the Case Roles, Activity Types, and Timelines for a case type.')}} <a href="https://docs.civicrm.org/user/en/stable/case-management/set-up/" target="_blank">{{ts('Learn more...')}}</a>
+  {{:: ts('Use this screen to define or update the Case Roles, Activity Types, and Timelines for a case type.') }} <a href="https://docs.civicrm.org/user/en/stable/case-management/set-up/" target="_blank">{{:: ts('Learn more...') }}</a>
 </div>
 
 <form name="editCaseTypeForm" unsaved-warning-form>
@@ -15,16 +15,16 @@ Required vars: caseType
 
   <div ng-show="isForkable()" class="crmCaseType-acttab" ui-jq="tabs" ui-options="{show: true, hide: true}">
     <ul>
-      <li><a href="#acttab-roles">{{ts('Case Roles')}}</a></li>
-      <li><a href="#acttab-statuses">{{ts('Case Statuses')}}</a></li>
-      <li><a href="#acttab-actType">{{ts('Activity Types')}}</a></li>
+      <li><a href="#acttab-roles">{{:: ts('Case Roles') }}</a></li>
+      <li><a href="#acttab-statuses">{{:: ts('Case Statuses') }}</a></li>
+      <li><a href="#acttab-actType">{{:: ts('Activity Types') }}</a></li>
       <li ng-repeat="activitySet in caseType.definition.activitySets">
         <a href="#acttab-{{$index}}" class="crmCaseType-editable">
-          <div crm-editable-tab-title title="{{ts('Click to edit')}}">
+          <div crm-editable-tab-title title="{{:: ts('Click to edit') }}">
             <span>{{ activitySet.label }}</span>
           </div>
         </a>
-        <span class="crm-i fa-trash" title="{{ts('Remove')}}"
+        <span class="crm-i fa-trash" title="{{:: ts('Remove') }}"
           ng-hide="activitySet.name == 'standard_timeline'"
           ng-click="removeItem(caseType.definition.activitySets, activitySet)"></span>
         <!-- Weird spacing:
@@ -34,9 +34,9 @@ Required vars: caseType
         -->
       </li>
       <select class="crm-form-select" ng-model="newActivitySetWorkflow" ng-change="addActivitySet(newActivitySetWorkflow); newActivitySetWorkflow='';">
-        <option value="">{{ts('Add...')}}</option>
-        <option value="timeline" ng-show="isNewActivitySetAllowed('timeline')">{{ts('Timeline')}}</option>
-        <option value="sequence" ng-show="isNewActivitySetAllowed('sequence')">{{ts('Sequence')}}</option>
+        <option value="">{{:: ts('Add...') }}</option>
+        <option value="timeline" ng-show="isNewActivitySetAllowed('timeline')">{{:: ts('Timeline') }}</option>
+        <option value="sequence" ng-show="isNewActivitySetAllowed('sequence')">{{:: ts('Sequence') }}</option>
       </select>
     </ul>
 
@@ -53,10 +53,10 @@ Required vars: caseType
 
   <div class="crm-submit-buttons">
     <button crm-icon="fa-check" ng-click="editCaseTypeForm.$setPristine(); save()" ng-disabled="editCaseTypeForm.$invalid">
-      {{ts('Save')}}
+      {{:: ts('Save') }}
     </button>
     <button crm-icon="fa-times" ng-click="editCaseTypeForm.$setPristine(); goto('caseType')">
-      {{ts('Cancel')}}
+      {{:: ts('Cancel') }}
     </button>
   </div>
 </div>