Active Topics

 


Reply
Thread Tools
Posts: 138 | Thanked: 37 times | Joined on Jan 2012 @ Costa Rica
#6101
Originally Posted by Schturman View Post
Ahhh.. Yes, probably you are right and it loads from cache..


Hmmm.. Don't know.. Which language interface you use in your phone ? I'm Use english and it show in inglish without any problem...
Here /usr/share/l10n/meegotouch I found file with "ru" extension, it should be translation to Russian and here Lorenzo posted italian translation: http://talk.maemo.org/showpost.php?p...postcount=6078
I think it related to the native language of your phone interface...
could be it my great friend Schtur..... My native language is Latinamerican!!!! how to change that??
maybe also can help me how to remove the battery icon from status bar(area)
 
Posts: 138 | Thanked: 37 times | Joined on Jan 2012 @ Costa Rica
#6102
Originally Posted by lorenzo View Post
italian translation for netspeed
/usr/share/l10n/meegotouch
spanish version or english??
 
guillermorojaz's Avatar
Posts: 283 | Thanked: 102 times | Joined on Jan 2012 @ VENEZUELA
#6103
Originally Posted by Thorvic777 View Post
How do you hide the battery icon from status area??
Llevando a 0 (zero) el valor que el statusarea.css le asigna a los iconos de la bateria.

Taking 0 (zero) value the assigned statusarea.css the battery icons.




Code:
 ORIGINAL NOKIA:


StatusIndicatorIconStyle#BatteryStatusIndicatorLevel {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-battery-verylow icon-s-status-battery-low icon-s-status-battery1 icon-s-status-battery2 icon-s-status-battery3 icon-s-status-battery4 icon-s-status-battery5 icon-s-status-battery6 icon-s-status-battery7 icon-s-status-battery8";
    margin-left: 0; 
    preferred-size: -1 -1;
    minimum-size: -1 -1;
    maximum-size: -1 -1;
}

StatusIndicatorIconStyle#BatteryStatusIndicatorCharging {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-battery-verylow icon-s-status-battery-low icon-s-status-battery1 icon-s-status-battery2 icon-s-status-battery3 icon-s-status-battery4 icon-s-status-battery5 icon-s-status-battery6 icon-s-status-battery7 icon-s-status-battery8";
    margin-left: 0;
    preferred-size: -1 -1;
    minimum-size: -1 -1;
    maximum-size: -1 -1;
    animation-duration: 10000;
}

StatusIndicatorIconStyle#BatteryStatusIndicatorPowerSave {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-powersave-verylow icon-s-status-powersave-low icon-s-status-powersave1 icon-s-status-powersave2 icon-s-status-powersave3 icon-s-status-powersave4 icon-s-status-powersave5 icon-s-status-powersave6 icon-s-status-powersave7 icon-s-status-powersave8";
    margin-left: 0;
    preferred-size: -1 -1;
    minimum-size: -1 -1;
    maximum-size: -1 -1;
}

StatusIndicatorIconStyle#BatteryStatusIndicatorPowerSaveCharging {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-powersave-verylow icon-s-status-powersave-low icon-s-status-powersave1 icon-s-status-powersave2 icon-s-status-powersave3 icon-s-status-powersave4 icon-s-status-powersave5 icon-s-status-powersave6 icon-s-status-powersave7 icon-s-status-powersave8";
    margin-left: 0;
    preferred-size: -1 -1;
    minimum-size: -1 -1;
    maximum-size: -1 -1;
    animation-duration: 10000;
}

Code:
MODIFIED:

StatusIndicatorIconStyle#BatteryStatusIndicatorLevel {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-battery-verylow icon-s-status-battery-low icon-s-status-battery1 icon-s-status-battery2 icon-s-status-battery3 icon-s-status-battery4 icon-s-status-battery5 icon-s-status-battery6 icon-s-status-battery7 icon-s-status-battery8";
    margin-left: 0;
    preferred-size: 0 -1;
    minimum-size: 0 -1;
    maximum-size: 0 -1;
}

StatusIndicatorIconStyle#BatteryStatusIndicatorCharging {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-battery-verylow icon-s-status-battery-low icon-s-status-battery1 icon-s-status-battery2 icon-s-status-battery3 icon-s-status-battery4 icon-s-status-battery5 icon-s-status-battery6 icon-s-status-battery7 icon-s-status-battery8";
    margin-left: 0;
    preferred-size: 0 -1;
    minimum-size: 0 -1;
    maximum-size: 0 -1;
    animation-duration: 10000;
}

StatusIndicatorIconStyle#BatteryStatusIndicatorPowerSave {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-powersave-verylow icon-s-status-powersave-low icon-s-status-powersave1 icon-s-status-powersave2 icon-s-status-powersave3 icon-s-status-powersave4 icon-s-status-powersave5 icon-s-status-powersave6 icon-s-status-powersave7 icon-s-status-powersave8";
    margin-left: 0;
    preferred-size: 0 -1;
    minimum-size: 0 -1;
    maximum-size: 0 -1;
}

StatusIndicatorIconStyle#BatteryStatusIndicatorPowerSaveCharging {
    /* The list of IDs of the images to be shown in the status indicator separated by spaces */
    image-list: "icon-s-status-powersave-verylow icon-s-status-powersave-low icon-s-status-powersave1 icon-s-status-powersave2 icon-s-status-powersave3 icon-s-status-powersave4 icon-s-status-powersave5 icon-s-status-powersave6 icon-s-status-powersave7 icon-s-status-powersave8";
    margin-left: 0;
    preferred-size: 0 -1;
    minimum-size: 0 -1;
    maximum-size: 0 -1;
    animation-duration: 10000;
}


"statusarea modified"


*EDIT*

This modification does not affect the tweak
T > 3 > 1 > 1 > 6.

Last edited by guillermorojaz; 2013-04-19 at 03:01.
 
Posts: 138 | Thanked: 37 times | Joined on Jan 2012 @ Costa Rica
#6104
Where do I put this modified file for the battery??
 
Posts: 149 | Thanked: 34 times | Joined on Dec 2011
#6105
Hi Lorenzo Please can U update the app Netspeed for Portuguese Brazil? Thanks very much for ur work.
 
Posts: 138 | Thanked: 37 times | Joined on Jan 2012 @ Costa Rica
#6106
Well i found where to put status area css thanks....
 
guillermorojaz's Avatar
Posts: 283 | Thanked: 102 times | Joined on Jan 2012 @ VENEZUELA
#6107
Originally Posted by Thorvic777 View Post
Where do I put this modified file for the battery??
usr/share/themes/base/meegotouch/sysuid/style
 

The Following User Says Thank You to guillermorojaz For This Useful Post:
MK99's Avatar
Posts: 644 | Thanked: 480 times | Joined on Jul 2012 @ Finland
#6108
If there isn't language on Netspeed-setting, like this you can change it to english:
as root
Code:
cp -f /usr/share/l10n/meegotouch/netspeedapplet_en.qm /usr/share/l10n/meegotouch/netspeedapplet.qm
 

The Following 2 Users Say Thank You to MK99 For This Useful Post:
Posts: 109 | Thanked: 59 times | Joined on Apr 2012
#6109
cannot download via auto checker - getting syntax error, file not found for the .deb file
 

The Following User Says Thank You to sid21177 For This Useful Post:
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#6110
Originally Posted by sid21177 View Post
cannot download via auto checker - getting syntax error, file not found for the .deb file
Probably you have very old version.. Just remove it and install new one...
 
Reply

Tags
hebrew vkb, n9 qtweak, n9 quick tweak, n9 quicktweak, root-ssh


 
Forum Jump


All times are GMT. The time now is 17:02.