XOOPS  2.6.0
modinfo.php
Go to the documentation of this file.
1 <?php
2 /*
3  You may not change or alter any portion of this comment or credits
4  of supporting developers from this source code or any supporting source code
5  which is considered copyrighted (c) material of the original comment or credit authors.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10  */
11 
18 define('_MI_QRCODE_NAME', 'QRCode');
19 define('_MI_QRCODE_DSC', 'Support for QRCode creation');
20 
21 // Preferences
22 define("_MI_QRCODE_ECL", "Error Correction Level");
23 define("_MI_QRCODE_ECLDSC", "Allows correction for damaged or obscured pixels.");
24 define("_MI_QRCODE_ECL_L", "Low (7%)");
25 define("_MI_QRCODE_ECL_M", "Medium (15%)");
26 define("_MI_QRCODE_ECL_Q", "Quartile (25%)");
27 define("_MI_QRCODE_ECL_H", "High (30%)");
28 define("_MI_QRCODE_MPS", "QR module size");
29 define("_MI_QRCODE_MPSDSC", "Pixel size of each element");
30 define("_MI_QRCODE_MARGIN", "Image margin");
31 define("_MI_QRCODE_MARGINDSC", "Quiet zone size as number of QR modules");
32 define("_MI_QRCODE_BGCOLOR", "Background Color");
33 define("_MI_QRCODE_BGCOLORDSC", "");
34 define("_MI_QRCODE_FGCOLOR", "Foreground Color");
35 define("_MI_QRCODE_FGCOLORDSC", "");
36 define("_MI_QRCODE_CONTRAST_OK", "QR code color contrast OK");
37 define("_MI_QRCODE_CONTRAST_ERROR", "QR code color contrast may be too low to be readable");
38 define("_MI_QRCODE_CONTRAST_INVERSE", "QR code foreground color must be darker than background to be readable");