added missing strings back. + formating
This commit is contained in:
		
							parent
							
								
									dee46f3453
								
							
						
					
					
						commit
						12b62adeca
					
				| @ -1,19 +1,21 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|  | 
 | ||||||
|     <!-- Non focused states --> |     <!-- Non focused states --> | ||||||
|     <item android:state_focused="false" android:state_selected="false" android:state_pressed="false" android:drawable="@android:color/transparent" /> |     <item android:drawable="@android:color/transparent" android:state_focused="false" android:state_pressed="false" android:state_selected="false"/> | ||||||
|     <item android:state_focused="false" android:state_selected="true"  android:state_pressed="false" android:drawable="@drawable/tab_selected_conversations" /> |     <item android:drawable="@drawable/tab_selected_conversations" android:state_focused="false" android:state_pressed="false" android:state_selected="true"/> | ||||||
| 
 | 
 | ||||||
|     <!-- Focused states --> |     <!-- Focused states --> | ||||||
|     <item android:state_focused="true" android:state_selected="false" android:state_pressed="false" android:drawable="@drawable/tab_unselected_focused_conversations" /> |     <item android:drawable="@drawable/tab_unselected_focused_conversations" android:state_focused="true" android:state_pressed="false" android:state_selected="false"/> | ||||||
|     <item android:state_focused="true" android:state_selected="true"  android:state_pressed="false" android:drawable="@drawable/tab_selected_focused_conversations" /> |     <item android:drawable="@drawable/tab_selected_focused_conversations" android:state_focused="true" android:state_pressed="false" android:state_selected="true"/> | ||||||
| 
 | 
 | ||||||
|     <!-- Pressed --> |     <!-- Pressed --> | ||||||
|     <!-- Non focused states --> |     <!-- Non focused states --> | ||||||
|     <item android:state_focused="false" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/tab_unselected_pressed_conversations" /> |     <item android:drawable="@drawable/tab_unselected_pressed_conversations" android:state_focused="false" android:state_pressed="true" android:state_selected="false"/> | ||||||
|     <item android:state_focused="false" android:state_selected="true"  android:state_pressed="true" android:drawable="@drawable/tab_selected_pressed_conversations" /> |     <item android:drawable="@drawable/tab_selected_pressed_conversations" android:state_focused="false" android:state_pressed="true" android:state_selected="true"/> | ||||||
| 
 | 
 | ||||||
|     <!-- Focused states --> |     <!-- Focused states --> | ||||||
|     <item android:state_focused="true" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/tab_unselected_pressed_conversations" /> |     <item android:drawable="@drawable/tab_unselected_pressed_conversations" android:state_focused="true" android:state_pressed="true" android:state_selected="false"/> | ||||||
|     <item android:state_focused="true" android:state_selected="true"  android:state_pressed="true" android:drawable="@drawable/tab_selected_pressed_conversations" /> |     <item android:drawable="@drawable/tab_selected_pressed_conversations" android:state_focused="true" android:state_pressed="true" android:state_selected="true"/> | ||||||
|     </selector> | 
 | ||||||
|  | </selector> | ||||||
| @ -1,7 +1,12 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <shape xmlns:android="http://schemas.android.com/apk/res/android" > | <shape xmlns:android="http://schemas.android.com/apk/res/android" > | ||||||
| <gradient | 
 | ||||||
|  |     <gradient | ||||||
|         android:endColor="@color/divider" |         android:endColor="@color/divider" | ||||||
|         android:startColor="@android:color/transparent" /> |         android:startColor="@android:color/transparent" /> | ||||||
| <size android:width="3.0dp" android:height="0.5dp" /> | 
 | ||||||
|  |     <size | ||||||
|  |         android:height="0.5dp" | ||||||
|  |         android:width="3.0dp" /> | ||||||
|  | 
 | ||||||
| </shape> | </shape> | ||||||
| @ -1,5 +1,7 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <shape xmlns:android="http://schemas.android.com/apk/res/android" | <shape xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|     android:shape="rectangle"> |     android:shape="rectangle" > | ||||||
|  | 
 | ||||||
|     <solid android:color="#ffdddddd" /> |     <solid android:color="#ffdddddd" /> | ||||||
|  | 
 | ||||||
| </shape> | </shape> | ||||||
| @ -1,6 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <selector xmlns:android="http://schemas.android.com/apk/res/android" > | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||||||
|     <item | 
 | ||||||
|         android:state_pressed="true" |     <item android:drawable="@drawable/grey" android:state_pressed="true"/> | ||||||
|         android:drawable="@drawable/grey" /> | 
 | ||||||
| </selector> | </selector> | ||||||
| @ -1,6 +1,15 @@ | |||||||
| <?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||||||
|   <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> | <shape xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|   <corners android:radius="2dp"/> |     android:shape="rectangle" > | ||||||
|   <padding android:left="1.5dp" android:right="1.5dp" android:top="1.5dp" android:bottom="1.5dp"/> | 
 | ||||||
|   <solid android:color="@color/divider"/> |     <corners android:radius="2dp" /> | ||||||
|  | 
 | ||||||
|  |     <padding | ||||||
|  |         android:bottom="1.5dp" | ||||||
|  |         android:left="1.5dp" | ||||||
|  |         android:right="1.5dp" | ||||||
|  |         android:top="1.5dp" /> | ||||||
|  | 
 | ||||||
|  |     <solid android:color="@color/divider" /> | ||||||
|  | 
 | ||||||
| </shape> | </shape> | ||||||
| @ -7,4 +7,5 @@ | |||||||
|         android:width="2000dp" /> |         android:width="2000dp" /> | ||||||
| 
 | 
 | ||||||
|     <solid android:color="@color/divider" /> |     <solid android:color="@color/divider" /> | ||||||
|  | 
 | ||||||
| </shape> | </shape> | ||||||
| @ -1,6 +1,14 @@ | |||||||
| <?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||||||
| <shape xmlns:android="http://schemas.android.com/apk/res/android"> | <shape xmlns:android="http://schemas.android.com/apk/res/android" > | ||||||
|     <solid android:color="@color/darkbackground"/> | 
 | ||||||
|     <corners android:radius="8dip"/> |     <solid android:color="@color/darkbackground" /> | ||||||
|     <padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" /> | 
 | ||||||
|  |     <corners android:radius="8dip" /> | ||||||
|  | 
 | ||||||
|  |     <padding | ||||||
|  |         android:bottom="0dip" | ||||||
|  |         android:left="0dip" | ||||||
|  |         android:right="0dip" | ||||||
|  |         android:top="0dip" /> | ||||||
|  | 
 | ||||||
| </shape> | </shape> | ||||||
| @ -1,30 +1,30 @@ | |||||||
| <android.support.v4.widget.SlidingPaneLayout | <android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         xmlns:android="http://schemas.android.com/apk/res/android" |     android:id="@+id/slidingpanelayout" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|         android:layout_height="match_parent" |     android:layout_height="match_parent" > | ||||||
|         android:id="@+id/slidingpanelayout"> | 
 | ||||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |     <LinearLayout | ||||||
|  |         xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         android:layout_width="324dp" |         android:layout_width="324dp" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |  | ||||||
|         android:background="@color/primarybackground" |         android:background="@color/primarybackground" | ||||||
|     > |         android:orientation="vertical" > | ||||||
| 
 | 
 | ||||||
|         <ListView |         <ListView | ||||||
|             android:id="@+id/list" |             android:id="@+id/list" | ||||||
|             android:layout_width="fill_parent" |             android:layout_width="fill_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|         android:divider="@color/divider" |  | ||||||
|         android:dividerHeight="1dp" |  | ||||||
|             android:background="@color/primarybackground" |             android:background="@color/primarybackground" | ||||||
|      /> |             android:divider="@color/divider" | ||||||
|  |             android:dividerHeight="1dp" /> | ||||||
|  |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> |     <LinearLayout | ||||||
| <LinearLayout  |  | ||||||
|         android:id="@+id/selected_conversation" |         android:id="@+id/selected_conversation" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|         android:layout_weight="1" |         android:layout_weight="1" | ||||||
| 	android:orientation="vertical"> |         android:orientation="vertical" > | ||||||
| </LinearLayout>       |     </LinearLayout> | ||||||
|  | 
 | ||||||
| </android.support.v4.widget.SlidingPaneLayout> | </android.support.v4.widget.SlidingPaneLayout> | ||||||
| @ -1,30 +1,30 @@ | |||||||
| <android.support.v4.widget.SlidingPaneLayout | <android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         xmlns:android="http://schemas.android.com/apk/res/android" |     android:id="@+id/slidingpanelayout" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|         android:layout_height="match_parent" |     android:layout_height="match_parent" > | ||||||
|         android:id="@+id/slidingpanelayout"> | 
 | ||||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |     <LinearLayout | ||||||
|  |         xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         android:layout_width="345dp" |         android:layout_width="345dp" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |  | ||||||
|         android:background="@color/primarybackground" |         android:background="@color/primarybackground" | ||||||
|     > |         android:orientation="vertical" > | ||||||
| 
 | 
 | ||||||
|         <ListView |         <ListView | ||||||
|             android:id="@+id/list" |             android:id="@+id/list" | ||||||
|             android:layout_width="fill_parent" |             android:layout_width="fill_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|         android:divider="@color/divider" |  | ||||||
|         android:dividerHeight="1dp" |  | ||||||
|             android:background="@color/primarybackground" |             android:background="@color/primarybackground" | ||||||
|      /> |             android:divider="@color/divider" | ||||||
|  |             android:dividerHeight="1dp" /> | ||||||
|  |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> |     <LinearLayout | ||||||
| <LinearLayout  |  | ||||||
|         android:id="@+id/selected_conversation" |         android:id="@+id/selected_conversation" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|         android:layout_weight="1" |         android:layout_weight="1" | ||||||
| 	android:orientation="vertical"> |         android:orientation="vertical" > | ||||||
| </LinearLayout>       |     </LinearLayout> | ||||||
|  | 
 | ||||||
| </android.support.v4.widget.SlidingPaneLayout> | </android.support.v4.widget.SlidingPaneLayout> | ||||||
| @ -1,30 +1,30 @@ | |||||||
| <android.support.v4.widget.SlidingPaneLayout | <android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         xmlns:android="http://schemas.android.com/apk/res/android" |     android:id="@+id/slidingpanelayout" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|         android:layout_height="match_parent" |     android:layout_height="match_parent" > | ||||||
|         android:id="@+id/slidingpanelayout"> | 
 | ||||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |     <LinearLayout | ||||||
|  |         xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         android:layout_width="240dp" |         android:layout_width="240dp" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |  | ||||||
|         android:background="@color/primarybackground" |         android:background="@color/primarybackground" | ||||||
|     > |         android:orientation="vertical" > | ||||||
| 
 | 
 | ||||||
|         <ListView |         <ListView | ||||||
|             android:id="@+id/list" |             android:id="@+id/list" | ||||||
|             android:layout_width="fill_parent" |             android:layout_width="fill_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|         android:divider="@color/divider" |  | ||||||
|         android:dividerHeight="1dp" |  | ||||||
|             android:background="@color/primarybackground" |             android:background="@color/primarybackground" | ||||||
|      /> |             android:divider="@color/divider" | ||||||
|  |             android:dividerHeight="1dp" /> | ||||||
|  |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> |     <LinearLayout | ||||||
| <LinearLayout  |  | ||||||
|         android:id="@+id/selected_conversation" |         android:id="@+id/selected_conversation" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|         android:layout_weight="1" |         android:layout_weight="1" | ||||||
| 	android:orientation="vertical"> |         android:orientation="vertical" > | ||||||
| </LinearLayout>       |     </LinearLayout> | ||||||
|  | 
 | ||||||
| </android.support.v4.widget.SlidingPaneLayout> | </android.support.v4.widget.SlidingPaneLayout> | ||||||
| @ -1,30 +1,30 @@ | |||||||
| <android.support.v4.widget.SlidingPaneLayout | <android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         xmlns:android="http://schemas.android.com/apk/res/android" |     android:id="@+id/slidingpanelayout" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|         android:layout_height="match_parent" |     android:layout_height="match_parent" > | ||||||
|         android:id="@+id/slidingpanelayout"> | 
 | ||||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |     <LinearLayout | ||||||
|  |         xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         android:layout_width="288dp" |         android:layout_width="288dp" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |  | ||||||
|         android:background="@color/primarybackground" |         android:background="@color/primarybackground" | ||||||
|     > |         android:orientation="vertical" > | ||||||
| 
 | 
 | ||||||
|         <ListView |         <ListView | ||||||
|             android:id="@+id/list" |             android:id="@+id/list" | ||||||
|             android:layout_width="fill_parent" |             android:layout_width="fill_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|         android:divider="@color/divider" |  | ||||||
|         android:dividerHeight="1dp" |  | ||||||
|             android:background="@color/primarybackground" |             android:background="@color/primarybackground" | ||||||
|      /> |             android:divider="@color/divider" | ||||||
|  |             android:dividerHeight="1dp" /> | ||||||
|  |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> |     <LinearLayout | ||||||
| <LinearLayout  |  | ||||||
|         android:id="@+id/selected_conversation" |         android:id="@+id/selected_conversation" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|         android:layout_weight="1" |         android:layout_weight="1" | ||||||
| 	android:orientation="vertical"> |         android:orientation="vertical" > | ||||||
| </LinearLayout>       |     </LinearLayout> | ||||||
|  | 
 | ||||||
| </android.support.v4.widget.SlidingPaneLayout> | </android.support.v4.widget.SlidingPaneLayout> | ||||||
| @ -16,8 +16,8 @@ | |||||||
|     <LinearLayout |     <LinearLayout | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:layout_toRightOf="@+id/account_image" |  | ||||||
|         android:layout_centerVertical="true" |         android:layout_centerVertical="true" | ||||||
|  |         android:layout_toRightOf="@+id/account_image" | ||||||
|         android:orientation="vertical" |         android:orientation="vertical" | ||||||
|         android:paddingLeft="8dp" > |         android:paddingLeft="8dp" > | ||||||
| 
 | 
 | ||||||
| @ -35,9 +35,9 @@ | |||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:text="@string/account_status_unknown" |             android:text="@string/account_status_unknown" | ||||||
|             android:textSize="?attr/TextSizeBody" |  | ||||||
|             android:textColor="@color/secondarytext" |             android:textColor="@color/secondarytext" | ||||||
|             android:textStyle="bold"/> |             android:textSize="?attr/TextSizeBody" | ||||||
|  |             android:textStyle="bold" /> | ||||||
|     </LinearLayout> |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </RelativeLayout> | </RelativeLayout> | ||||||
| @ -14,6 +14,6 @@ | |||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:focusable="true" |         android:focusable="true" | ||||||
|         android:inputType="textEmailAddress|textNoSuggestions" |         android:inputType="textEmailAddress|textNoSuggestions" | ||||||
|         android:textColor="@color/ondarktext"/> |         android:textColor="@color/ondarktext" /> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
| @ -2,12 +2,12 @@ | |||||||
| <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|         android:background="@color/primarybackground"> |     android:background="@color/primarybackground" > | ||||||
| 
 | 
 | ||||||
| <LinearLayout  |     <LinearLayout | ||||||
|         android:layout_width="match_parent" |         android:layout_width="match_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|     android:orientation="vertical"> |         android:orientation="vertical" > | ||||||
| 
 | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             style="@style/sectionHeader" |             style="@style/sectionHeader" | ||||||
| @ -15,19 +15,20 @@ | |||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:padding="8dp" |             android:padding="8dp" | ||||||
|             android:text="@string/action_contact_details" |             android:text="@string/action_contact_details" | ||||||
|         android:textColor="@color/primarytext"/> |             android:textColor="@color/primarytext" /> | ||||||
|  | 
 | ||||||
|         <RelativeLayout |         <RelativeLayout | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:minHeight="88dp" |             android:minHeight="88dp" | ||||||
|         android:padding="8dp"> |             android:padding="8dp" > | ||||||
| 
 | 
 | ||||||
|             <QuickContactBadge |             <QuickContactBadge | ||||||
|                 android:id="@+id/details_contact_badge" |                 android:id="@+id/details_contact_badge" | ||||||
|                 android:layout_width="72dp" |                 android:layout_width="72dp" | ||||||
|                 android:layout_height="72dp" |                 android:layout_height="72dp" | ||||||
|                 android:layout_centerVertical="true" |                 android:layout_centerVertical="true" | ||||||
|             android:scaleType="centerCrop"/> |                 android:scaleType="centerCrop" /> | ||||||
| 
 | 
 | ||||||
|             <LinearLayout |             <LinearLayout | ||||||
|                 android:id="@+id/details_jidbox" |                 android:id="@+id/details_jidbox" | ||||||
| @ -44,67 +45,69 @@ | |||||||
|                     android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
|                     android:paddingLeft="8dp" |                     android:paddingLeft="8dp" | ||||||
|                     android:singleLine="true" |                     android:singleLine="true" | ||||||
|                 android:textSize="?attr/TextSizeBody" |                     android:textColor="@color/primarytext" | ||||||
|                 android:textColor="@color/primarytext"/> |                     android:textSize="?attr/TextSizeBody" /> | ||||||
| 
 | 
 | ||||||
|                 <TextView |                 <TextView | ||||||
|                     android:id="@+id/details_contactstatus" |                     android:id="@+id/details_contactstatus" | ||||||
|                     android:layout_width="wrap_content" |                     android:layout_width="wrap_content" | ||||||
|                     android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
|                     android:paddingLeft="16dp" |                     android:paddingLeft="16dp" | ||||||
|                 android:textSize="?attr/TextSizeHeadline" |  | ||||||
|                     android:textColor="@color/primarytext" |                     android:textColor="@color/primarytext" | ||||||
|  |                     android:textSize="?attr/TextSizeHeadline" | ||||||
|                     android:textStyle="bold" /> |                     android:textStyle="bold" /> | ||||||
|  | 
 | ||||||
|                 <TextView |                 <TextView | ||||||
|                     android:id="@+id/details_lastseen" |                     android:id="@+id/details_lastseen" | ||||||
|                     android:layout_width="wrap_content" |                     android:layout_width="wrap_content" | ||||||
|                     android:layout_height="wrap_content" |                     android:layout_height="wrap_content" | ||||||
|                     android:paddingLeft="8dp" |                     android:paddingLeft="8dp" | ||||||
|                     android:singleLine="true" |                     android:singleLine="true" | ||||||
|                 android:textSize="?attr/TextSizeBody" |                     android:textColor="@color/primarytext" | ||||||
|                 android:textColor="@color/primarytext"/> |                     android:textSize="?attr/TextSizeBody" /> | ||||||
|             </LinearLayout> |             </LinearLayout> | ||||||
|            |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
| 
 | 
 | ||||||
|    |  | ||||||
|         <TextView |         <TextView | ||||||
|             style="@style/sectionHeader" |             style="@style/sectionHeader" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:padding="8dp" |             android:padding="8dp" | ||||||
|             android:text="@string/your_account" |             android:text="@string/your_account" | ||||||
|         android:textColor="@color/primarytext"/> |             android:textColor="@color/primarytext" /> | ||||||
|  | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             android:id="@+id/details_account" |             android:id="@+id/details_account" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:paddingLeft="8dp" |             android:paddingLeft="8dp" | ||||||
|         android:textSize="?attr/TextSizeBody" |             android:textColor="@color/primarytext" | ||||||
|         android:textColor="@color/primarytext" /> |             android:textSize="?attr/TextSizeBody" /> | ||||||
|  | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             style="@style/sectionHeader" |             style="@style/sectionHeader" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:padding="8dp" |             android:padding="8dp" | ||||||
|             android:text="@string/subscriptions" |             android:text="@string/subscriptions" | ||||||
|         android:textColor="@color/primarytext"/> |             android:textColor="@color/primarytext" /> | ||||||
| 
 | 
 | ||||||
|         <CheckBox |         <CheckBox | ||||||
|             android:id="@+id/details_send_presence" |             android:id="@+id/details_send_presence" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:text="@string/send_presence_updates" |             android:text="@string/send_presence_updates" | ||||||
|         android:textSize="?attr/TextSizeBody" |             android:textColor="@color/primarytext" | ||||||
|         android:textColor="@color/primarytext" /> |             android:textSize="?attr/TextSizeBody" /> | ||||||
| 
 | 
 | ||||||
|         <CheckBox |         <CheckBox | ||||||
|             android:id="@+id/details_receive_presence" |             android:id="@+id/details_receive_presence" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:text="@string/receive_presence_updates" |             android:text="@string/receive_presence_updates" | ||||||
|         android:textSize="?attr/TextSizeBody" |             android:textColor="@color/primarytext" | ||||||
|         android:textColor="@color/primarytext" /> |             android:textSize="?attr/TextSizeBody" /> | ||||||
|  | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             style="@style/sectionHeader" |             style="@style/sectionHeader" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
| @ -116,10 +119,10 @@ | |||||||
|             android:id="@+id/details_contact_keys" |             android:id="@+id/details_contact_keys" | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|      android:orientation="vertical" |  | ||||||
|             android:divider="?android:dividerHorizontal" |             android:divider="?android:dividerHorizontal" | ||||||
|         android:showDividers="middle"> |             android:orientation="vertical" | ||||||
|  |             android:showDividers="middle" > | ||||||
|  |         </LinearLayout> | ||||||
|     </LinearLayout> |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> |  | ||||||
| </ScrollView> | </ScrollView> | ||||||
| @ -24,7 +24,7 @@ | |||||||
|             android:singleLine="true" |             android:singleLine="true" | ||||||
|             android:text="@string/account_settings_example_jabber_id" |             android:text="@string/account_settings_example_jabber_id" | ||||||
|             android:textColor="@color/primarytext" |             android:textColor="@color/primarytext" | ||||||
|             android:textSize="?attr/TextSizeBody"/> |             android:textSize="?attr/TextSizeBody" /> | ||||||
| 
 | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             style="@style/sectionHeader" |             style="@style/sectionHeader" | ||||||
| @ -82,9 +82,8 @@ | |||||||
|                 android:layout_alignParentRight="true" |                 android:layout_alignParentRight="true" | ||||||
|                 android:layout_centerVertical="true" |                 android:layout_centerVertical="true" | ||||||
|                 android:background="?android:selectableItemBackground" |                 android:background="?android:selectableItemBackground" | ||||||
|               	android:src="@drawable/ic_action_edit_dark" |                 android:padding="8dp" | ||||||
|               	android:padding="8dp"/> |                 android:src="@drawable/ic_action_edit_dark" /> | ||||||
| 
 |  | ||||||
|         </RelativeLayout> |         </RelativeLayout> | ||||||
| 
 | 
 | ||||||
|         <LinearLayout |         <LinearLayout | ||||||
|  | |||||||
| @ -77,9 +77,9 @@ | |||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="fill_parent" |         android:layout_height="fill_parent" | ||||||
|         android:layout_above="@+id/button_bar" |         android:layout_above="@+id/button_bar" | ||||||
|         android:layout_below="@+id/secondary_hint" |  | ||||||
|         android:layout_alignParentLeft="true" |         android:layout_alignParentLeft="true" | ||||||
|         android:layout_alignParentRight="true" |         android:layout_alignParentRight="true" | ||||||
|  |         android:layout_below="@+id/secondary_hint" | ||||||
|         android:gravity="center_vertical" |         android:gravity="center_vertical" | ||||||
|         android:orientation="vertical" |         android:orientation="vertical" | ||||||
|         android:paddingLeft="8dp" |         android:paddingLeft="8dp" | ||||||
| @ -90,17 +90,17 @@ | |||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:textColor="@color/primarytext" |             android:textColor="@color/primarytext" | ||||||
|             android:textSize="?attr/TextSizeHeadline"/> |             android:textSize="?attr/TextSizeHeadline" /> | ||||||
| 
 | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             android:id="@+id/hint_or_warning" |             android:id="@+id/hint_or_warning" | ||||||
|             android:layout_marginTop="8dp" |  | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|  |             android:layout_marginTop="8dp" | ||||||
|  |             android:minLines="3" | ||||||
|             android:text="@string/publish_avatar_explanation" |             android:text="@string/publish_avatar_explanation" | ||||||
|             android:textColor="@color/primarytext" |             android:textColor="@color/primarytext" | ||||||
|             android:textSize="?attr/TextSizeBody" |             android:textSize="?attr/TextSizeBody" /> | ||||||
|             android:minLines="3" /> |  | ||||||
|     </LinearLayout> |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </RelativeLayout> | </RelativeLayout> | ||||||
| @ -3,6 +3,6 @@ | |||||||
|     android:id="@+id/start_conversation_view_pager" |     android:id="@+id/start_conversation_view_pager" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|     android:background="@color/primarybackground"> |     android:background="@color/primarybackground" > | ||||||
| 
 | 
 | ||||||
| </android.support.v4.view.ViewPager> | </android.support.v4.view.ViewPager> | ||||||
| @ -27,8 +27,8 @@ | |||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:singleLine="true" |             android:singleLine="true" | ||||||
|             android:textSize="?attr/TextSizeHeadline" |             android:textColor="@color/primarytext" | ||||||
|             android:textColor="@color/primarytext" /> |             android:textSize="?attr/TextSizeHeadline" /> | ||||||
| 
 | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             android:id="@+id/contact_jid" |             android:id="@+id/contact_jid" | ||||||
|  | |||||||
| @ -32,9 +32,9 @@ | |||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:layout_alignParentRight="true" |         android:layout_alignParentRight="true" | ||||||
|         android:layout_centerVertical="true" |         android:layout_centerVertical="true" | ||||||
|         android:padding="8dp" |  | ||||||
|         android:background="?android:selectableItemBackground" |         android:background="?android:selectableItemBackground" | ||||||
|  |         android:padding="8dp" | ||||||
|         android:src="@drawable/ic_action_remove" |         android:src="@drawable/ic_action_remove" | ||||||
|         android:visibility="invisible"/> |         android:visibility="invisible" /> | ||||||
| 
 | 
 | ||||||
| </RelativeLayout> | </RelativeLayout> | ||||||
| @ -2,22 +2,21 @@ | |||||||
|     android:layout_width="fill_parent" |     android:layout_width="fill_parent" | ||||||
|     android:layout_height="wrap_content" |     android:layout_height="wrap_content" | ||||||
|     android:orientation="horizontal" |     android:orientation="horizontal" | ||||||
|     android:padding="8dp"> |     android:padding="8dp" > | ||||||
|   |  | ||||||
| 
 | 
 | ||||||
|     <ImageView |     <ImageView | ||||||
|         android:id="@+id/conversation_image" |         android:id="@+id/conversation_image" | ||||||
|         android:layout_width="56dp" |         android:layout_width="56dp" | ||||||
|         android:layout_height="56dp" |         android:layout_height="56dp" | ||||||
|         android:layout_alignParentLeft="true" |         android:layout_alignParentLeft="true" | ||||||
|             android:scaleType="centerCrop"/> |         android:scaleType="centerCrop" /> | ||||||
| 
 | 
 | ||||||
|     <RelativeLayout |     <RelativeLayout | ||||||
| 	    android:layout_toRightOf="@+id/conversation_image" |  | ||||||
| 	    android:layout_centerVertical="true" |  | ||||||
| 	    android:layout_height="wrap_content" |  | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
| 	    android:paddingLeft="8dp"> |         android:layout_height="wrap_content" | ||||||
|  |         android:layout_centerVertical="true" | ||||||
|  |         android:layout_toRightOf="@+id/conversation_image" | ||||||
|  |         android:paddingLeft="8dp" > | ||||||
| 
 | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             android:id="@+id/conversation_name" |             android:id="@+id/conversation_name" | ||||||
| @ -26,27 +25,26 @@ | |||||||
|             android:layout_alignLeft="@+id/conversation_lastwrapper" |             android:layout_alignLeft="@+id/conversation_lastwrapper" | ||||||
|             android:layout_toLeftOf="@+id/conversation_lastupdate" |             android:layout_toLeftOf="@+id/conversation_lastupdate" | ||||||
|             android:singleLine="true" |             android:singleLine="true" | ||||||
| 	        android:textSize="?attr/TextSizeHeadline" |  | ||||||
|             android:textColor="@color/primarytext" |             android:textColor="@color/primarytext" | ||||||
|  |             android:textSize="?attr/TextSizeHeadline" | ||||||
|             android:typeface="sans" /> |             android:typeface="sans" /> | ||||||
| 
 | 
 | ||||||
|         <LinearLayout |         <LinearLayout | ||||||
| 	        android:orientation="vertical" |  | ||||||
|             android:id="@+id/conversation_lastwrapper" |             android:id="@+id/conversation_lastwrapper" | ||||||
|             android:layout_width="fill_parent" |             android:layout_width="fill_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:layout_below="@id/conversation_name" |             android:layout_below="@id/conversation_name" | ||||||
| 	        android:paddingTop="3dp" |             android:orientation="vertical" | ||||||
| 	        > |             android:paddingTop="3dp" > | ||||||
|  | 
 | ||||||
|             <TextView |             <TextView | ||||||
|                 android:id="@+id/conversation_lastmsg" |                 android:id="@+id/conversation_lastmsg" | ||||||
|                 android:layout_width="fill_parent" |                 android:layout_width="fill_parent" | ||||||
|                 android:layout_height="wrap_content" |                 android:layout_height="wrap_content" | ||||||
| 	        android:textSize="?attr/TextSizeBody" |  | ||||||
| 	        android:textColor="@color/primarytext" |  | ||||||
| 	        android:singleLine="true" |  | ||||||
|                 android:scrollHorizontally="false" |                 android:scrollHorizontally="false" | ||||||
| 	        /> |                 android:singleLine="true" | ||||||
|  |                 android:textColor="@color/primarytext" | ||||||
|  |                 android:textSize="?attr/TextSizeBody" /> | ||||||
| 
 | 
 | ||||||
|             <ImageView |             <ImageView | ||||||
|                 android:id="@+id/conversation_lastimage" |                 android:id="@+id/conversation_lastimage" | ||||||
| @ -54,8 +52,8 @@ | |||||||
|                 android:layout_height="36dp" |                 android:layout_height="36dp" | ||||||
|                 android:background="@color/primarytext" |                 android:background="@color/primarytext" | ||||||
|                 android:scaleType="centerCrop" /> |                 android:scaleType="centerCrop" /> | ||||||
| 
 |  | ||||||
|         </LinearLayout> |         </LinearLayout> | ||||||
|  | 
 | ||||||
|         <TextView |         <TextView | ||||||
|             android:id="@+id/conversation_lastupdate" |             android:id="@+id/conversation_lastupdate" | ||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
| @ -63,10 +61,8 @@ | |||||||
|             android:layout_alignBaseline="@+id/conversation_name" |             android:layout_alignBaseline="@+id/conversation_name" | ||||||
|             android:layout_alignParentRight="true" |             android:layout_alignParentRight="true" | ||||||
|             android:gravity="right" |             android:gravity="right" | ||||||
| 	        android:textSize="?attr/TextSizeInfo" |             android:textColor="@color/secondarytext" | ||||||
| 	        android:textColor="@color/secondarytext"/> |             android:textSize="?attr/TextSizeInfo" /> | ||||||
| 
 |  | ||||||
|     </RelativeLayout> |     </RelativeLayout> | ||||||
| 
 | 
 | ||||||
|   |  | ||||||
| </RelativeLayout> | </RelativeLayout> | ||||||
| @ -3,15 +3,16 @@ | |||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |     android:orientation="vertical" | ||||||
|     android:padding="8dp"> |     android:padding="8dp" > | ||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/your_account" |         android:id="@+id/your_account" | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:text="@string/your_account" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         android:text="@string/your_account" /> |         android:textSize="?attr/TextSizeBody" /> | ||||||
|  | 
 | ||||||
|     <Spinner |     <Spinner | ||||||
|         android:id="@+id/account" |         android:id="@+id/account" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
| @ -19,20 +20,20 @@ | |||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/jabber_id" |         android:id="@+id/jabber_id" | ||||||
|         android:layout_marginTop="8dp" |  | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:layout_marginTop="8dp" | ||||||
|  |         android:text="@string/account_settings_jabber_id" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         android:text="@string/account_settings_jabber_id" /> |         android:textSize="?attr/TextSizeBody" /> | ||||||
| 
 | 
 | ||||||
|     <AutoCompleteTextView |     <AutoCompleteTextView | ||||||
|         android:id="@+id/jid" |         android:id="@+id/jid" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:inputType="textEmailAddress" |  | ||||||
|         android:hint="@string/account_settings_example_jabber_id" |         android:hint="@string/account_settings_example_jabber_id" | ||||||
|         android:textColorHint="@color/secondarytext" |         android:inputType="textEmailAddress" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         /> |         android:textColorHint="@color/secondarytext" /> | ||||||
|  | 
 | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
| @ -3,16 +3,19 @@ | |||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |     android:orientation="vertical" | ||||||
|     android:padding="8dp"> |     android:padding="8dp" > | ||||||
|  | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|  |         android:paddingBottom="8dp" | ||||||
|         android:text="@string/clear_histor_msg" |         android:text="@string/clear_histor_msg" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:textSize="?attr/TextSizeBody" /> | ||||||
|         android:paddingBottom="8dp"/> | 
 | ||||||
|     <CheckBox |     <CheckBox | ||||||
|         android:id="@+id/end_conversation_checkbox" |         android:id="@+id/end_conversation_checkbox" | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:text="@string/also_end_conversation"/> |         android:text="@string/also_end_conversation" /> | ||||||
|  | 
 | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
| @ -3,9 +3,9 @@ | |||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |     android:orientation="vertical" | ||||||
|     android:paddingLeft="8dp" |  | ||||||
|     android:paddingBottom="16dp" |     android:paddingBottom="16dp" | ||||||
|     android:paddingRight="8dp"> |     android:paddingLeft="8dp" | ||||||
|  |     android:paddingRight="8dp" > | ||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
| @ -13,45 +13,48 @@ | |||||||
|         android:paddingTop="8dp" |         android:paddingTop="8dp" | ||||||
|         android:text="Jabber ID" |         android:text="Jabber ID" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         android:textSize="?attr/TextSizeHeadline"/> |         android:textSize="?attr/TextSizeHeadline" /> | ||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/verify_otr_jid" |         android:id="@+id/verify_otr_jid" | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:paddingLeft="8dp" |         android:paddingLeft="8dp" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:textColor="@color/secondarytext" | ||||||
|         android:textColor="@color/secondarytext"/> |         android:textSize="?attr/TextSizeBody" /> | ||||||
|  | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:paddingTop="8dp" |         android:paddingTop="8dp" | ||||||
|         android:text="@string/otr_fingerprint" |         android:text="@string/otr_fingerprint" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         android:textSize="?attr/TextSizeHeadline"/> |         android:textSize="?attr/TextSizeHeadline" /> | ||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/verify_otr_fingerprint" |         android:id="@+id/verify_otr_fingerprint" | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:paddingLeft="8dp" |         android:paddingLeft="8dp" | ||||||
|  |         android:textColor="@color/secondarytext" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:textSize="?attr/TextSizeBody" | ||||||
|         android:typeface="monospace" |         android:typeface="monospace" /> | ||||||
|         android:textColor="@color/secondarytext"/> | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:paddingTop="8dp" |         android:paddingTop="8dp" | ||||||
|         android:text="@string/your_fingerprint" |         android:text="@string/your_fingerprint" | ||||||
|         android:textSize="?attr/TextSizeHeadline" |         android:textColor="@color/primarytext" | ||||||
|         android:textColor="@color/primarytext"/> |         android:textSize="?attr/TextSizeHeadline" /> | ||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/verify_otr_yourprint" |         android:id="@+id/verify_otr_yourprint" | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:paddingLeft="8dp" |         android:paddingLeft="8dp" | ||||||
|  |         android:textColor="@color/secondarytext" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:textSize="?attr/TextSizeBody" | ||||||
|         android:typeface="monospace" |         android:typeface="monospace" /> | ||||||
|         android:textColor="@color/secondarytext"/> | 
 | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
| @ -1,30 +1,30 @@ | |||||||
| <android.support.v4.widget.SlidingPaneLayout | <android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         xmlns:android="http://schemas.android.com/apk/res/android" |     android:id="@+id/slidingpanelayout" | ||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|         android:layout_height="match_parent" |     android:layout_height="match_parent" > | ||||||
|         android:id="@+id/slidingpanelayout"> | 
 | ||||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |     <LinearLayout | ||||||
|  |         xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|         android:layout_width="288dp" |         android:layout_width="288dp" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |  | ||||||
|         android:background="@color/primarybackground" |         android:background="@color/primarybackground" | ||||||
|     > |         android:orientation="vertical" > | ||||||
| 
 | 
 | ||||||
|         <ListView |         <ListView | ||||||
|             android:id="@+id/list" |             android:id="@+id/list" | ||||||
|             android:layout_width="fill_parent" |             android:layout_width="fill_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|         android:divider="@color/divider" |  | ||||||
|         android:dividerHeight="1dp" |  | ||||||
|             android:background="@color/primarybackground" |             android:background="@color/primarybackground" | ||||||
|      /> |             android:divider="@color/divider" | ||||||
|  |             android:dividerHeight="1dp" /> | ||||||
|  |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> |     <LinearLayout | ||||||
| <LinearLayout  |  | ||||||
|         android:id="@+id/selected_conversation" |         android:id="@+id/selected_conversation" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="match_parent" |         android:layout_height="match_parent" | ||||||
|         android:layout_weight="1" |         android:layout_weight="1" | ||||||
| 	android:orientation="vertical"> |         android:orientation="vertical" > | ||||||
| </LinearLayout>       |     </LinearLayout> | ||||||
|  | 
 | ||||||
| </android.support.v4.widget.SlidingPaneLayout> | </android.support.v4.widget.SlidingPaneLayout> | ||||||
| @ -3,15 +3,16 @@ | |||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |     android:orientation="vertical" | ||||||
|     android:padding="8dp"> |     android:padding="8dp" > | ||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/your_account" |         android:id="@+id/your_account" | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:text="@string/your_account" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         android:text="@string/your_account" /> |         android:textSize="?attr/TextSizeBody" /> | ||||||
|  | 
 | ||||||
|     <Spinner |     <Spinner | ||||||
|         android:id="@+id/account" |         android:id="@+id/account" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
| @ -19,29 +20,28 @@ | |||||||
| 
 | 
 | ||||||
|     <TextView |     <TextView | ||||||
|         android:id="@+id/jabber_id" |         android:id="@+id/jabber_id" | ||||||
|         android:layout_marginTop="8dp" |  | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:textSize="?attr/TextSizeBody" |         android:layout_marginTop="8dp" | ||||||
|  |         android:text="@string/conference_address" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         android:text="@string/conference_address" /> |         android:textSize="?attr/TextSizeBody" /> | ||||||
| 
 | 
 | ||||||
|     <AutoCompleteTextView |     <AutoCompleteTextView | ||||||
|         android:id="@+id/jid" |         android:id="@+id/jid" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:inputType="textEmailAddress" |  | ||||||
|         android:hint="@string/conference_address_example" |         android:hint="@string/conference_address_example" | ||||||
|         android:textColorHint="@color/secondarytext" |         android:inputType="textEmailAddress" | ||||||
|         android:textColor="@color/primarytext" |         android:textColor="@color/primarytext" | ||||||
|         /> |         android:textColorHint="@color/secondarytext" /> | ||||||
| 
 | 
 | ||||||
|     <CheckBox |     <CheckBox | ||||||
|         android:id="@+id/bookmark" |         android:id="@+id/bookmark" | ||||||
|         android:layout_marginTop="8dp" |  | ||||||
|         android:layout_width="wrap_content" |         android:layout_width="wrap_content" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:text="@string/save_as_bookmark" |         android:layout_marginTop="8dp" | ||||||
|         android:checked="true" /> |         android:checked="true" | ||||||
|  |         android:text="@string/save_as_bookmark" /> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
| @ -3,14 +3,14 @@ | |||||||
|     xmlns:tools="http://schemas.android.com/tools" |     xmlns:tools="http://schemas.android.com/tools" | ||||||
|     android:layout_width="fill_parent" |     android:layout_width="fill_parent" | ||||||
|     android:layout_height="fill_parent" |     android:layout_height="fill_parent" | ||||||
|     android:background="@color/primarybackground"> |     android:background="@color/primarybackground" > | ||||||
| 
 | 
 | ||||||
|     <ListView |     <ListView | ||||||
|         android:id="@+id/account_list" |         android:id="@+id/account_list" | ||||||
|         android:layout_width="fill_parent" |         android:layout_width="fill_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:divider="@color/divider" |         android:divider="@color/divider" | ||||||
|         android:dividerHeight="1dp"> |         android:dividerHeight="1dp" > | ||||||
|     </ListView> |     </ListView> | ||||||
| 
 | 
 | ||||||
| </LinearLayout> | </LinearLayout> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|     android:layout_width="fill_parent" |     android:layout_width="fill_parent" | ||||||
|     android:layout_height="wrap_content"> |     android:layout_height="wrap_content" > | ||||||
|  | 
 | ||||||
| </RelativeLayout> | </RelativeLayout> | ||||||
| @ -3,10 +3,10 @@ | |||||||
|     android:layout_width="fill_parent" |     android:layout_width="fill_parent" | ||||||
|     android:layout_height="wrap_content" |     android:layout_height="wrap_content" | ||||||
|     android:orientation="vertical" |     android:orientation="vertical" | ||||||
|     android:paddingTop="6dp" |  | ||||||
|     android:paddingBottom="6dp" |     android:paddingBottom="6dp" | ||||||
|  |     android:paddingLeft="8dp" | ||||||
|     android:paddingRight="6dp" |     android:paddingRight="6dp" | ||||||
|     android:paddingLeft="8dp"> |     android:paddingTop="6dp" > | ||||||
| 
 | 
 | ||||||
|     <ImageView |     <ImageView | ||||||
|         android:id="@+id/message_photo" |         android:id="@+id/message_photo" | ||||||
| @ -17,6 +17,6 @@ | |||||||
|         android:layout_marginRight="-1.5dp" |         android:layout_marginRight="-1.5dp" | ||||||
|         android:padding="0dp" |         android:padding="0dp" | ||||||
|         android:scaleType="fitXY" |         android:scaleType="fitXY" | ||||||
|         android:src="@drawable/ic_profile"/> |         android:src="@drawable/ic_profile" /> | ||||||
| 
 | 
 | ||||||
| </RelativeLayout> | </RelativeLayout> | ||||||
| @ -3,14 +3,15 @@ | |||||||
|     android:layout_width="match_parent" |     android:layout_width="match_parent" | ||||||
|     android:layout_height="match_parent" |     android:layout_height="match_parent" | ||||||
|     android:orientation="vertical" |     android:orientation="vertical" | ||||||
|     android:padding="16dp"> |     android:padding="16dp" > | ||||||
|  | 
 | ||||||
|     <EditText |     <EditText | ||||||
|         android:id="@+id/editor" |         android:id="@+id/editor" | ||||||
|         android:layout_width="match_parent" |         android:layout_width="match_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:ems="10" |         android:ems="10" | ||||||
|         android:inputType="textPersonName" |         android:inputType="textPersonName" | ||||||
|         android:textColor="@color/primarytext"> |         android:textColor="@color/primarytext" > | ||||||
| 
 | 
 | ||||||
|         <requestFocus /> |         <requestFocus /> | ||||||
|     </EditText> |     </EditText> | ||||||
|  | |||||||
| @ -11,4 +11,5 @@ | |||||||
|         android:id="@+id/attach_record_voice" |         android:id="@+id/attach_record_voice" | ||||||
|         android:title="@string/attach_record_voice" |         android:title="@string/attach_record_voice" | ||||||
|         android:visible="false"/> |         android:visible="false"/> | ||||||
|  | 
 | ||||||
| </menu> | </menu> | ||||||
| @ -7,4 +7,5 @@ | |||||||
|         android:icon="@drawable/ic_action_search" |         android:icon="@drawable/ic_action_search" | ||||||
|         android:showAsAction="collapseActionView|always" |         android:showAsAction="collapseActionView|always" | ||||||
|         android:title="@string/search"/> |         android:title="@string/search"/> | ||||||
|  | 
 | ||||||
| </menu> | </menu> | ||||||
| @ -1,27 +1,27 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <menu xmlns:android="http://schemas.android.com/apk/res/android" > | <menu xmlns:android="http://schemas.android.com/apk/res/android" > | ||||||
|  | 
 | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_edit_contact" |         android:id="@+id/action_edit_contact" | ||||||
|  |         android:icon="@drawable/ic_action_edit" | ||||||
|         android:orderInCategory="10" |         android:orderInCategory="10" | ||||||
|         android:showAsAction="always" |         android:showAsAction="always" | ||||||
|         android:icon="@drawable/ic_action_edit" |         android:title="@string/action_edit_contact"/> | ||||||
|         android:title="@string/action_edit_contact" /> |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_delete_contact" |         android:id="@+id/action_delete_contact" | ||||||
|  |         android:icon="@drawable/ic_action_discard" | ||||||
|         android:orderInCategory="10" |         android:orderInCategory="10" | ||||||
|         android:showAsAction="always" |         android:showAsAction="always" | ||||||
|         android:icon="@drawable/ic_action_discard" |         android:title="@string/action_delete_contact"/> | ||||||
|         android:title="@string/action_delete_contact" /> |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_accounts" |         android:id="@+id/action_accounts" | ||||||
|         android:orderInCategory="90" |         android:orderInCategory="90" | ||||||
|         android:showAsAction="never" |         android:showAsAction="never" | ||||||
|         android:title="@string/action_accounts" |         android:title="@string/action_accounts"/> | ||||||
| 	/> |  | ||||||
|          |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_settings" |         android:id="@+id/action_settings" | ||||||
|         android:orderInCategory="100" |         android:orderInCategory="100" | ||||||
|         android:showAsAction="never" |         android:showAsAction="never" | ||||||
|         android:title="@string/action_settings"/> |         android:title="@string/action_settings"/> | ||||||
|  | 
 | ||||||
| </menu> | </menu> | ||||||
| @ -1,17 +1,16 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <menu xmlns:android="http://schemas.android.com/apk/res/android" > | <menu xmlns:android="http://schemas.android.com/apk/res/android" > | ||||||
|      <group android:checkableBehavior="single"> |  | ||||||
| 
 | 
 | ||||||
| <item |     <group android:checkableBehavior="single" > | ||||||
|  |         <item | ||||||
|             android:id="@+id/encryption_choice_none" |             android:id="@+id/encryption_choice_none" | ||||||
|     android:title="@string/encryption_choice_none" |             android:title="@string/encryption_choice_none"/> | ||||||
|     /> |         <item | ||||||
| <item |  | ||||||
|             android:id="@+id/encryption_choice_otr" |             android:id="@+id/encryption_choice_otr" | ||||||
|     android:title="@string/encryption_choice_otr" |             android:title="@string/encryption_choice_otr"/> | ||||||
|     /> |         <item | ||||||
| <item |  | ||||||
|             android:id="@+id/encryption_choice_pgp" |             android:id="@+id/encryption_choice_pgp" | ||||||
|             android:title="@string/encryption_choice_pgp"/> |             android:title="@string/encryption_choice_pgp"/> | ||||||
| </group> |     </group> | ||||||
|  | 
 | ||||||
| </menu> | </menu> | ||||||
| @ -1,12 +1,15 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <menu xmlns:android="http://schemas.android.com/apk/res/android" > | <menu xmlns:android="http://schemas.android.com/apk/res/android" > | ||||||
|     <item android:id="@+id/action_add_account" | 
 | ||||||
|  |     <item | ||||||
|  |         android:id="@+id/action_add_account" | ||||||
|  |         android:icon="@drawable/ic_action_add_person" | ||||||
|         android:showAsAction="always" |         android:showAsAction="always" | ||||||
|         android:title="@string/action_add_account" |         android:title="@string/action_add_account"/> | ||||||
|         android:icon="@drawable/ic_action_add_person"/> |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_settings" |         android:id="@+id/action_settings" | ||||||
|         android:orderInCategory="100" |         android:orderInCategory="100" | ||||||
|         android:showAsAction="never" |         android:showAsAction="never" | ||||||
|         android:title="@string/action_settings"/> |         android:title="@string/action_settings"/> | ||||||
|  | 
 | ||||||
| </menu> | </menu> | ||||||
| @ -1,21 +1,21 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <menu xmlns:android="http://schemas.android.com/apk/res/android" > | <menu xmlns:android="http://schemas.android.com/apk/res/android" > | ||||||
|  | 
 | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_edit_subject" |         android:id="@+id/action_edit_subject" | ||||||
|  |         android:icon="@drawable/ic_action_edit" | ||||||
|         android:orderInCategory="10" |         android:orderInCategory="10" | ||||||
|         android:showAsAction="always" |         android:showAsAction="always" | ||||||
|         android:icon="@drawable/ic_action_edit" |         android:title="@string/action_edit_subject"/> | ||||||
|         android:title="@string/action_edit_subject" /> |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_accounts" |         android:id="@+id/action_accounts" | ||||||
|         android:orderInCategory="90" |         android:orderInCategory="90" | ||||||
|         android:showAsAction="never" |         android:showAsAction="never" | ||||||
|         android:title="@string/action_accounts" |         android:title="@string/action_accounts"/> | ||||||
| 	/> |  | ||||||
|          |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_settings" |         android:id="@+id/action_settings" | ||||||
|         android:orderInCategory="100" |         android:orderInCategory="100" | ||||||
|         android:showAsAction="never" |         android:showAsAction="never" | ||||||
|         android:title="@string/action_settings"/> |         android:title="@string/action_settings"/> | ||||||
|  | 
 | ||||||
| </menu> | </menu> | ||||||
| @ -7,7 +7,6 @@ | |||||||
|         android:icon="@drawable/ic_action_search" |         android:icon="@drawable/ic_action_search" | ||||||
|         android:showAsAction="collapseActionView|always" |         android:showAsAction="collapseActionView|always" | ||||||
|         android:title="@string/search"/> |         android:title="@string/search"/> | ||||||
|      |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_create_contact" |         android:id="@+id/action_create_contact" | ||||||
|         android:icon="@drawable/ic_action_add_person" |         android:icon="@drawable/ic_action_add_person" | ||||||
| @ -18,7 +17,6 @@ | |||||||
|         android:icon="@drawable/ic_action_add_group" |         android:icon="@drawable/ic_action_add_group" | ||||||
|         android:showAsAction="always" |         android:showAsAction="always" | ||||||
|         android:title="@string/join_conference"/> |         android:title="@string/join_conference"/> | ||||||
|      |  | ||||||
|     <item |     <item | ||||||
|         android:id="@+id/action_accounts" |         android:id="@+id/action_accounts" | ||||||
|         android:orderInCategory="90" |         android:orderInCategory="90" | ||||||
|  | |||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mòbil</item> |         <item>Mòbil</item> | ||||||
|         <item>Telèfon</item> |         <item>Telèfon</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -78,5 +78,6 @@ | |||||||
|     <string name="pref_advanced_options">Opcions avançades</string> |     <string name="pref_advanced_options">Opcions avançades</string> | ||||||
|     <string name="pref_never_send_crash">Mai enviïs informes d\'errors</string> |     <string name="pref_never_send_crash">Mai enviïs informes d\'errors</string> | ||||||
|     <string name="pref_never_send_crash_summary">Enviant traces d\'execució ajudes al futur desenvolupament del Conversations.</string> |     <string name="pref_never_send_crash_summary">Enviant traces d\'execució ajudes al futur desenvolupament del Conversations.</string> | ||||||
|  |     <string name="pref_ui_options">Opcions de UI</string> | ||||||
| 
 | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mobile</item> |         <item>Mobile</item> | ||||||
|         <item>Phone</item> |         <item>Phone</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string name="app_name">Conversations</string> |     <string name="app_name">Conversations</string> | ||||||
|     <string name="action_settings">Einstellungen</string> |     <string name="action_settings">Einstellungen</string> | ||||||
|     <string name="action_add">Neue Unterhaltung</string> |     <string name="action_add">Neue Unterhaltung</string> | ||||||
| @ -230,4 +231,6 @@ | |||||||
|     <string name="server_info_session_established">Aktuelle Sitzung wiederhergestellt</string> |     <string name="server_info_session_established">Aktuelle Sitzung wiederhergestellt</string> | ||||||
|     <string name="additional_information">Zusätzliche Informationen</string> |     <string name="additional_information">Zusätzliche Informationen</string> | ||||||
|     <string name="skip">Überspringen</string> |     <string name="skip">Überspringen</string> | ||||||
|  |     <string name="pref_ui_options">Benutzeroberfläche</string> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Móvil</item> |         <item>Móvil</item> | ||||||
|         <item>Teléfono</item> |         <item>Teléfono</item> | ||||||
| @ -26,6 +27,7 @@ | |||||||
|         <item>8 horas</item> |         <item>8 horas</item> | ||||||
|         <item>Hasta nuevo aviso</item> |         <item>Hasta nuevo aviso</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
|     <integer-array name="mute_options_durations"> |     <integer-array name="mute_options_durations"> | ||||||
|         <item>1800</item> |         <item>1800</item> | ||||||
|         <item>3600</item> |         <item>3600</item> | ||||||
| @ -33,4 +35,5 @@ | |||||||
|         <item>28800</item> |         <item>28800</item> | ||||||
|         <item>-1</item> |         <item>-1</item> | ||||||
|     </integer-array> |     </integer-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -254,4 +254,5 @@ | |||||||
|     <string name="pref_expert_options_summary">Por favor, cuidado con estas opciones</string> |     <string name="pref_expert_options_summary">Por favor, cuidado con estas opciones</string> | ||||||
|     <string name="pref_use_larger_font">Incrementar tamaño de fuente</string> |     <string name="pref_use_larger_font">Incrementar tamaño de fuente</string> | ||||||
|     <string name="pref_use_larger_font_summary">Usar fuentes grandes en toda la aplicación</string> |     <string name="pref_use_larger_font_summary">Usar fuentes grandes en toda la aplicación</string> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mugikorra</item> |         <item>Mugikorra</item> | ||||||
|         <item>Telefonoa</item> |         <item>Telefonoa</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -230,5 +230,6 @@ | |||||||
|     <string name="server_info_session_established">Uneko saioa ezarri da</string> |     <string name="server_info_session_established">Uneko saioa ezarri da</string> | ||||||
|     <string name="additional_information">Informazio gehiago</string> |     <string name="additional_information">Informazio gehiago</string> | ||||||
|     <string name="skip">Orain ez</string> |     <string name="skip">Orain ez</string> | ||||||
|  |     <string name="pref_ui_options">Erabiltzaile-interfazearen aukerak</string> | ||||||
| 
 | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mobile</item> |         <item>Mobile</item> | ||||||
|         <item>Téléphone</item> |         <item>Téléphone</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -207,5 +207,6 @@ | |||||||
|     <string name="contact_added_you">Votre correspondant vous a ajouté dans sa liste de contacts</string> |     <string name="contact_added_you">Votre correspondant vous a ajouté dans sa liste de contacts</string> | ||||||
|     <string name="add_back">Ajouter également</string> |     <string name="add_back">Ajouter également</string> | ||||||
|     <string name="contact_has_read_up_to_this_point">%s a lu les messages précédents.</string> |     <string name="contact_has_read_up_to_this_point">%s a lu les messages précédents.</string> | ||||||
|  |     <string name="pref_ui_options">Options d\'affichage</string> | ||||||
| 
 | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Móvil</item> |         <item>Móvil</item> | ||||||
|         <item>Teléfono</item> |         <item>Teléfono</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -125,4 +125,6 @@ | |||||||
|     <string name="save">Gardar</string> |     <string name="save">Gardar</string> | ||||||
|     <string name="passwords_do_not_match">As contrasinais non coinciden</string> |     <string name="passwords_do_not_match">As contrasinais non coinciden</string> | ||||||
|     <string name="invalid_jid">O identificador non é un identificador de Jabber válido</string> |     <string name="invalid_jid">O identificador non é un identificador de Jabber válido</string> | ||||||
|  |     <string name="pref_ui_options">Opcións de interfaz</string> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>נייד</item> |         <item>נייד</item> | ||||||
|         <item>טלפון</item> |         <item>טלפון</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -219,4 +219,6 @@ | |||||||
|     <string name="private_message">בפרטי</string> |     <string name="private_message">בפרטי</string> | ||||||
|     <string name="private_message_to">בפרטי אל %s</string> |     <string name="private_message_to">בפרטי אל %s</string> | ||||||
|     <string name="send_private_message_to">שלח הודעה פרטית אל %s</string> |     <string name="send_private_message_to">שלח הודעה פרטית אל %s</string> | ||||||
|  |     <string name="pref_ui_options">אפשרויות ממשק משתמש</string> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mobiel</item> |         <item>Mobiel</item> | ||||||
|         <item>Telefoon</item> |         <item>Telefoon</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -178,7 +178,6 @@ | |||||||
|     <string name="unknown_otr_fingerprint">Onbekende OTR vingerafdruk</string> |     <string name="unknown_otr_fingerprint">Onbekende OTR vingerafdruk</string> | ||||||
|     <string name="openpgp_messages_found">OpenPGP encrypted messages found</string> |     <string name="openpgp_messages_found">OpenPGP encrypted messages found</string> | ||||||
|     <string name="reception_failed">Ontvangen mislukt</string> |     <string name="reception_failed">Ontvangen mislukt</string> | ||||||
| 
 |  | ||||||
|     <string name="join_conference">Aan groepsconversatie deelnemen</string> |     <string name="join_conference">Aan groepsconversatie deelnemen</string> | ||||||
|     <string name="invite_contact">Contact uitnodigen</string> |     <string name="invite_contact">Contact uitnodigen</string> | ||||||
|     <string name="your_fingerprint">Uw vingerafdruk</string> |     <string name="your_fingerprint">Uw vingerafdruk</string> | ||||||
| @ -229,4 +228,6 @@ | |||||||
|     <string name="server_info_session_established">Huidige sessie opgezet</string> |     <string name="server_info_session_established">Huidige sessie opgezet</string> | ||||||
|     <string name="or_long_press_for_default">(Of houdt lang ingedrukt om de oorspronkelijke terug te zetten)</string> |     <string name="or_long_press_for_default">(Of houdt lang ingedrukt om de oorspronkelijke terug te zetten)</string> | ||||||
|     <string name="server_info_available">beschikbaar</string> |     <string name="server_info_available">beschikbaar</string> | ||||||
|  |     <string name="pref_ui_options">UI Opties</string> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Мобильный</item> |         <item>Мобильный</item> | ||||||
|         <item>Телефон</item> |         <item>Телефон</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -229,5 +229,6 @@ | |||||||
|     <string name="save_as_bookmark">Сохранить закладку</string> |     <string name="save_as_bookmark">Сохранить закладку</string> | ||||||
|     <string name="delete_bookmark">Удалить закладку</string> |     <string name="delete_bookmark">Удалить закладку</string> | ||||||
|     <string name="bookmark_already_exists">Такая закладка уже существует</string> |     <string name="bookmark_already_exists">Такая закладка уже существует</string> | ||||||
|  |     <string name="pref_ui_options">Параметры интерфейса</string> | ||||||
| 
 | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mobile</item> |         <item>Mobile</item> | ||||||
|         <item>Phone</item> |         <item>Phone</item> | ||||||
| @ -19,4 +20,5 @@ | |||||||
|         <item>524288</item> |         <item>524288</item> | ||||||
|         <item>1048576</item> |         <item>1048576</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -231,5 +231,6 @@ | |||||||
|     <string name="pref_general">Generellt</string> |     <string name="pref_general">Generellt</string> | ||||||
|     <string name="publish">Publicera</string> |     <string name="publish">Publicera</string> | ||||||
|     <string name="private_message">privat meddelande</string> |     <string name="private_message">privat meddelande</string> | ||||||
|  |     <string name="pref_ui_options">UI inställningar</string> | ||||||
| 
 | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,5 +1,6 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|  | 
 | ||||||
|     <string-array name="resources"> |     <string-array name="resources"> | ||||||
|         <item>Mobile</item> |         <item>Mobile</item> | ||||||
|         <item>Phone</item> |         <item>Phone</item> | ||||||
| @ -26,6 +27,7 @@ | |||||||
|         <item>8 hours</item> |         <item>8 hours</item> | ||||||
|         <item>until further notice</item> |         <item>until further notice</item> | ||||||
|     </string-array> |     </string-array> | ||||||
|  | 
 | ||||||
|     <integer-array name="mute_options_durations"> |     <integer-array name="mute_options_durations"> | ||||||
|         <item>1800</item> |         <item>1800</item> | ||||||
|         <item>3600</item> |         <item>3600</item> | ||||||
| @ -33,4 +35,5 @@ | |||||||
|         <item>28800</item> |         <item>28800</item> | ||||||
|         <item>-1</item> |         <item>-1</item> | ||||||
|     </integer-array> |     </integer-array> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
| @ -1,6 +1,8 @@ | |||||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||||
| <resources> | <resources> | ||||||
|     <attr name="TextSizeInfo" format="dimension"/> | 
 | ||||||
|     <attr name="TextSizeBody" format="dimension"/> |     <attr name="TextSizeInfo" format="dimension" /> | ||||||
|     <attr name="TextSizeHeadline" format="dimension"/> |     <attr name="TextSizeBody" format="dimension" /> | ||||||
|  |     <attr name="TextSizeHeadline" format="dimension" /> | ||||||
|  | 
 | ||||||
| </resources> | </resources> | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 iNPUTmice
						iNPUTmice