From 4aea5325fd9a8d9afb397c86f8b08cfbaa79152e Mon Sep 17 00:00:00 2001 From: lkassianik Date: Thu, 8 Jan 2015 16:11:53 -0800 Subject: [PATCH] T6883, Button to save document in legalpad should say "Save Document" instead of "Edit Document" Summary: Fixes T6883, Legalpad action button on edit document page should say "Save Document" instead of "Edit Document" Test Plan: Open Legalpad, open existing document, blue action button should say "Save Document" Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T6883 Differential Revision: https://secure.phabricator.com/D11291 --- .../legalpad/controller/LegalpadDocumentEditController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/legalpad/controller/LegalpadDocumentEditController.php b/src/applications/legalpad/controller/LegalpadDocumentEditController.php index d8b7d7c31b..c2414e4b37 100644 --- a/src/applications/legalpad/controller/LegalpadDocumentEditController.php +++ b/src/applications/legalpad/controller/LegalpadDocumentEditController.php @@ -189,7 +189,7 @@ final class LegalpadDocumentEditController extends LegalpadController { $title = pht('Create Document'); $short = pht('Create'); } else { - $submit->setValue(pht('Edit Document')); + $submit->setValue(pht('Save Document')); $submit->addCancelButton( $this->getApplicationURI('view/'.$document->getID())); $title = pht('Edit Document');