You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by de...@apache.org on 2014/03/14 16:17:31 UTC

couchdb commit: updated refs/heads/master to a17bf86

Repository: couchdb
Updated Branches:
  refs/heads/master 33b6e3509 -> a17bf86af


COUCHDB-2166 Rename duplicate document to "copy ..." or "clone ..."


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/a17bf86a
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/a17bf86a
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/a17bf86a

Branch: refs/heads/master
Commit: a17bf86af27a2eb52e552360fecb5e74b6e5f582
Parents: 33b6e35
Author: suelockwood <de...@apache.org>
Authored: Fri Mar 14 11:17:26 2014 -0400
Committer: suelockwood <de...@apache.org>
Committed: Fri Mar 14 11:17:26 2014 -0400

----------------------------------------------------------------------
 src/fauxton/app/addons/documents/templates/doc.html              | 2 +-
 .../app/addons/documents/templates/duplicate_doc_modal.html      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/a17bf86a/src/fauxton/app/addons/documents/templates/doc.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/documents/templates/doc.html b/src/fauxton/app/addons/documents/templates/doc.html
index 5ef70fe..9433868 100644
--- a/src/fauxton/app/addons/documents/templates/doc.html
+++ b/src/fauxton/app/addons/documents/templates/doc.html
@@ -40,7 +40,7 @@ the License.
     </div>
     <% } %> 
     <button class="btn upload"><i class="icon icon-circle-arrow-up"></i> Upload Attachment</button>
-    <button class="btn duplicate"><i class="icon icon-repeat"></i> Duplicate document</button>
+    <button class="btn duplicate"><i class="icon icon-repeat"></i> Clone document</button>
   </div>
 
   <button class="btn btn-danger delete"><i class="icon icon-trash"></i></button>

http://git-wip-us.apache.org/repos/asf/couchdb/blob/a17bf86a/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html b/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html
index 7616300..54be01f 100644
--- a/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html
+++ b/src/fauxton/app/addons/documents/templates/duplicate_doc_modal.html
@@ -15,7 +15,7 @@ the License.
 <div class="modal hide fade">
   <div class="modal-header">
     <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
-    <h3>Duplicate Document</h3>
+    <h3>Clone Document</h3>
   </div>
   <div class="modal-body">
     <div id="modal-error" class="hide alert alert-error"/>
@@ -29,7 +29,7 @@ the License.
   </div>
   <div class="modal-footer">
     <button data-dismiss="modal" class="btn cancel-button"><i class="icon fonticon-circle-x"></i> Cancel</button>
-    <button id="duplicate-btn" class="btn btn-success save"><i class="fonticon-circle-check"></i> Duplicate</button>
+    <button id="duplicate-btn" class="btn btn-success save"><i class="fonticon-circle-check"></i> Clone</button>
   </div>
 </div>