Fix QRconfig

This commit is contained in:
Ibnu Maksum 2024-06-25 14:14:30 +07:00
parent 2401c7ae99
commit 8e9338f347
No known key found for this signature in database
GPG key ID: 7FC82848810579E5
4 changed files with 14 additions and 5 deletions

View file

@ -6,7 +6,7 @@
*/
define('QR_CACHEABLE', false); // use cache - more disk reads but less CPU power, masks and format templates are stored there
define('QR_CACHE_DIR', dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR); // used when QR_CACHEABLE === true
define('QR_CACHE_DIR', false); // used when QR_CACHEABLE === true
//define('QR_LOG_DIR', dirname(__FILE__).DIRECTORY_SEPARATOR); // default error logs dir
define('QR_LOG_DIR', false);
define('QR_FIND_BEST_MASK', true); // if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code

View file

@ -118,7 +118,7 @@ class Lang
);
foreach ($string as $k => &$v) {
if ($diff->$k) {
$v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : '');
$v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? '' : '');
} else {
unset($string[$k]);
}

View file

@ -405,7 +405,7 @@
"day": "Hari",
"hour": "Jam",
"minute": "Menit",
"second": "Kedua",
"second": "Detik",
"Account_Type": "Jenis akun",
"Contact": "Kontak",
"Paid": "Dibayar",
@ -538,5 +538,14 @@
"Zip_Code": "Kode Pos",
"Phone": "Telepon",
"Customer_Geo_Location_Information": "Informasi Lokasi Geo Pelanggan",
"": ""
"": "",
"Code": "Kode",
"Send_Personal_Message": "Kirim Pesan Pribadi",
"Send_Via": "Kirim melalui",
"Compose_your_message___": "Tulis pesan Anda...",
"Use_placeholders_": "Gunakan placeholder:",
"Customer_Name": "Nama Pelanggan",
"Customer_Username": "Nama Pengguna Pelanggan",
"Customer_Phone": "Telepon Pelanggan",
"Your_Company_Name": "Nama perusahaan Anda"
}

View file

@ -1,3 +1,3 @@
{
"version": "2024.6.22"
"version": "2024.6.25"
}