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