Remove unnecessarily translated strings
authorColeman Watts <coleman@civicrm.org>
Sat, 5 Dec 2015 18:08:38 +0000 (13:08 -0500)
committerColeman Watts <coleman@civicrm.org>
Tue, 8 Dec 2015 15:39:34 +0000 (10:39 -0500)
CRM/Upgrade/Form.php
CRM/Upgrade/Incremental/php/FourFive.php
CRM/Upgrade/Incremental/php/FourFour.php
CRM/Upgrade/Incremental/php/FourOne.php
CRM/Upgrade/Incremental/php/FourSeven.php
CRM/Upgrade/Incremental/php/FourSix.php
CRM/Upgrade/Incremental/php/FourThree.php
CRM/Upgrade/Incremental/php/FourTwo.php

index 2edfbe6753be7f956983042472ed10bed2caf9b8..2e4f4db597e5808c7b94e1655811c27c82a9b331 100644 (file)
@@ -349,7 +349,7 @@ SET    version = '$version'
     foreach ($sqlFiles as $file) {
       if (preg_match($sqlFilePattern, $file, $matches)) {
         if ($matches[2] == '4.0') {
-          CRM_Core_Error::fatal(ts("4.0.x upgrade files shouldn't exist. Contact Lobo to discuss this. This is related to the issue CRM-7731."));
+          CRM_Core_Error::fatal("4.0.x upgrade files shouldn't exist. Contact Lobo to discuss this. This is related to the issue CRM-7731.");
         }
         if (!in_array($matches[1], $revList)) {
           $revList[] = $matches[1];
index d9fef968e1f7008fcb39ac39ea4d85bd194e0d17..d96b88638538b968a38e4c548be3aa28194fbdd7 100755 (executable)
@@ -59,9 +59,9 @@ class CRM_Upgrade_Incremental_php_FourFive extends CRM_Upgrade_Incremental_Base
    */
   public function upgrade_4_5_alpha1($rev) {
     // task to process sql
-    $this->addTask(ts('Migrate honoree information to module_data'), 'migrateHonoreeInfo');
+    $this->addTask('Migrate honoree information to module_data', 'migrateHonoreeInfo');
     $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => '4.5.alpha1')), 'runSql', $rev);
-    $this->addTask(ts('Set default for Individual name fields configuration'), 'addNameFieldOptions');
+    $this->addTask('Set default for Individual name fields configuration', 'addNameFieldOptions');
 
     // CRM-14522 - The below schema checking is done as foreign key name
     // for pdf_format_id column varies for different databases
@@ -290,7 +290,7 @@ DROP KEY `{$dao->CONSTRAINT_NAME}`";
    */
   public function upgrade_4_5_9($rev) {
     // Task to process sql.
-    $this->addTask(ts('Upgrade DB to 4.5.9: Fix saved searches consisting of multi-choice custom field(s)'), 'updateSavedSearch');
+    $this->addTask('Upgrade DB to 4.5.9: Fix saved searches consisting of multi-choice custom field(s)', 'updateSavedSearch');
 
     return TRUE;
   }
index 3ede081998af1561d90522fb94dcb797cf9b7d9c..1a1a95f86597eb476549a4cad9fbae62b944cf80 100644 (file)
@@ -345,7 +345,7 @@ ALTER TABLE civicrm_dashboard
     $maxId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(max(id),0) FROM civicrm_contact WHERE image_URL IS NOT NULL');
     for ($startId = $minId; $startId <= $maxId; $startId += self::BATCH_SIZE) {
       $endId = $startId + self::BATCH_SIZE - 1;
-      $title = ts('Upgrade image_urls (%1 => %2)', array(1 => $startId, 2 => $endId));
+      $title = "Upgrade image_urls ($startId => $endId)";
       $this->addTask($title, 'upgradeImageUrls', $startId, $endId);
     }
   }
@@ -366,7 +366,7 @@ ALTER TABLE civicrm_dashboard
       $maxId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(max(id),0) FROM civicrm_contact WHERE image_URL IS NOT NULL');
       for ($startId = $minId; $startId <= $maxId; $startId += self::BATCH_SIZE) {
         $endId = $startId + self::BATCH_SIZE - 1;
-        $title = ts('Upgrade image_urls (%1 => %2)', array(1 => $startId, 2 => $endId));
+        $title = "Upgrade image_urls ($startId => $endId)";
         $this->addTask($title, 'cleanupBackendImageUrls', $startId, $endId);
       }
     }
index d5bbd49ebbe317e225466819a3552ddabaa52f8f..ae926609004b340e38dacfbb0180e9bad6b1c4d4 100644 (file)
@@ -45,7 +45,7 @@ class CRM_Upgrade_Incremental_php_FourOne {
     $config = CRM_Core_Config::singleton();
     if (in_array('CiviCase', $config->enableComponents)) {
       if (!CRM_Core_DAO::checkTriggerViewPermission(TRUE, FALSE)) {
-        $errors[] = ts('CiviCase now requires CREATE VIEW and DROP VIEW permissions for the database user.');
+        $errors[] = 'CiviCase now requires CREATE VIEW and DROP VIEW permissions for the database user.';
         return FALSE;
       }
     }
@@ -68,8 +68,7 @@ class CRM_Upgrade_Incremental_php_FourOne {
       $postUpgradeMessage .= '<br />' .
         ts('The CiviCRM Administration menu structure has been re-organized during this upgrade to make it easier to find things and reduce the number of keystrokes. If you have customized this portion of the navigation menu - you should take a few minutes to review the changes. You may need to reimplement or move your customizations.');
 
-      $postUpgradeMessage .= '<br />' .
-        ts('Yahoo recently discontinued their geocoding and mapping API service. If you previously used Yahoo, you will need to select and configure an alternate service in order to continue using geocoding/mapping tools.');
+      $postUpgradeMessage .= '<br />Yahoo recently discontinued their geocoding and mapping API service. If you previously used Yahoo, you will need to select and configure an alternate service in order to continue using geocoding/mapping tools.';
 
       $postUpgradeMessage .= '<br />' .
         ts('We have integrated KCFinder with CKEditor and TinyMCE, which enables user to upload images. Note that all the images uploaded using KCFinder will be public.');
index e0d14c17f05bf88c6e172dbdb8e030f0c7cb76dc..b5aba5cb832fea3e4e630f67e8aed5f200aaff8a 100644 (file)
@@ -107,10 +107,10 @@ class CRM_Upgrade_Incremental_php_FourSeven extends CRM_Upgrade_Incremental_Base
    * @param string $rev
    */
   public function upgrade_4_7_alpha1($rev) {
-    $this->addTask(ts('Migrate \'on behalf of\' information to module_data'), 'migrateOnBehalfOfInfo');
+    $this->addTask('Migrate \'on behalf of\' information to module_data', 'migrateOnBehalfOfInfo');
     $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
     $this->addTask(ts('Migrate Settings to %1', array(1 => $rev)), 'migrateSettings', $rev);
-    $this->addTask(ts('Add Getting Started dashlet to %1: SQL', array(1 => $rev)), 'addGettingStartedDashlet', $rev);
+    $this->addTask('Add Getting Started dashlet', 'addGettingStartedDashlet', $rev);
   }
 
   /**
index 8e5f2f9e170945e845d96edd9306e59e60827d59..de085ac4f080c42436ea0462cc40d3693149dada 100644 (file)
@@ -58,7 +58,7 @@ class CRM_Upgrade_Incremental_php_FourSix extends CRM_Upgrade_Incremental_Base {
    */
   public function upgrade_4_6_alpha3($rev) {
     // Task to process sql.
-    $this->addTask(ts('Add and update reference_date column for Schedule Reminders'), 'updateReferenceDate');
+    $this->addTask('Add and update reference_date column for Schedule Reminders', 'updateReferenceDate');
   }
 
   /**
@@ -129,7 +129,7 @@ class CRM_Upgrade_Incremental_php_FourSix extends CRM_Upgrade_Incremental_Base {
    */
   public function upgrade_4_6_1($rev) {
     // CRM-16289 - Fix invalid data in log_civicrm_case.case_type_id.
-    $this->addTask(ts('Cleanup case type id data in log table.'), 'fixCaseLog');
+    $this->addTask('Cleanup case type id data in log table.', 'fixCaseLog');
   }
 
   /**
index 425280065925257f8b4ccc7b791f29c71ef678ea..4901e78420a651d1d2daa623270c6e78bb39d371 100644 (file)
@@ -255,7 +255,7 @@ WHERE ccp.financial_type_id IS NULL and cp.cost > 0');
     $maxId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(max(id),0) FROM civicrm_contact');
     for ($startId = $minId; $startId <= $maxId; $startId += self::BATCH_SIZE) {
       $endId = $startId + self::BATCH_SIZE - 1;
-      $title = ts('Upgrade timestamps (%1 => %2)', array(1 => $startId, 2 => $endId));
+      $title = "Upgrade timestamps ($startId => $endId)";
       $this->addTask($title, 'convertTimestamps', $startId, $endId);
     }
 
index 8811da71c01fc5e09f89d8d13f06a28a4548982d..021f539773689db747960900fefef78d636a0a54 100644 (file)
@@ -49,7 +49,7 @@ class CRM_Upgrade_Incremental_php_FourTwo extends CRM_Upgrade_Incremental_Base {
     if ($rev == '4.2.alpha1') {
       $tables = array('civicrm_contribution_page', 'civicrm_event', 'civicrm_group', 'civicrm_contact');
       if (!CRM_Core_DAO::schemaRequiresRebuilding($tables)) {
-        $errors = ts("The upgrade has identified some schema integrity issues in the database. It seems some of your constraints are missing. You will have to rebuild your schema before re-trying the upgrade. Please refer to %1.", array(1 => CRM_Utils_System::docURL2("Ensuring Schema Integrity on Upgrades", FALSE, "Ensuring Schema Integrity on Upgrades", NULL, NULL, "wiki")));
+        $errors = "The upgrade has identified some schema integrity issues in the database. It seems some of your constraints are missing. You will have to rebuild your schema before re-trying the upgrade. Please refer to " . CRM_Utils_System::docURL2("Ensuring Schema Integrity on Upgrades", FALSE, "Ensuring Schema Integrity on Upgrades", NULL, NULL, "wiki");
         CRM_Core_Error::fatal($errors);
         return FALSE;
       }
@@ -68,8 +68,7 @@ INNER JOIN civicrm_membership mem ON mem.id = mp.membership_id
 ORDER BY mp.contribution_id, mp.membership_id";
       $invalidData = CRM_Core_DAO::executeQuery($query);
       if ($invalidData->N) {
-        $invalidDataMessage = "<br /><strong>" . ts('The upgrade is being aborted due to data integrity issues in your database. There are multiple membership records linked to the same contribution record. This is unexpected, and some of the membership records may be duplicates. The problem record sets are listed below. Refer to <a href="%1">this wiki page for instructions on repairing your database</a> so that you can run the upgrade successfully.
-        ', array(1 => 'http://wiki.civicrm.org/confluence/display/CRMDOC42/Repair+database+script+for+4.2+upgrades')) . "</strong>";
+        $invalidDataMessage = "<br /><strong>" . 'The upgrade is being aborted due to data integrity issues in your database. There are multiple membership records linked to the same contribution record. This is unexpected, and some of the membership records may be duplicates. The problem record sets are listed below. Refer to <a href="http://wiki.civicrm.org/confluence/display/CRMDOC42/Repair+database+script+for+4.2+upgrades">this wiki page for instructions on repairing your database</a> so that you can run the upgrade successfully.' . "</strong>";
         $membershipType = CRM_Member_PseudoConstant::membershipType();
         $membershipStatus = CRM_Member_PseudoConstant::membershipStatus();
         $invalidDataMessage .= "<table border=1><tr><th>Contact-ID</th><th>Contribution-ID</th><th>Membership-ID</th><th>Membership Type</th><th>Start Date</th><th>End Date</th><th>Membership Status</th></tr>";
@@ -84,7 +83,8 @@ ORDER BY mp.contribution_id, mp.membership_id";
           $invalidDataMessage .= "<td>" . CRM_Utils_Array::value($invalidData->status_id, $membershipStatus) . "</td>";
           $invalidDataMessage .= "</tr>";
         }
-        $invalidDataMessage .= "</table><p>" . ts('If you have reviewed the cleanup script documentation on the wiki and you are ready to run the cleanup now - <a href="%1">click here</a>.', array(1 => CRM_Utils_System::url('civicrm/upgrade/cleanup425', 'reset=1'))) . "</p>";
+        $clickHere = CRM_Utils_System::url('civicrm/upgrade/cleanup425', 'reset=1');
+        $invalidDataMessage .= "</table><p>If you have reviewed the cleanup script documentation on the wiki and you are ready to run the cleanup now - <a href='$clickHere'>click here</a>.</p>";
         CRM_Core_Error::fatal($invalidDataMessage);
         return FALSE;
       }
@@ -116,7 +116,7 @@ INNER JOIN civicrm_price_field cpf ON cpf.id = cpfv.price_field_id and cpf.id !=
 INNER JOIN civicrm_price_set cps ON cps.id = cpf.price_set_id AND cps.name <>'default_membership_type_amount' ";
       $dao = CRM_Core_DAO::executeQuery($query);
       if ($dao->N) {
-        $preUpgradeMessage .= "<br /><strong>" . ts('We have identified extraneous data in your database that a previous upgrade likely introduced. We STRONGLY recommend making a backup of your site before continuing. We also STRONGLY suggest fixing this issue with unneeded records BEFORE you upgrade. You can find more information about this issue and the way to fix it by visiting <a href="http://forum.civicrm.org/index.php/topic,26181.0.html">http://forum.civicrm.org/index.php/topic,26181.0.html</a>.') . "</strong>";
+        $preUpgradeMessage .= "<br /><strong>We have identified extraneous data in your database that a previous upgrade likely introduced. We STRONGLY recommend making a backup of your site before continuing. We also STRONGLY suggest fixing this issue with unneeded records BEFORE you upgrade. You can find more information about this issue and the way to fix it by visiting <a href='http://forum.civicrm.org/index.php/topic,26181.0.html'>http://forum.civicrm.org/index.php/topic,26181.0.html</a>.</strong>";
       }
     }
 
@@ -125,7 +125,7 @@ INNER JOIN civicrm_price_set cps ON cps.id = cpf.price_set_id AND cps.name <>'de
       $sql = "SELECT id FROM civicrm_option_group WHERE name LIKE 'civicrm_price_field.amount.%' LIMIT 1";
       $dao = CRM_Core_DAO::executeQuery($sql);
       if ($dao->fetch()) {
-        $errors = ts("We found unexpected data values from an older version of CiviCRM in your database. The upgrade can not be run until this condition is corrected.<br /><br />Details: One or more rows are present in the civicrm_option_group with name like 'civicrm_price_field.amount.%'. <a href='%1'>Check here for information on diagnosing and correcting this problem.</a>", array(1 => 'http://forum.civicrm.org/index.php/topic,27744.msg118748.html#msg118748'));
+        $errors = "We found unexpected data values from an older version of CiviCRM in your database. The upgrade can not be run until this condition is corrected.<br /><br />Details: One or more rows are present in the civicrm_option_group with name like 'civicrm_price_field.amount.%'. <a href='http://forum.civicrm.org/index.php/topic,27744.msg118748.html#msg118748'>Check here for information on diagnosing and correcting this problem.</a>";
         CRM_Core_Error::fatal($errors);
         return FALSE;
       }
@@ -197,9 +197,9 @@ INNER JOIN civicrm_price_set cps ON cps.id = cpf.price_set_id AND cps.name <>'de
     // Some steps take a long time, so we break them up into separate
     // tasks and enqueue them separately.
     $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => '4.2.alpha1')), 'runSql', $rev);
-    $this->addTask(ts('Upgrade DB to 4.2.alpha1: Price Sets'), 'task_4_2_alpha1_createPriceSets', $rev);
+    $this->addTask('Upgrade DB to 4.2.alpha1: Price Sets', 'task_4_2_alpha1_createPriceSets', $rev);
     self::convertContribution();
-    $this->addTask(ts('Upgrade DB to 4.2.alpha1: Event Profile'), 'task_4_2_alpha1_eventProfile');
+    $this->addTask('Upgrade DB to 4.2.alpha1: Event Profile', 'task_4_2_alpha1_eventProfile');
   }
 
   /**
@@ -226,7 +226,7 @@ INNER JOIN civicrm_price_set cps ON cps.id = cpf.price_set_id AND cps.name <>'de
 
     for ($startId = $minParticipantId; $startId <= $maxParticipantId; $startId += self::BATCH_SIZE) {
       $endId = $startId + self::BATCH_SIZE - 1;
-      $title = ts('Upgrade DB to 4.2.alpha1: Participant (%1 => %2)', array(1 => $startId, 2 => $endId));
+      $title = "Upgrade DB to 4.2.alpha1: Participant ($startId => $endId)";
       $this->addTask($title, 'task_4_2_alpha1_convertParticipants', $startId, $endId);
     }
   }
@@ -360,7 +360,7 @@ HAVING COUNT(cpse.price_set_id) > 1 AND MIN(cpse1.id) <> cpse.id ";
     $maxContributionId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(max(id),0) FROM civicrm_contribution');
     for ($startId = $minContributionId; $startId <= $maxContributionId; $startId += self::BATCH_SIZE) {
       $endId = $startId + self::BATCH_SIZE - 1;
-      $title = ts('Upgrade DB to 4.2.alpha1: Contributions (%1 => %2)', array(1 => $startId, 2 => $endId));
+      $title = "Upgrade DB to 4.2.alpha1: Contributions ($startId => $endId)";
       $this->addTask($title, 'task_4_2_alpha1_convertContributions', $startId, $endId);
     }
     $minParticipantId = CRM_Core_DAO::singleValueQuery('SELECT coalesce(min(id),0) FROM civicrm_participant');
@@ -368,7 +368,7 @@ HAVING COUNT(cpse.price_set_id) > 1 AND MIN(cpse1.id) <> cpse.id ";
 
     for ($startId = $minParticipantId; $startId <= $maxParticipantId; $startId += self::BATCH_SIZE) {
       $endId = $startId + self::BATCH_SIZE - 1;
-      $title = ts('Upgrade DB to 4.2.alpha1: Participant (%1 => %2)', array(1 => $startId, 2 => $endId));
+      $title = "Upgrade DB to 4.2.alpha1: Participant ($startId => $endId)";
       $this->addTask($title, 'task_4_2_alpha1_convertParticipants', $startId, $endId);
     }
   }