[Q] Data Signal In/Out won't show on CM11 GT-S7270 - Samsung Galaxy Ace 3

I want to show Signal In/Out, so I decide made some change in SystemUI.apk and here's msim_signal_cluster_view.xml content
Code:
[SIZE="3"][SIZE="2"]<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.MSimSignalClusterView android:gravity="center" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<FrameLayout android:id="@id/wifi_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="-6.0dip">
<ImageView android:id="@id/wifi_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" android:layout_centerVertical="true" android:layout_alignParentEnd="true" />
<ImageView android:layout_gravity="bottom|center" android:id="@id/wifi_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<View android:id="@id/spacer" android:visibility="gone" android:layout_width="6.0dip" android:layout_height="6.0dip" />
<FrameLayout android:id="@id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content">
<View android:visibility="invisible" android:layout_width="3.0dip" android:layout_height="6.0dip" />
<TextView android:layout_gravity="bottom|right|center" android:id="@id/mobile_slot_label" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/TextAppearance.StatusBar.SimSlotLabel" />
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="end|bottom|center" android:id="@id/mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<ImageView android:id="@id/mobile_roaming" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</FrameLayout>
<FrameLayout android:id="@id/mobile_combo_sub2" android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content">
<View android:visibility="invisible" android:layout_width="3.0dip" android:layout_height="6.0dip" />
<TextView android:layout_gravity="bottom|right|center" android:id="@id/mobile_slot_label_2" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/TextAppearance.StatusBar.SimSlotLabel" />
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal_sub2" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type_sub2" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="end|bottom|center" android:id="@id/mobile_inout_sub2" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<ImageView android:id="@id/mobile_roaming_sub2" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</FrameLayout>
<FrameLayout android:id="@id/mobile_combo_sub3" android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content">
<View android:visibility="invisible" android:layout_width="3.0dip" android:layout_height="6.0dip" />
<TextView android:layout_gravity="bottom|right|center" android:id="@id/mobile_slot_label_3" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/TextAppearance.StatusBar.SimSlotLabel" />
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal_sub3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type_sub3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="end|bottom|center" android:id="@id/mobile_inout_sub3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<ImageView android:id="@id/mobile_roaming_sub3" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</FrameLayout>
<ImageView android:id="@id/airplane" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.MSimSignalClusterView>[/SIZE][/SIZE]
So, I remove some line to make it simple, it's look like this
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.MSimSignalClusterView android:gravity="center" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<FrameLayout android:id="@id/wifi_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="-6.0dip">
<ImageView android:id="@id/wifi_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" android:layout_centerVertical="true" android:layout_alignParentEnd="true" />
<ImageView android:layout_gravity="bottom|center" android:id="@id/wifi_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<View android:id="@id/spacer" android:visibility="gone" android:layout_width="6.0dip" android:layout_height="6.0dip" />
<FrameLayout android:id="@id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content">
<View android:visibility="invisible" android:layout_width="3.0dip" android:layout_height="6.0dip" />
<TextView android:layout_gravity="bottom|right|center" android:id="@id/mobile_slot_label" android:layout_width="wrap_content" android:layout_height="wrap_content" style="@style/TextAppearance.StatusBar.SimSlotLabel" />
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="end|bottom|center" android:id="@id/mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<ImageView android:id="@id/mobile_roaming" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
</FrameLayout>
<ImageView android:id="@id/airplane" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.MSimSignalClusterView>
This some changes I've made
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.MSimSignalClusterView android:gravity="center" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<FrameLayout android:id="@id/wifi_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="-6.0dip">
<ImageView android:id="@id/wifi_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="center" android:layout_centerVertical="true" android:layout_alignParentEnd="true" />
<ImageView android:layout_gravity="bottom|center" android:id="@id/wifi_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
<View android:id="@id/spacer" android:visibility="gone" android:layout_width="6.0dip" android:layout_height="6.0dip" />
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<View android:visibility="invisible" android:layout_width="3.0dip" android:layout_height="6.0dip" />
<FrameLayout android:id="@id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content">
<ImageView android:id="@id/mobile_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:id="@id/mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageView android:layout_gravity="end|bottom|center" android:id="@id/mobile_inout" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</FrameLayout>
</FrameLayout>
<ImageView android:id="@id/airplane" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.MSimSignalClusterView>
Recompile...
Flash trough CWM...
And result is nothing changed...
Could someone here tell me, how to resolve this...

Related

[Dev] Multilanguage Fix for Face Recognation. | It's Your turn, translate!

Hey Devs,
it seems in stock xxkqb there is almost only english support for face recognation.
so i was looking for the strings which must be translate.
and now its your turn, if face recognation does not support your language
and if you want to help, just translate the following strings
in your language and post it here.
dont forget to post whats the language and the country. (like: en - gb for english great britain)
translations done:
german - DE
dutch - NL
italian - IT
romanian - RO
portuguese - PT
spanish - ES
thai - TH
croatian (hrvatski) - HR
hungarian - HU
mandarin chinese
(not supported at the whole rom, so probably no chance to implement at this time)
spanish catalan - CA_ES
portuguese brazilian - PT_BR
you can already look for corrections.
but please do ever post the full code.
otherwise it is a crappy work to put word by word in the values.
thanks to all translators
we need more of those who take some time for this work
please be fair and do it only, if you're really sure that your translation is 100% correctly and it sounds similar to the rest of phonesettings.
so a rom-cooker can include the language fixes for you
(note for rom-cookers: it seems some strings are translate and some not, so look for existing strings before copy the translations)
lets do it, just copy the code and replace the bold red text with your translations!
in settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">[COLOR="Red"][B]Face recognition[/B][/COLOR]</string>
<string name="unlock_set_unlock_face_recognition_summary">[COLOR="Red"][B]Recognise face to unlock settings[/B][/COLOR]</string>
<string name="facerecognition_change_lock_label">[COLOR="Red"][B]Set face recognition[/B][/COLOR]</string>
<string name="face_lock_intro_message"><font size="17">"[COLOR="Red"][B]Protect device from unauthorised use by setting facial recognition.[/B][/COLOR]
"<font height="17">"
"</font><b>1.</b>"[COLOR="Red"][B] On the next screen, save your face to your device. A front image of your face will improve recognition rate.[/B][/COLOR]
"<font height="17">"
"</font><b>2.</b>"[COLOR="Red"] [B]Set alternative unlock method. [/B][/COLOR]
"<font height="17">"
"</font><b>[COLOR="Red"][B]Ready to start? Tap Next[/B][/COLOR]</b>".
"<font height="3">"
"</font>[COLOR="Red"][B]Tap Cancel to leave device unprotected[/B][/COLOR]</font></string>
<string name="face_lock_finish_message"><font size="17">"[COLOR="Red"][B]Now, face recognition will start whenever screen is turned on.
To make recognition rate high, try to keep the same angle and distance of phone.[/B][/COLOR]"</font>" "</string>
<string name="face_alternative_Message">[COLOR="Red"][B]Set other unlock method for alternative unlock[/B][/COLOR]</string>
<string name="done">[B][COLOR="Red"]Done[/COLOR][/B]</string>
in facekey.apk
Code:
<string name="app_name2">[COLOR="Red"][B]Face Register[/B][/COLOR]</string>
<string name="register_title">[COLOR="Red"][B]Set face recognition[/B][/COLOR]</string>
<string name="button_cancel">[COLOR="Red"][B]Cancel[/B][/COLOR]</string>
<string name="button_capture">[COLOR="Red"][B]Capture[/B][/COLOR]</string>
<string name="button_recapture">[COLOR="Red"][B]Retry[/B][/COLOR]</string>
<string name="button_register">[COLOR="Red"][B]Enroll[/B][/COLOR]</string>
<string name="dialog_register_face">[COLOR="Red"][B]Register your face[/B][/COLOR]</string>
<string name="title_recognition_success">[COLOR="Red"][B]Approved[/B][/COLOR]</string>
<string name="title_recognition_fail">[COLOR="Red"][B]Denied[/B][/COLOR]</string>
<string name="toast_register_face">[COLOR="Red"][B]Completed[/B][/COLOR]</string>
<string name="guide_face_silhouette">[COLOR="Red"][B]Try to fit your face to guide shape[/B][/COLOR]</string>
<string name="guide_eye_check">[COLOR="Red"][B]Check your eye positions[/B][/COLOR]</string>
<string name="guide_wait_camera">[COLOR="Red"][B]Please Wait[/B][/COLOR]</string>
<string name="face_too_far">[COLOR="Red"][B]Too far[/B][/COLOR]</string>
<string name="face_too_close">[COLOR="Red"][B]Too close[/B][/COLOR]</string>
<string name="face_fit">[COLOR="Red"][B]Fit[/B][/COLOR]</string>
<string name="face_none">[COLOR="Red"][B]No Face[/B][/COLOR]</string>
<string name="face_too_dark">[COLOR="Red"][B]Too dark[/B][/COLOR]</string>
<string name="face_too_shine">[COLOR="Red"][B]Too shine[/B][/COLOR]</string>
dont know if someone want the face recognation in his language, but i want it so i'll give german translations in the next post.
if no one out there who want this too, just close this thread.
translations to german (values DE)
settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">Gesichtserkennung</string>
<string name="unlock_set_unlock_face_recognition_summary">Gesicht erkennen, um Bildschirm zu entsperren.</string>
<string name="facerecognition_change_lock_label">Gesichtserkennung aktivieren</string>
<string name="face_lock_intro_message"><font size="17">"Schützen Sie Ihr Gerät vor nicht autorisierter Verwendung, indem Sie die Gesichtserkennung aktivieren.
"<font height="17">"
"</font><b>1.</b>" Speichern Sie auf dem nächsten Bildschirm Ihr Gesicht auf dem Gerät. Eine Frontalaufnahme Ihres Gesichts verbessert die Erkennungsrate.
"<font height="17">"
"</font><b>2.</b>" Legen Sie eine alternative Entsperrmethode fest.
"<font height="17">"
"</font><b>Sind Sie bereit? Tippen Sie auf Weiter</b>".
"<font height="3">"
"</font>Wenn Sie das Gerät nicht schützen möchten, tippen Sie auf Abbrechen.</font></string>
<string name="face_lock_finish_message"><font size="17">"Die Gesichtserkennung wird nun jedes mal starten, sobald Sie den Bildschirm anschalten.
Für eine effiziente Erkennung, versuchen Sie den gleichen Winkel und Abstand zur Frontkamera einzuhalten."</font>" "</string>
<string name="face_alternative_Message">Legen Sie eine alternative Entsperrmethode fest.</string>
<string name="done">Fertig</string>
facekey.apk
Code:
<string name="app_name2">Gesichtsregistrierung</string>
<string name="register_title">Gesichtserkennung aktivieren</string>
<string name="button_cancel">Abbrechen</string>
<string name="button_capture">Aufnehmen</string>
<string name="button_recapture">Nochmal</string>
<string name="button_register">Speichern</string>
<string name="dialog_register_face">Gesicht registrieren</string>
<string name="title_recognition_success">Akzeptiert</string>
<string name="title_recognition_fail">Verweigert</string>
<string name="toast_register_face">Fertig</string>
<string name="guide_face_silhouette">Versuchen Sie ihr Gesicht im Muster zu platzieren.</string>
<string name="guide_eye_check">Prüfen Sie die Position Ihrer Augen.</string>
<string name="guide_wait_camera">Bitte warten...</string>
<string name="face_too_far">zu weit</string>
<string name="face_too_close">zu nah</string>
<string name="face_fit">passend</string>
<string name="face_none">kein Gesicht</string>
<string name="face_too_dark">zu dunkel</string>
<string name="face_too_shine">zu hell</string>
make make a Dutch (NL) one tomorrow
if i can collect enough languages, i'll make a fix-mod, but if there are only a few translations, the devs can take the sources in this thread.
If you want ITALIAN translation: (value IT)
in settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">[COLOR="Red"][B]Riconoscimento facciale[/B][/COLOR]</string>
<string name="unlock_set_unlock_face_recognition_summary">[COLOR="Red"][B]Riconoscimento facciale richiesto per sbloccare le impostazioni[/B][/COLOR]</string>
<string name="facerecognition_change_lock_label">[COLOR="Red"][B]Imposta il riconoscimento del volto[/B][/COLOR]</string>
<string name="face_lock_intro_message"><font size="17">"[COLOR="Red"][B]Proteggi il tuo dispositivo da un uso non autorizzato, impostando il riconoscimento del volto.[/B][/COLOR]
"<font height="17">"
"</font><b>1.</b>"[COLOR="Red"][B] Nella prossima schermata, salva il tuo volto nel dispositivo. Un immagine frontale del tuo volto migliorerà la velocità di riconoscimento.[/B][/COLOR]
"<font height="17">"
"</font><b>2.</b>"[COLOR="Red"] [B]Imposta un metodo alternativo di sblocco. [/B][/COLOR]
"<font height="17">"
"</font><b>[COLOR="Red"][B]Pronto per cominciare? Schiaccia avanti[/B][/COLOR]</b>".
"<font height="3">"
"</font>[COLOR="Red"][B]Scegli Indietro per lasciare il dispositivo senza protezione[/B][/COLOR]</font></string>
<string name="face_lock_finish_message"><font size="17">"[COLOR="Red"][B]Ora il riconoscimento facciale sarà richiesto ogni volta che lo schermo verrà acceso.
Per aumentare la velocità di riconoscimento, cerca di mantenere lo stesso angolo e la stessa distanza dal dispositivo.[/B][/COLOR]"</font>" "</string>
<string name="face_alternative_Message">[COLOR="Red"][B]Scegli un altro metodo alternativo di sblocco[/B][/COLOR]</string>
<string name="done">[B][COLOR="Red"]Fatto!!![/COLOR][/B]</string>
in facekey.apk
Code:
<string name="app_name2">[COLOR="Red"][B]Registro Facciale[/B][/COLOR]</string>
<string name="register_title">[COLOR="Red"][B]Imposta il riconoscimento facciale[/B][/COLOR]</string>
<string name="button_cancel">[COLOR="Red"][B]Indietro[/B][/COLOR]</string>
<string name="button_capture">[COLOR="Red"][B]Cattura[/B][/COLOR]</string>
<string name="button_recapture">[COLOR="Red"][B]Riprova[/B][/COLOR]</string>
<string name="button_register">[COLOR="Red"][B]Registra[/B][/COLOR]</string>
<string name="dialog_register_face">[COLOR="Red"][B]Registra il tuo volto[/B][/COLOR]</string>
<string name="title_recognition_success">[COLOR="Red"][B]Confermato[/B][/COLOR]</string>
<string name="title_recognition_fail">[COLOR="Red"][B]Negato[/B][/COLOR]</string>
<string name="toast_register_face">[COLOR="Red"][B]Completato[/B][/COLOR]</string>
<string name="guide_face_silhouette">[COLOR="Red"][B]Cerca di adattare il volto alla forma guida[/B][/COLOR]</string>
<string name="guide_eye_check">[COLOR="Red"][B]Controlla la posizione degli occhi[/B][/COLOR]</string>
<string name="guide_wait_camera">[COLOR="Red"][B]Attendi[/B][/COLOR]</string>
<string name="face_too_far">[COLOR="Red"][B]Troppo distante[/B][/COLOR]</string>
<string name="face_too_close">[COLOR="Red"][B]Troppo vicino[/B][/COLOR]</string>
<string name="face_fit">[COLOR="Red"][B]In forma[/B][/COLOR]</string>
<string name="face_none">[COLOR="Red"][B]Nessun volto[/B][/COLOR]</string>
<string name="face_too_dark">[COLOR="Red"][B]Troppo scuro[/B][/COLOR]</string>
<string name="face_too_shine">[COLOR="Red"][B]Troppo chiaro[/B][/COLOR]</string>
Dutch
Settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">Gezichts Herkenning</string>
<string name="unlock_set_unlock_face_recognition_summary">Herken gezicht om instellingen te ontgrendelen</string>
<string name="facerecognition_change_lock_label">Stel gezichts herkenning in</string>
<string name="face_lock_intro_message"><font size="17">"Bevelig het apparaat door gezichts herkenning te gebruiken."<font height="17">"
"<font height="17">"
"</font><b>1.</b>" Op het volgende scherm kun je een vooraanzicht van je gezicht opslaan om vervolgens te gebruiken.
"<font height="17">"
"</font><b>2.</b>" Een alternatieve manier van ontgrendelen instellen
"<font height="17">"
"</font><b>Klaar om te beginnen? Druk op volgende</b>".
"<font height="3">"
<string name="face_lock_finish_message"><font size="17">"Nu zal gezicht herkenning ingeschakeld zijn als het scherm aan is.
Om uw gezicht goed te herkennen dient u uw gezicht op de zelfde positie te houden als bij het instellen."</font>" "</string>
<string name="face_alternative_Message">Stel nog een alternatieve manier in van ontgrendelen</string>
<string name="done">Klaar</string>
facekey.apk
Code:
<string name="app_name2">Geregistreerd Gezichten</string>
<string name="register_title">Gezichts herkenning instellen</string>
<string name="button_cancel">Annuleren</string>
<string name="button_capture">Vaststellen</string>
<string name="button_recapture">Opnieuw proberen</string>
<string name="button_register">Registreren</string>
<string name="dialog_register_face">Gezicht registeren</string>
<string name="title_recognition_success">Toegestaan</string>
<string name="title_recognition_fail">Geweigerd</string>
<string name="toast_register_face">Voltooid</string>
<string name="guide_face_silhouette">Probeer om je gezicht in de vorm te krijgen</string>
<string name="guide_eye_check">Let op de positie van uw ogen/string>
<string name="guide_wait_camera">Een ongenblik geduld.</string>
<string name="face_too_far">Te ver</string>
<string name="face_too_close">Te dichtbij</string>
<string name="face_fit">Passed</string>
<string name="face_none">Geen gezicht</string>
<string name="face_too_dark">Te donker</string>
<string name="face_too_shine">Te licht</string>
Romanian
Romanian:
Settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">Recunoasterea Fetei</string>
<string name="unlock_set_unlock_face_recognition_summary">Recunoaste fata pentru a debloca setarile</string>
<string name="facerecognition_change_lock_label">Seteaza recunoasterea fetei</string>
<string name="face_lock_intro_message"><font size="17">"Protejeaza-ti telefonul de la utilizari fara permisiunea dumneavoastra prin setarea recunoasterii fetei la deblocare.
"<font height="17">"
"</font><b>1.</b>" La ecranul urmator, salvati-va fata. O fotografie din fata va rezulta in sanse mai mari de recunoastere.
"<font height="17">"
"</font><b>2.</b>" Setati metoda alternativa de deblocare.
"<font height="17">"
"</font><b>Pregatiti? Apasati Next</b>".
"<font height="3">"
"</font>Apasati pe Cancel pentru a lasa aparatul neprotejat.</font></string>
<string name="face_lock_finish_message"><font size="17">"Acum, recunoasterea fetei va incepe cand ecranul este pornit.
Pentru a mentine o rata de recunoastere mare, incercati sa mentineti acelasi ungi si aceasi distanta fata de telefon."</font>" "</string>
<string name="face_alternative_Message">Setati o alta metoda de deblocare</string>
<string name="done">Terminat</string>
facekey.apk
Code:
<string name="app_name2">Recunoasterea Fetei</string>
<string name="register_title">Setati recunoasterea fetei</string>
<string name="button_cancel">Renunta</string>
<string name="button_capture">Captureaza</string>
<string name="button_recapture">Reincearca</string>
<string name="button_register">Inregistrare</string>
<string name="dialog_register_face">Inregistreaza fata</string>
<string name="title_recognition_success">Aprobat</string>
<string name="title_recognition_fail">Respins</string>
<string name="toast_register_face">Terminat</string>
<string name="guide_face_silhouette">Incercati sa va pozitionati fata pe machetra</string>
<string name="guide_eye_check">Verificati pozitia ochilor</string>
<string name="guide_wait_camera">Va rugam asteptati</string>
<string name="face_too_far">Prea departe</string>
<string name="face_too_close">Prea aproape</string>
<string name="face_fit">Incape</string>
<string name="face_none">Fara Fata</string>
<string name="face_too_dark">Prea intunecat</string>
<string name="face_too_shine">Prea luminat</string>
It would be nice if another Romanian speaker would take a look over the translation. Just to check!
crisdorya said:
It would be nice if another Romanian speaker would take a look over the translation. Just to check!
Click to expand...
Click to collapse
Yes idd, can someone who's Dutch also look mine over ;P
English is my first language so I will make some grammatical changes to the English translation. There are only a few errors, I will correct the incorrect parts:
1. "On the next screen, save your face to your device...":thumbdown:
Replace with:
On the next screen, take a self-portrait. An image taken facing straight on will improve facial recognition rate.
2. "Now, face recognition will start whenever...":thumbdown:
Replace with:
Face recognition will start when the screen is turned on. To increase recognition rate, try to keep face at the same angle and distance from the phone.
3. "Too shine"
Replace with:
Too bright.
The rest of the translation was fine.:thumbup:
Hope this helps and keep up the good work.
sgs+ on the moon with lots of vitality and adrenaline pumping through its veins @1.8ghz
broodplank1337 said:
Yes idd, can someone who's Dutch also look mine over ;P
Click to expand...
Click to collapse
Doing it right now, give me a couple of seconds .
My version
Mainly some little spelling errors, one or two word orders I thought were a bit better this way. All that I changed is marked in red.
broodplank1337 said:
Dutch
Settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">[COLOR="red"]Gezichtsherkenning[/COLOR]</string>
<string name="unlock_set_unlock_face_recognition_summary">Herken gezicht om instellingen te ontgrendelen</string>
<string name="facerecognition_change_lock_label">Stel [COLOR="red"]gezichtsherkenning [/COLOR]in</string>
<string name="face_lock_intro_message"><font size="17">"[COLOR="red"]Beveilig [/COLOR]het apparaat door [COLOR="red"]gezichtsherkenning [/COLOR]te gebruiken."<font height="17">"
"<font height="17">"
"</font><b>1.</b>" Op het volgende scherm kun je een vooraanzicht van je gezicht opslaan om vervolgens te gebruiken.
"<font height="17">"
"</font><b>2.</b>" Een alternatieve manier van ontgrendelen instellen
"<font height="17">"
"</font><b>Klaar om te beginnen? Druk op volgende</b>".
"<font height="3">"
<string name="face_lock_finish_message"><font size="17">"Nu zal [COLOR="red"]gezichtsherkenning steeds starten als het scherm aangezet wordt.[/COLOR]
Om uw gezicht goed te herkennen dient u uw gezicht op de zelfde positie te houden als bij het instellen."</font>" "</string>
<string name="face_alternative_Message">Stel nog een alternatieve manier [COLOR="red"]van ontgrendelen in[/COLOR]</string>
<string name="done">Klaar</string>
facekey.apk
Code:
<string name="app_name2">[COLOR="red"]Gezicht registreren[/COLOR]</string>
<string name="register_title">Gezichtsherkenning instellen</string>
<string name="button_cancel">Annuleren</string>
<string name="button_capture">[COLOR="red"]Vastleggen[/COLOR]</string>
<string name="button_recapture">Opnieuw proberen</string>
<string name="button_register">Registreren</string>
<string name="dialog_register_face">Gezicht registeren</string>
<string name="title_recognition_success">Toegestaan</string>
<string name="title_recognition_fail">Geweigerd</string>
<string name="toast_register_face">Voltooid</string>
<string name="guide_face_silhouette">[COLOR="Red"]Probeer je gezicht in de vorm te krijgen[/COLOR]</string>
<string name="guide_eye_check">Let op de positie van uw ogen/string>
<string name="guide_wait_camera">Een [COLOR="Red"]ogenblik[/COLOR] geduld.</string>
<string name="face_too_far">Te ver</string>
<string name="face_too_close">Te dichtbij</string>
<string name="face_fit">Passed</string>
<string name="face_none">Geen gezicht</string>
<string name="face_too_dark">Te donker</string>
<string name="face_too_shine">Te licht</string>
Click to expand...
Click to collapse
crisdorya said:
Romanian:
Settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">Recunoasterea Fetei</string>
<string name="unlock_set_unlock_face_recognition_summary">Recunoaste fata pentru a debloca setarile</string>
<string name="facerecognition_change_lock_label">Seteaza recunoasterea fetei</string>
<string name="face_lock_intro_message"><font size="17">"Protejeaza-ti telefonul de la utilizari fara permisiunea dumneavoastra prin setarea recunoasterii fetei la deblocare.
"<font height="17">"
"</font><b>1.</b>" La ecranul urmator, salvati-va fata. O fotografie din fata va rezulta in sanse mai mari de recunoastere.
"<font height="17">"
"</font><b>2.</b>" Setati metoda alternativa de deblocare.
"<font height="17">"
"</font><b>Pregatiti? Apasati Next</b>".
"<font height="3">"
"</font>Apasati pe Cancel pentru a lasa aparatul neprotejat.</font></string>
<string name="face_lock_finish_message"><font size="17">"Acum, recunoasterea fetei va incepe cand ecranul este pornit.
Pentru a mentine o rata de recunoastere mare, incercati sa mentineti acelasi ungi si aceasi distanta fata de telefon."</font>" "</string>
<string name="face_alternative_Message">Setati o alta metoda de deblocare</string>
<string name="done">Terminat</string>
facekey.apk
Code:
<string name="app_name2">Recunoasterea Fetei</string>
<string name="register_title">Setati recunoasterea fetei</string>
<string name="button_cancel">Renunta</string>
<string name="button_capture">Captureaza</string>
<string name="button_recapture">Reincearca</string>
<string name="button_register">Inregistrare</string>
<string name="dialog_register_face">Inregistreaza fata</string>
<string name="title_recognition_success">Aprobat</string>
<string name="title_recognition_fail">Respins</string>
<string name="toast_register_face">Terminat</string>
<string name="guide_face_silhouette">Incercati sa va pozitionati fata pe machetra</string>
<string name="guide_eye_check">Verificati pozitia ochilor</string>
<string name="guide_wait_camera">Va rugam asteptati</string>
<string name="face_too_far">Prea departe</string>
<string name="face_too_close">Prea aproape</string>
<string name="face_fit">Incape</string>
<string name="face_none">Fara Fata</string>
<string name="face_too_dark">Prea intunecat</string>
<string name="face_too_shine">Prea luminat</string>
It would be nice if another Romanian speaker would take a look over the translation. Just to check!
Click to expand...
Click to collapse
You have some small mistakes :
1) Pentru a mentine o rata de recunoastere mare, incercati sa mentineti acelasi ungi si aceasi distanta fata de telefon.
Ungi=unghi
2) Incercati sa va pozitionati fata pe machetra
machetra=macheta
Genghiz93 said:
You have some small mistakes :
1) Pentru a mentine o rata de recunoastere mare, incercati sa mentineti acelasi ungi si aceasi distanta fata de telefon.
Ungi=unghi
2) Incercati sa va pozitionati fata pe machetra
machetra=macheta
Click to expand...
Click to collapse
if there any changes like these, please post the new full code.
otherwise it is a crappy work to take word for word in the values
[email protected] for help.
Portuguese (PT)
settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">[COLOR="Red"][B]Reconhecimento facial[/B][/COLOR]</string>
<string name="unlock_set_unlock_face_recognition_summary">[COLOR="Red"][B]Faça um primeiro reconhecimento facial para desbloquear as configurações[/B][/COLOR]</string>
<string name="facerecognition_change_lock_label">[COLOR="Red"][B]Estabelecer reconhecimento facial[/B][/COLOR]</string>
<string name="face_lock_intro_message"><font size="17">"[COLOR="Red"][B]Proteja o dispositivo de uso desautorizado ao estabelecer o reconhecimento facial.[/B][/COLOR]
"<font height="17">"
"</font><b>1.</b>"[COLOR="Red"][B] No próximo ecrã, guarde o seu padrão facial. Uma imagem mais frontal da sua cara irá aumentar a taxa de sucesso no reconhecimento facial.[/B][/COLOR]
"<font height="17">"
"</font><b>2.</b>"[COLOR="Red"] [B]Estabeleça um método de desbloqueio alternativo. [/B][/COLOR]
"<font height="17">"
"</font><b>[COLOR="Red"][B]Preparado para começar? Carregue em Seguinte[/B][/COLOR]</b>".
"<font height="3">"
"</font>[COLOR="Red"][B]Carregue em Cancelar para deixar o dispositivo desprotegido[/B][/COLOR]</font></string>
<string name="face_lock_finish_message"><font size="17">"[COLOR="Red"][B]Da próxima vez que desbloquear o dispositivo o reconhecimento facial irá iniciar.
Para manter a taxa de reconhecimento alta, tente manter o mesmo ângulo e distância da face ao telefone.[/B][/COLOR]"</font>" "</string>
<string name="face_alternative_Message">[COLOR="Red"][B]Estabeleça um método de desbloqueio alternativo diferente.[/B][/COLOR]</string>
<string name="done">[B][COLOR="Red"]Concluído[/COLOR][/B]</string>
facekey.apk
Code:
<string name="app_name2">[COLOR="Red"][B]Registar face[/B][/COLOR]</string>
<string name="register_title">[COLOR="Red"][B]Estabelecer reconhecimento facial[/B][/COLOR]</string>
<string name="button_cancel">[COLOR="Red"][B]Cancelar[/B][/COLOR]</string>
<string name="button_capture">[COLOR="Red"][B]Capturar[/B][/COLOR]</string>
<string name="button_recapture">[COLOR="Red"][B]Tentar novamente[/B][/COLOR]</string>
<string name="button_register">[COLOR="Red"][B]Estabelecer![/B][/COLOR]</string>
<string name="dialog_register_face">[COLOR="Red"][B]Registe a sua face[/B][/COLOR]</string>
<string name="title_recognition_success">[COLOR="Red"][B]Aprovado[/B][/COLOR]</string>
<string name="title_recognition_fail">[COLOR="Red"][B]Acesso declinado[/B][/COLOR]</string>
<string name="toast_register_face">[COLOR="Red"][B]Completo[/B][/COLOR]</string>
<string name="guide_face_silhouette">[COLOR="Red"][B]Tente manter a sua face dentro das linhas padrão[/B][/COLOR]</string>
<string name="guide_eye_check">[COLOR="Red"][B]Verifique a posição dos olhos[/B][/COLOR]</string>
<string name="guide_wait_camera">[COLOR="Red"][B]Por favor aguarde[/B][/COLOR]</string>
<string name="face_too_far">[COLOR="Red"][B]Demasiado distante[/B][/COLOR]</string>
<string name="face_too_close">[COLOR="Red"][B]Demasiado perto[/B][/COLOR]</string>
<string name="face_fit">[COLOR="Red"][B]Ajustar[/B][/COLOR]</string>
<string name="face_none">[COLOR="Red"][B]Nenhuma face[/B][/COLOR]</string>
<string name="face_too_dark">[COLOR="Red"][B]Demasiado escuro[/B][/COLOR]</string>
<string name="face_too_shine">[COLOR="Red"][B]Demasiado claro[/B][/COLOR]</string>
---------- Post added at 08:42 PM ---------- Previous post was at 08:38 PM ----------
1) Set alternative unlock method.
2) Set other unlock method for alternative unlock
Which is asking to set a different unlock method and which is recommending?
pedrsantiago said:
1) Set alternative unlock method.
2) Set other unlock method for alternative unlock
Which is asking to set a different unlock method and which is recommending?
Click to expand...
Click to collapse
the sceond one is asking for
#1 is an instruction
2# you have to set an alternative unlock method because face recognation is not 100% safe/ lagfree, if the app cant recognize your face you'll need an alternative method, like pin,pattern or password
Romanian - corrected version
Settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">Recunoasterea Fetei</string>
<string name="unlock_set_unlock_face_recognition_summary">Recunoaste fata pentru a debloca setarile</string>
<string name="facerecognition_change_lock_label">Seteaza recunoasterea fetei</string>
<string name="face_lock_intro_message"><font size="17">"Protejeaza-ti telefonul de la utilizari fara permisiunea dumneavoastra prin setarea recunoasterii fetei la deblocare.
"<font height="17">"
"</font><b>1.</b>" La ecranul urmator, salvati-va fata. O fotografie din fata va rezulta in sanse mai mari de recunoastere.
"<font height="17">"
"</font><b>2.</b>" Setati metoda alternativa de deblocare.
"<font height="17">"
"</font><b>Pregatiti? Apasati Next</b>".
"<font height="3">"
"</font>Apasati pe Cancel pentru a lasa aparatul neprotejat.</font></string>
<string name="face_lock_finish_message"><font size="17">"Acum, recunoasterea fetei va incepe cand ecranul este pornit.
Pentru a mentine o rata de recunoastere mare, incercati sa mentineti acelasi unghi si aceasi distanta fata de telefon."</font>" "</string>
<string name="face_alternative_Message">Setati o alta metoda de deblocare</string>
<string name="done">Terminat</string>
facekey.apk
Code:
<string name="app_name2">Recunoasterea Fetei</string>
<string name="register_title">Setati recunoasterea fetei</string>
<string name="button_cancel">Renunta</string>
<string name="button_capture">Captureaza</string>
<string name="button_recapture">Reincearca</string>
<string name="button_register">Inregistrare</string>
<string name="dialog_register_face">Inregistreaza fata</string>
<string name="title_recognition_success">Aprobat</string>
<string name="title_recognition_fail">Respins</string>
<string name="toast_register_face">Terminat</string>
<string name="guide_face_silhouette">Incercati sa va pozitionati fata pe macheta</string>
<string name="guide_eye_check">Verificati pozitia ochilor</string>
<string name="guide_wait_camera">Va rugam asteptati</string>
<string name="face_too_far">Prea departe</string>
<string name="face_too_close">Prea aproape</string>
<string name="face_fit">Incape</string>
<string name="face_none">Fara Fata</string>
<string name="face_too_dark">Prea intunecat</string>
<string name="face_too_shine">Prea luminat</string>
texten said:
the sceond one is asking for
#1 is an instruction
2# you have to set an alternative unlock method because face recognation is not 100% safe/ lagfree, if the app cant recognize your face you'll need an alternative method, like pin,pattern or password
Click to expand...
Click to collapse
Edited! Thanks for the clarification
private message from toniserna (because he cant post here)
Translations for face recognition Catalan & Spanish
Hi friend,
Thanks for your initiative of translating that part of the system. i also appreciate to have it in my own language.
As I live in Mallorca (Balearic Islands - Spain) I am almost fully bilingual (100% is thoeretically out of any human being's reach, experts say) in Spanish and Catalan. So I am glad to contribute with two translations.
I 'have reviewed them very carefully and I haven't done a literal translation, but I've been looking for a natural style.
I am not allowed to post at XDA-Developers, that is the reason that explains why I am sending you my pieces of work by PM. Could you please post them by me in your thread? This way other spanish and catalan speakers will be able to review (attribution is not needed but appreciated).
Just an extra comment: Catalan language shamely is not yet supported in any 2.3.6 Android, but supported in some apps like GO Explorer, Swiftkey X keyboard etc, if you could include this language at least in this piece of the system we would have made a little step forward.
Click to expand...
Click to collapse
and here the translation:
es_ES (Spanish settings.apk)
Code:
<string name="unlock_set_unlock_face_recognition_title">Reconocimiento facial</string>
<string name="unlock_set_unlock_face_recognition_summary">Reconoce el rostro para desbloquear los ajustes</string>
<string name="facerecognition_change_lock_label">Establece el reconocimiento facial</string>
<string name="face_lock_intro_message"><font size="17">"Proteje tu dispositivo del uso no autorizado activando el reconocimento facial.
"<font height="17">"
"</font><b>1.</b>" En la pantalla siguiente, registra tu imagen en el dispositivo. Una imagen frontal del rostro permite un reconocimiento más preciso.
"<font height="17">"
"</font><b>2.</b>" Establece un método de desbloqueo alternativo.
"<font height="17">"
"</font><b>¿Listo para empezar? Pulsa Siguiente</b>".
"<font height="3">"
"</font>Pulsa Cancelar para dejar el dispositivo sin protección</font></string>
<string name="face_lock_finish_message"><font size="17">"Ahora se solicitará reconocimiento facial en cada activación de la pantalla.
Para conseguir un buen nivel de reconocimiento, intenta mantener el teléfono en el mismo ángulo y a la misma distancia."</font>" "</string>
<string name="face_alternative_Message">Establece un método alternativo de desbloqueo</string>
<string name="done">Listo</string>
es_ES (Spanish facekey.apk)
Code:
<string name="app_name2">Reconocimiento Facial</string>
<string name="register_title">Establece el reconocimiento facial</string>
<string name="button_cancel">Cancela</string>
<string name="button_capture">Captura</string>
<string name="button_recapture">Reintenta</string>
<string name="button_register">Registra</string>
<string name="dialog_register_face">Registra tu rostro</string>
<string name="title_recognition_success">Acceso autorizado</string>
<string name="title_recognition_fail">Acceso denegado</string>
<string name="toast_register_face">Completado</string>
<string name="guide_face_silhouette">Intenta encajar tu cara en el óvalo de referencia</string>
<string name="guide_eye_check">Verifica la posición de los ojos</string>
<string name="guide_wait_camera">Espera por favor</string>
<string name="face_too_far">Demasiado lejos</string>
<string name="face_too_close">Demasiado cerca</string>
<string name="face_fit">Ajustado</string>
<string name="face_none">Rostro no detectado</string>
<string name="face_too_dark">Demasiado oscuro</string>
<string name="face_too_shine">Demasiada luz</string>
--------------------------------------
think if there is no catalan language support on the whole system, i cant include them for facekey. am i right? but here the translations:
ca_ES (Catalan settings.apk)
Code:
<string name="unlock_set_unlock_face_recognition_title">Reconeixement facial</string>
<string name="unlock_set_unlock_face_recognition_summary">Reconeix el rostre per a desbloquejar els ajustaments</string>
<string name="facerecognition_change_lock_label">Estableix el reconeixement facial</string>
<string name="face_lock_intro_message"><font size="17">"Protegeix el teu dispositiu de l'ús no autoritzat activant el reconeixement facial.
"<font height="17">"
"</font><b>1.</b>" A la pantalla següent, enregistra la teva imatge al dispositiu. Una imatge frontal del rostre permet un reconeixement més precís.
"<font height="17">"
"</font><b>2.</b>" Estableix un mètode de desbloqueig alternatiu.
"<font height="17">"
"</font><b>A punt per començar? Prem Següent</b>".
"<font height="3">"
"</font>Prem Cancel·lar per deixar el dispositiu sense protecció</font></string>
<string name="face_lock_finish_message"><font size="17">"Ara es sol·licitarà reconeixement facial cada vegada que s'activi la pantalla.
Per aconseguir un bon nivell de reconeixement, intenta mantenir el telèfon en el mateix angle i a la mateixa distància."</font>" "</string>
<string name="face_alternative_Message">Estableix un mètode alternatiu de desbloqueig</string>
<string name="done">Llest</string>
ca_ES (Catalan facekey.apk)
Code:
<string name="app_name2">Reconeixement Facial</string>
<string name="register_title">Estableix el reconeixement facial</string>
<string name="button_cancel">Cancel·la</string>
<string name="button_capture">Captura</string>
<string name="button_recapture">Reintenta</string>
<string name="button_register">Enregistra</string>
<string name="dialog_register_face">Enregistra la teva imatge</string>
<string name="title_recognition_success">Accés autoritzat</string>
<string name="title_recognition_fail">Accés denegat</string>
<string name="toast_register_face">Finalitzat</string>
<string name="guide_face_silhouette">Intenta encaixar el rostre dins l'oval de referència</string>
<string name="guide_eye_check">Verifica la posició dels ulls</string>
<string name="guide_wait_camera">Espera per favor</string>
<string name="face_too_far">Massa lluny</string>
<string name="face_too_close">Massa aprop</string>
<string name="face_fit">Ajustat</string>
<string name="face_none">Rostre no detectat</string>
<string name="face_too_dark">Massa fosc</string>
<string name="face_too_shine">Massa llum</string>
thanks to toniserna
This is PT-BR (Brazilian portuguese) translation
I know it's not supported on kqb, but it could be useful for ics (cm9) wich has support for my language
in settings.apk
Code:
<string name="unlock_set_unlock_face_recognition_title">[COLOR="Red"][B]Reconhecimento facial[/B][/COLOR]</string>
<string name="unlock_set_unlock_face_recognition_summary">[COLOR="Red"][B]Configurações de reconhecimento de face para desbloquear a tela[/B][/COLOR]</string>
<string name="facerecognition_change_lock_label">[COLOR="Red"][B]Configurar reconhecimento facial[/B][/COLOR]</string>
<string name="face_lock_intro_message"><font size="17">"[COLOR="Red"][B]Protege o dispositivo de uso indevido usando reconhecimento facial para bloquear o dispositivo[/B][/COLOR]
"<font height="17">"
"</font><b>1.</b>"[COLOR="Red"][B] Na próxima tela, salve o seu rosto no seu dispositivo. Uma imagem frontal, vai otimizar a taxa de reconhecimento.[/B][/COLOR]
"<font height="17">"
"</font><b>2.</b>"[COLOR="Red"] [B]Configurar método de desbloqueio alternativo.[/B][/COLOR]
"<font height="17">"
"</font><b>[COLOR="Red"][B]Pronto para começar? Toque em próximo.[/B][/COLOR]</b>".
"<font height="3">"
"</font>[COLOR="Red"][B]Toque no cancelar para deixar seu dispositivo desprotegido.[/B][/COLOR]</font></string>
<string name="face_lock_finish_message"><font size="17">"[COLOR="Red"][B]Agora, o reconhecimento facial vai começar toda vez que a tela for ligada. Para fazer com que a taxa de reconhecimento seja alta, tente manter o mesmo angulo e distancia do telefone.[/B][/COLOR]"</font>" "</string>
<string name="face_alternative_Message">[COLOR="Red"][B]Configure um outro método alternativo de desbloqueio.[/B][/COLOR]</string>
<string name="done">[B][COLOR="Red"]Done[/COLOR][/B]</string>
in facekey.apk
Code:
<string name="app_name2">[COLOR="Red"][B]Registro facial[/B][/COLOR]</string>
<string name="register_title">[COLOR="Red"][B]Configurar reconhecimento facial.[/B][/COLOR]</string>
<string name="button_cancel">[COLOR="Red"][B]Cancelar[/B][/COLOR]</string>
<string name="button_capture">[COLOR="Red"][B]Capturar[/B][/COLOR]</string>
<string name="button_recapture">[COLOR="Red"][B]Tentar novamente[/B][/COLOR]</string>
<string name="button_register">[COLOR="Red"][B]Enroll[/B][/COLOR]</string>
<string name="dialog_register_face">[COLOR="Red"][B]Registre seu rosto[/B][/COLOR]</string>
<string name="title_recognition_success">[COLOR="Red"][B]Aprovado[/B][/COLOR]</string>
<string name="title_recognition_fail">[COLOR="Red"][B]Negado[/B][/COLOR]</string>
<string name="toast_register_face">[COLOR="Red"][B]Completado[/B][/COLOR]</string>
<string name="guide_face_silhouette">[COLOR="Red"][B]Tente posicionar seu rosto dento das marcas guia[/B][/COLOR]</string>
<string name="guide_eye_check">[COLOR="Red"][B]Verifique a posição de seus olhos[/B][/COLOR]</string>
<string name="guide_wait_camera">[COLOR="Red"][B]Por favor aguarde[/B][/COLOR]</string>
<string name="face_too_far">[COLOR="Red"][B]Muito distante[/B][/COLOR]</string>
<string name="face_too_close">[COLOR="Red"][B]Muito perto[/B][/COLOR]</string>
<string name="face_fit">[COLOR="Red"][B]Encaixe normal[/B][/COLOR]</string>
<string name="face_none">[COLOR="Red"][B]Sem rosto[/B][/COLOR]</string>
<string name="face_too_dark">[COLOR="Red"][B]Muito escuro[/B][/COLOR]</string>
<string name="face_too_shine">[COLOR="Red"][B]Muito claro[/B][/COLOR]</string>
is it possible to translate to mandrin? i can do it if its possible.
---------- Post added 4th May 2012 at 12:29 AM ---------- Previous post was 3rd May 2012 at 11:53 PM ----------
CS-Cn (simplified chinese-China)
Code:
<string name="unlock_set_unlock_face_recognition_title">认脸设施</string>
<string name="unlock_set_unlock_face_recognition_summary">认脸解锁设置</string>
<string name="facerecognition_change_lock_label">调节认脸设施</string>
<string name="face_lock_intro_message"><font size="17">"用认脸设施保管电话
"<font height="17">"
"</font><b>1.</b>"在下一页保存个人照片。拍前脸的照可提高认脸设施的效率。
"<font height="17">"
"</font><b>2.</b>" 设定第二解锁设施
"<font height="17">"
"</font><b>准备好了吗?请按next</b>".
"<font height="3">"
"</font>请按cancel来取消</font></string>
<string name="face_lock_finish_message"><font size="17">"现在认脸设施会在荧幕开动时开始。为了提高认脸设施的效率,认脸是请在脸和手机保持一样的距离和角度。
"</font>" "</string>
<string name="face_alternative_Message">设定不同的第二解锁设施</string>
<string name="done">完成了</string>
this is for settings.apk
Code:
<string name="app_name2">注册脸型</string>
<string name="register_title">调理认脸设施</string>
<string name="button_cancel">取消</string>
<string name="button_capture">拍像</string>
<string name="button_recapture">再来一次</string>
<string name="button_register">录取</string>
<string name="dialog_register_face">注册脸型</string>
<string name="title_recognition_success">成功注册</string>
<string name="title_recognition_fail">注册失败</string>
<string name="toast_register_face">注册完成</string>
<string name="guide_face_silhouette">清切合脸型和荧幕的形状</string>
<string name="guide_eye_check">检查着眼睛的位置</string>
<string name="guide_wait_camera">请稍等一下</string>
<string name="face_too_far">太远了</string>
<string name="face_too_close">太近了</string>
<string name="face_fit">适合了</string>
<string name="face_none">没有察觉到脸型</string>
<string name="face_too_dark">太暗了k</string>
<string name="face_too_shine">太亮了</string>
This one is for facekey.apk.
any mandarin speaking ppl can help me correct, didnt write mandarin for quite some time.
jacktay94 said:
is it possible to translate to mandrin? i can do it if its possible.
Click to expand...
Click to collapse
if the whole rom supports the language, face recognation will do it, too

[Q] Apache ActiveMQ on Android

hi,
I am want send message from my android to ActiveMQ broker. But i get message this:
05-20 14:27:41.697: E/AndroidRuntime(1802): java.lang.NoClassDefFoundError: org.apache.activemq.ActiveMQConnectionFactory
05-20 14:27:41.697: E/AndroidRuntime(1802): at com.example.activemqlib.TextMsg.<init>(TextMsg.java:31)
05-20 14:27:41.697: E/AndroidRuntime(1802): at com.example.activemqlib.MainActivity$1.onClick(MainActivity.java:30)
05-20 14:27:41.697: E/AndroidRuntime(1802): at android.view.View.performClick(View.java:3511)
05-20 14:27:41.697: E/AndroidRuntime(1802): at android.view.View$PerformClick.run(View.java:14109)
05-20 14:27:41.697: E/AndroidRuntime(1802): at android.os.Handler.handleCallback(Handler.java:605)
05-20 14:27:41.697: E/AndroidRuntime(1802): at android.os.Handler.dispatchMessage(Handler.java:92)
05-20 14:27:41.697: E/AndroidRuntime(1802): at android.os.Looper.loop(Looper.java:137)
05-20 14:27:41.697: E/AndroidRuntime(1802): at android.app.ActivityThread.main(ActivityThread.java:4424)
05-20 14:27:41.697: E/AndroidRuntime(1802): at java.lang.reflect.Method.invokeNative(Native Method)
05-20 14:27:41.697: E/AndroidRuntime(1802): at java.lang.reflect.Method.invoke(Method.java:511)
05-20 14:27:41.697: E/AndroidRuntime(1802): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
05-20 14:27:41.697: E/AndroidRuntime(1802): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
05-20 14:27:41.697: E/AndroidRuntime(1802): at dalvik.system.NativeStart.main(Native Method)
Any body help me?
Program in the attachment.
I has testing TextMsg.java in pc, and work.

[DISCONTINUED][GUIDE]Moving Clock to Centre of Statusbar[CM10/10.1]

Centering Clock on CM10.1 Statusbar​
Steps:
1.Decompile the SystemUI.apk
2.Go to res\layout\status_bar.xml
3.Now delete everything in there and copy this
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.PhoneStatusBarView android:id="@id/status_bar" android:background="@drawable/status_bar_background" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<ImageView android:id="@id/notification_lights_out" android:paddingLeft="6.0dip" android:paddingBottom="2.0dip" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lights_out_dot_large" android:scaleType="center" />
<LinearLayout android:orientation="horizontal" android:id="@id/status_bar_contents" android:paddingLeft="6.0dip" android:paddingRight="6.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent">
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<LinearLayout android:orientation="horizontal" android:id="@id/notification_icon_area" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0">
<com.android.systemui.statusbar.StatusBarIconView android:id="@id/moreIcon" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/stat_notify_image_error" />
<com.android.systemui.statusbar.phone.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentLeft="true" />
</LinearLayout>
</LinearLayout>
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:gravity="center" android:id="@id/clock" android:paddingLeft="6.0dip" android:clickable="false" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<LinearLayout android:gravity="right" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/system_icon_area" android:layout_width="wrap_content" android:layout_height="fill_parent" />
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:layout_width="wrap_content" android:layout_height="fill_parent" />
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/signal_battery_cluster" android:paddingLeft="2.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent">
<include android:id="@id/signal_cluster" android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/signal_cluster_view" />
<include android:id="@id/signal_cluster_text" android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/signal_cluster_text_view" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.Battery" android:gravity="left|center" android:id="@id/dock_battery_text" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="-3.0dip" android:singleLine="true" />
<ImageView android:id="@id/dock_battery" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.Battery" android:gravity="left|center" android:id="@id/battery_text" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="-3.0dip" android:singleLine="true" />
<ImageView android:id="@id/battery" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<com.android.systemui.statusbar.policy.CircleBattery android:textAppearance="@style/TextAppearance.StatusBar.Battery" android:gravity="bottom" android:id="@id/circle_battery" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:paddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageSwitcher android:id="@id/tickerIcon" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:layout_marginRight="4.0dip">
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:scaleType="center" />
<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:scaleType="center" />
</ImageSwitcher>
<com.android.systemui.statusbar.phone.TickerView android:id="@id/tickerText" android:paddingTop="2.0dip" android:paddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
</com.android.systemui.statusbar.phone.TickerView>
</LinearLayout>
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
4.Save and exit
5.Now go to res\layout\status_bar_expanded_header.xml
6.Replace the 2nd line with this
Code:
<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/header" android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="@dimen/notification_panel_header_height" android:baselineAligned="false"
7.Recompile the apk
8.Push to system/app folder and reboot after giving necessary permissions!!
9.Done!!
Credits:
-Adi Aisiteru Reborn
-xda
-google
nice tutor..good job bro..

Unlink Ringer and Notification Sound (4.2.2)

For separated volume follow this steps
In file SettingsProvider.apk
SettingsProvider.apk/res/values/bools.xml
change
<bool name="def_notifications_use_ring_volume">true</bool>
to
<bool name="def_notifications_use_ring_volume">false</bool>
Rebuild SettingsProvider.apk
In file Settings.apk
Settings.apk/smali/com/android/settings//RingerVolume.smali
in method
.method protected onBindDialogView(Landroid/view/ViewV
delete all
Landroid/view/View;->setVisibility(I)V
Rebuild Settings.apk
In file framework.jar
framework.jar/smali/android/media/AudioService.smali
Change
.line 270
:array_a
.array-data 0x4
0x0t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x4t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x6t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
.end array-data
to
.line 270
:array_a
.array-data 0x4
0x0t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x4t 0x0t 0x0t 0x0t
0x5t 0x0t 0x0t 0x0t
0x6t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
.end array-data
Rebuild framework.jar
After all you have a working separate sound for ringer and notification. Its work with AudioManagerPro or the same programs only.
In Sense it doesnt work because all icons for that menu are located in framework-hts-res.apk but i cant rebuilt it.
rollon76 said:
For separated volume follow this steps
In file SettingsProvider.apk
SettingsProvider.apk/res/values/bools.xml
change
<bool name="def_notifications_use_ring_volume">true</bool>
to
<bool name="def_notifications_use_ring_volume">false</bool>
Rebuild SettingsProvider.apk
In file Settings.apk
Settings.apk/smali/com/android/settings//RingerVolume.smali
in method
.method protected onBindDialogView(Landroid/view/ViewV
delete all
Landroid/view/View;->setVisibility(I)V
Rebuild Settings.apk
In file framework.jar
framework.jar/smali/android/media/AudioService.smali
Change
.line 270
:array_a
.array-data 0x4
0x0t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x4t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x6t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
.end array-data
to
.line 270
:array_a
.array-data 0x4
0x0t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x4t 0x0t 0x0t 0x0t
0x5t 0x0t 0x0t 0x0t
0x6t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x2t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
0x3t 0x0t 0x0t 0x0t
.end array-data
Rebuild framework.jar
After all you have a working separate sound for ringer and notification. Its work with AudioManagerPro or the same programs only.
In Sense it doesnt work because all icons for that menu are located in framework-hts-res.apk but i cant rebuilt it.
Click to expand...
Click to collapse
Nice Tutorial, but if I try to decompile Settings.apk there's no smali-folder.
Can anybody upload the patched files?

[APP][4.1+] Musicat v 0.90 - Alternative Music Player

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Musicat is another material design music player. App is free and will be free for the rest of my life.
See http://multivoltage.github.io/Musicat/index.html for the code. And if you want you can help me to develop app.
LANGUAGES
English
Italiano (io sono italiano)
FEAUTURES
Floating bubble to play/pause and skip song with gesture
Find correct album image with a simple web search and edit track' image
Play next song with a shake of the phone
Customize theme and 2 color to find the best combo design
Automatic pause with incoming call
Music web server support. Connect to wifi and all devices in the same wifi network can listen your tracks by a simple web page (phone pc or other devices)
ABOUT COVER
The list load image from mediastore for a fast load. But image cover of notice and other parts of app will show the real cover. This does not appen in similar app. I tested app in 5 devices. Some of these after a web search saved new image into track and with the reboot of app or phone, listview show the new image. Other device show new image only in other part of the app and not in the list.
ABOUT BUG
There are some bugs. I know. I hope di find all and solve you your help.
ABOUT PLAY STORE
My app is free. I use image of icon8 site. The icon can be used also for commercial use. I don' t know because PlayStore rejects my app. And I don't want to upload other version. I read in some blog that uploading other version with policy problems maybe cause account ban.
PERMISSION
Code:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
internet for cover search
acces network state for the same reason
read/write storage to write image of covers
system alter for the floating bubble (disable in setting section)
wifi state for server
other permission for incoming calls and for correct work
LINK APK -> https://drive.google.com/file/d/0B_LPQTuA6sTUdllwQmpvT3l0ZkU/view?usp=sharing
SCREENSHOT
Ciao, io ho un note 3 neo con rom stock non rootata kk4.4.2 e volevo provarla. Purtroppo però crasha appena provo ad aprirla. Peccato, sembra interessante il tuo lavoro.
(Hi, i've a N3N with stock rom kk4.4.2 with no root. I want to try it, but it crashed when I try to open it. Your job look interesting)
« Ma io sono già morto, e anche quella volta era una donna. »
( Spike Spiegel )
YnGWiE27 said:
Ciao, io ho un note 3 neo con rom stock non rootata kk4.4.2 e volevo provarla. Purtroppo però crasha appena provo ad aprirla. Peccato, sembra interessante il tuo lavoro.
« Ma io sono già morto, e anche quella volta era una donna. »
( Spike Spiegel )
Click to expand...
Click to collapse
I haven' t got a note 3. Give me some time to emulate it with the same version of android. Google analitycs does not return any crash.
Ok, allora attendo sviluppi. Intanto ti ringrazio!
(ok, i'm waiting for news. Thanks!)
« Ma io sono già morto, e anche quella volta era una donna. »
( Spike Spiegel )
YnGWiE27 said:
Ciao, io ho un note 3 neo con rom stock non rootata kk4.4.2 e volevo provarla. Purtroppo però crasha appena provo ad aprirla. Peccato, sembra interessante il tuo lavoro.
« Ma io sono già morto, e anche quella volta era una donna. »
( Spike Spiegel )
Click to expand...
Click to collapse
tonno16 said:
Non ho un note tre, tempo di scaricare un emulatore con la stessa rom (banda permettendo e provo). Google analitycs non mi riporta alcun crash
Click to expand...
Click to collapse
YnGWiE27 said:
Ok, allora attendo sviluppi. Intanto ti ringrazio!
« Ma io sono già morto, e anche quella volta era una donna. »
( Spike Spiegel )
Click to expand...
Click to collapse
Guys, English language, please. At least add a translation to your posts.
Added 0.91.
Now bubble allows to play/pause with up gesture, next track with right gesture and prev track with bottom gesture.

Categories

Resources