HI,
I obtained a copy of the Jitsi for Android code, built a debug version and
deployed it on my Android device. I saw the following line in LogCat:
11-05 20:09:07.625: W/System.err(7387): 20:09:07.625 SEVERE: [9]
org.jitsi.impl.androidresources.AndroidResourceServiceImpl.getResourceId().215
Unresolved string key: service_gui_BUSY_STATUS
There seems to be a missing string resource, namely
"service_gui_BUSY_STATUS"
Does anyone know what the string is supposed to say?
Thanks,
Sandeep
Hi,
HI,
I obtained a copy of the Jitsi for Android code, built a debug version and
deployed it on my Android device. I saw the following line in LogCat:
11-05 20:09:07.625: W/System.err(7387): 20:09:07.625 SEVERE: [9]
org.jitsi.impl.androidresources.AndroidResourceServiceImpl.getResourceId().215
Unresolved string key: service_gui_BUSY_STATUS
There seems to be a missing string resource, namely
"service_gui_BUSY_STATUS"
Does anyone know what the string is supposed to say?
Thanks,
Sandeep
Thanks for pointing this out. Most of the strings come from Jitsi
resource files. You can find definitions for texts in
/jitsi/resources/languages/resources.properties(directory of Jitsi for
desktop project). This one is not copied yet, but it should be:
service.gui.BUSY_STATUS=Busy
As you can see "." are replaced with "_" before putting them to
strings.xml file in Android project.
Regards,
Pawel
ยทยทยท
On Wed, Nov 6, 2013 at 5:27 AM, Sandeep <sandy.8925@gmail.com> wrote:
Ok, so that's where the strings come from.
I've attached a patch to add the string resource.
0001-Added-string-resourc-service_gui_BUSY_STATUS.patch (886 Bytes)