diff --git a/README.md b/README.md
index 9e704f3..1097399 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ URL Manager is a Django-based web application for managing and tracking short UR
## Usage
-- To create a new short URL, click on the "Create New Link" button on the home page.
+- To create a new short URL, click on the "New Link" button on the home page.
- To edit or delete a link, use the corresponding buttons in the link list.
- To view detailed statistics for a link, click on the "Details" button.
- Use the search bar in the navigation to quickly find links by alias or original URL.
diff --git a/links/templates/links/link_form.html b/links/templates/links/link_form.html
index 34e6644..a1a60ba 100644
--- a/links/templates/links/link_form.html
+++ b/links/templates/links/link_form.html
@@ -11,7 +11,7 @@
- {% if form.instance.pk %}{% trans "Edit Link" %}{% else %}{% trans "Create New Link" %}{% endif %}
+ {% if form.instance.pk %}{% trans "Edit Link" %}{% else %}{% trans "New Link" %}{% endif %}
diff --git a/links/templates/links/link_list.html b/links/templates/links/link_list.html
index 54d47c4..2a6dced 100644
--- a/links/templates/links/link_list.html
+++ b/links/templates/links/link_list.html
@@ -37,7 +37,7 @@
- {% trans "Create New Link" %}
+ {% trans "New Link" %}