106 lines
4.1 KiB
XML
106 lines
4.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
Copyright 2018 Thomas Schneider
|
||
|
|
||
|
This file is a part of Mastalab
|
||
|
|
||
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
||
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
||
|
License, or (at your option) any later version.
|
||
|
|
||
|
Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||
|
Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License along with Mastalab; if not,
|
||
|
see <http://www.gnu.org/licenses>.
|
||
|
-->
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_marginStart="@dimen/fab_margin"
|
||
|
android:layout_marginLeft="@dimen/fab_margin"
|
||
|
android:layout_marginEnd="@dimen/fab_margin"
|
||
|
android:layout_marginRight="@dimen/fab_margin"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
<!-- About app name -->
|
||
|
<TextView
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:textSize="20sp"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:text="@string/crowdin_translations"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
|
||
|
<!-- Change locale -->
|
||
|
<LinearLayout
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:orientation="horizontal">
|
||
|
<TextView
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/set_change_locale"/>
|
||
|
<Spinner
|
||
|
android:id="@+id/set_change_locale"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<!-- About translator -->
|
||
|
<TextView
|
||
|
android:padding="5dp"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:textColor="?colorAccent"
|
||
|
android:gravity="center_vertical"
|
||
|
android:text="@string/crowdin_manager"
|
||
|
android:textSize="16sp"/>
|
||
|
<fr.gouv.etalab.mastodon.helper.ExpandableHeightListView
|
||
|
android:id="@+id/lv_translator_manager"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:scrollbars="none"
|
||
|
android:divider="@null"/>
|
||
|
|
||
|
|
||
|
<!-- About translation -->
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal"
|
||
|
android:padding="5dp">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="2"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/translation_app"
|
||
|
android:textSize="16sp"/>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/about_translation"
|
||
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="3"
|
||
|
android:text="@string/about_crowdin"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|