对于我的magento安装,我必须在语言目录中添加一些符号链接。
我有以下语言目录:EN,NL,DE,FR和IT。
这些是必须执行的命令。
LocationServices.getFusedLocationProviderClient(context);
LocationRequest currentLocationRequest = new LocationRequest();
currentLocationRequest.setInterval(500)
.setFastestInterval(0)
.setMaxWaitTime(0)
.setSmallestDisplacement(0)
.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
fusedLocationProviderClient.requestLocationUpdates(currentLocationRequest, locationCallback);
有没有办法减少这种减少量?
答案 0 :(得分:2)
为什么不尝试使用bash脚本
#!/bin/bash
FOLDERS=(app skin var js media);
LOCALES=(en nl de fr it);
for i in FOLDERS; do
for j in LOCALES; do
ln -s /path/to/magento/installation/${FOLDERS[i]} /path/to/magento/installation/${LOCALES[j]}/${FOLDERS[i]}
done
done