xref: /plugin/dokullm/lang/en/lang.php (revision 590368144294a28ecf0e0e39feb976bf79fefb1e)
1<?php
2/**
3 * English language file for dokullm plugin
4 *
5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
6 * @author  Costin Stroie <costinstroie@eridu.eu.org>
7 */
8
9/**
10 * Button label for the copy page functionality
11 *
12 * This string is used as the label for the copy page button that appears
13 * in the page tools menu. It should be a clear, actionable phrase that
14 * indicates the button's purpose.
15 */
16$lang['copy_page_button'] = "Copy page";
17
18/**
19 * JavaScript prompt message for entering a new page ID
20 *
21 * This message is displayed in a JavaScript prompt dialog when the user
22 * clicks the copy page button. It asks the user to enter the ID for the
23 * new page that will be created as a copy of the current page.
24 */
25$lang['js']['enter_page_id'] = "Enter new-page's ID.";
26
27/**
28 * JavaScript error message for ID validation
29 *
30 * This message is displayed in a JavaScript alert dialog when the user
31 * enters the same ID as the current page. It enforces that the new page
32 * must have a different ID from the source page.
33 */
34$lang['js']['different_id_required'] = 'You must enter a different ID from current page.';
35