@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Calendar minor pht.

Summary: Minor pht's missed in Calendar.

Test Plan: ALLCAPS

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5096

+5 -5
+1 -1
src/applications/calendar/controller/PhabricatorCalendarBrowseController.php
··· 60 60 return $this->buildApplicationPage( 61 61 $nav, 62 62 array( 63 - 'title' => 'Calendar', 63 + 'title' => pht('Calendar'), 64 64 'device' => true, 65 65 )); 66 66 }
+4 -4
src/applications/calendar/controller/PhabricatorCalendarEditStatusController.php
··· 68 68 ->setDescription($description) 69 69 ->save(); 70 70 } catch (PhabricatorUserStatusInvalidEpochException $e) { 71 - $errors[] = 'Start must be before end.'; 71 + $errors[] = pht('Start must be before end.'); 72 72 } catch (PhabricatorUserStatusOverlapException $e) { 73 - $errors[] = 'There is already a status within the specified '. 74 - 'timeframe. Edit or delete this existing status.'; 73 + $errors[] = pht('There is already a status within the specified '. 74 + 'timeframe. Edit or delete this existing status.'); 75 75 } 76 76 77 77 if (!$errors) { ··· 94 94 $error_view = null; 95 95 if ($errors) { 96 96 $error_view = id(new AphrontErrorView()) 97 - ->setTitle('Status can not be set!') 97 + ->setTitle(pht('Status can not be set!')) 98 98 ->setErrors($errors); 99 99 } 100 100