xref: /plugin/pagesicon/lang/en/lang.php (revision b603bbe1e83f2122ab63b4df278133cf619e6be8)
1da933f89SLORTET<?php
2da933f89SLORTET
3da933f89SLORTET$lang['menu'] = 'Page Icon Upload';
4da933f89SLORTET$lang['intro'] = 'Upload a page icon and save it at the expected location/name.';
5da933f89SLORTET$lang['target_page'] = 'Target page ID';
6da933f89SLORTET$lang['icon_variant'] = 'Icon type';
7da933f89SLORTET$lang['icon_variant_big'] = 'Big icon (icon)';
8da933f89SLORTET$lang['icon_variant_small'] = 'Small icon (thumbnail)';
9da933f89SLORTET$lang['icon_filename'] = 'Target filename';
10da933f89SLORTET$lang['icon_filename_help'] = 'Choose the final filename (uploaded file extension is preserved).';
11da933f89SLORTET$lang['icon_filename_option_label'] = '.ext';
12da933f89SLORTET$lang['file'] = 'File';
13da933f89SLORTET$lang['upload_button'] = 'Upload icon';
14da933f89SLORTET$lang['allowed_extensions'] = 'Allowed extensions: %s';
15da933f89SLORTET$lang['open_pagesicon_page'] = 'Open upload page';
16da933f89SLORTET$lang['admin_forward_info'] = 'The upload form is available outside admin (subject to upload rights on the target namespace).';
17da933f89SLORTET$lang['current_big_icon'] = 'Current icon (big)';
18da933f89SLORTET$lang['current_small_icon'] = 'Current icon (small)';
19da933f89SLORTET$lang['current_icon_none'] = 'No icon found';
20da933f89SLORTET$lang['open_media_manager'] = 'Open media manager';
21da933f89SLORTET$lang['delete_icon'] = 'Delete';
22da933f89SLORTET$lang['page_action'] = 'Manage icon';
23da933f89SLORTET$lang['page_action_title'] = 'Manage icon for this page';
24da933f89SLORTET
25da933f89SLORTET$lang['upload_success'] = 'Icon uploaded successfully: %s';
26da933f89SLORTET$lang['delete_success'] = 'Icon deleted successfully: %s';
27da933f89SLORTET$lang['error_target_page'] = 'Target page is required.';
28da933f89SLORTET$lang['error_missing_file'] = 'Please select a file to upload.';
29da933f89SLORTET$lang['error_upload_failed'] = 'Upload failed';
30da933f89SLORTET$lang['error_no_upload_permission'] = 'You do not have upload rights on this namespace.';
31da933f89SLORTET$lang['error_delete_invalid'] = 'Unable to delete: invalid data.';
32da933f89SLORTET$lang['error_delete_not_found'] = 'Unable to delete: file not found.';
33da933f89SLORTET$lang['error_delete_failed'] = 'Unable to delete: file deletion failed.';
34da933f89SLORTET$lang['error_extension_missing'] = 'Missing file extension.';
35da933f89SLORTET$lang['error_extension_not_allowed'] = 'Extension "%s" is not allowed. Allowed: %s';
36*b603bbe1SLORTET$lang['error_no_filename_choices'] = 'No target filename is available. Check the icon naming configuration.';
37da933f89SLORTET$lang['error_write_dir'] = 'Unable to create target directory.';
38da933f89SLORTET$lang['error_write_file'] = 'Unable to write uploaded file.';
39