Cześć,
Gorąca prośba o pomoc. Robię plik z tłumaczeniami strings.xml

Dostaję taki błąd:

AAPT: error: resource string/write_txt (aka com.example.lab33:string/write_txt) not found.

plik values-pl/strings.xml

<resources>
    <string name="write_txt">Wybierz przycisk</string>
</resources>

plik values-en/strings.xml

<resources>
    <string name="write_txt">Writte something</string>
</resources>

Plik, z którym jest problem wygląda tak: (wskazuje, że w 7 linijce coś jest nie tak..Ale kompletnie nie wiem o co może chodzić..

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical" >

    <TextView
            android:id="@+id/detailsText"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="center"
            android:layout_marginTop="20dip"
            android:text="@string/write_txt"

    />

</LinearLayout>