瀏覽代碼

Fixed #26450 -- Corrected "Save as new" button label in docs.

Markus Amalthea Magnuson 9 年之前
父節點
當前提交
23aa700b78
共有 1 個文件被更改,包括 4 次插入6 次删除
  1. 4 6
      docs/ref/contrib/admin/index.txt

+ 4 - 6
docs/ref/contrib/admin/index.txt

@@ -1137,14 +1137,12 @@ subclass::
 
 .. attribute:: ModelAdmin.save_as
 
-    Set ``save_as`` to enable a "save as" feature on admin change forms.
+    Set ``save_as`` to enable a "save as new" feature on admin change forms.
 
     Normally, objects have three save options: "Save", "Save and continue
-    editing" and "Save and add another". If ``save_as`` is ``True``, "Save
-    and add another" will be replaced by a "Save as" button.
-
-    "Save as" means the object will be saved as a new object (with a new ID),
-    rather than the old object.
+    editing", and "Save and add another". If ``save_as`` is ``True``, "Save
+    and add another" will be replaced by a "Save as new" button that creates a
+    new object (with a new ID) rather than updating the existing object.
 
     By default, ``save_as`` is set to ``False``.