translate
This commit is contained in:
parent
d06d9acb35
commit
b46addf7d7
10
app/src/main/res/drawable/_user_.xml
Normal file
10
app/src/main/res/drawable/_user_.xml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="512dp"
|
||||||
|
android:height="512dp"
|
||||||
|
android:viewportWidth="512"
|
||||||
|
android:viewportHeight="512">
|
||||||
|
<path
|
||||||
|
android:pathData="M243.5,0.6c-1.6,0.2 -6.5,0.9 -10.9,1.5 -24.6,3.3 -54.1,17.2 -74.1,34.9 -25.3,22.3 -43.2,54.5 -48.6,87.5 -2,12 -1.7,39 0.5,50 7.1,36.1 27.5,69.5 55,90.3l6.8,5.2 -2.8,1c-12.1,4.6 -17.3,6.9 -27.6,12 -44.4,22.3 -80.5,56 -106.2,99 -21,35.2 -32.8,74.5 -35.2,118l-0.7,12 20.1,-0 20.2,-0 0,-4.9c0,-33.9 14.1,-80.7 33,-109.5 29.1,-44.5 68.1,-75 115.6,-90.5 45.2,-14.8 89.6,-14.8 134.8,-0 47.5,15.5 86.5,46 115.6,90.5 18.9,28.8 33,75.6 33,109.5l0,4.9 20.2,-0 20.1,-0 -0.7,-12c-2.4,-43.5 -14.2,-82.8 -35.2,-118 -25.7,-43 -61.8,-76.7 -106.2,-99 -10.3,-5.1 -15.5,-7.4 -27.6,-12l-2.8,-1 6.8,-5.2c27.5,-20.8 47.9,-54.2 55,-90.3 2.2,-11 2.5,-38 0.5,-50 -4.3,-26.3 -17.6,-54.2 -35.2,-74.2 -21.9,-24.7 -52.7,-42.1 -84.8,-47.9 -7.7,-1.4 -33.2,-2.6 -38.6,-1.8zM272.9,41.5c58.8,9.6 99,65 89.6,123.4 -9.6,58.8 -65,99 -123.4,89.6 -58.8,-9.6 -99,-65 -89.6,-123.4 9.6,-58.8 65,-99 123.4,-89.6z"
|
||||||
|
android:fillColor="#000000"
|
||||||
|
android:strokeColor="#00000000"/>
|
||||||
|
</vector>
|
26
app/src/main/res/layout/administrator_search_by_login.xml
Normal file
26
app/src/main/res/layout/administrator_search_by_login.xml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
tools:layout_editor_absoluteX="1dp"
|
||||||
|
tools:layout_editor_absoluteY="1dp">
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/button"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Button" />
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/editTextTextEmailAddress"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="178dp"
|
||||||
|
android:ems="10"
|
||||||
|
android:inputType="textEmailAddress" />
|
||||||
|
</FrameLayout>
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
@ -25,7 +25,8 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:foregroundGravity="center"
|
android:foregroundGravity="center"
|
||||||
android:importantForAccessibility="no"
|
android:importantForAccessibility="no"
|
||||||
android:src="@drawable/ic_launcher_background"
|
android:src="@drawable/_user_"
|
||||||
|
|
||||||
app:layout_constraintBottom_toTopOf="@+id/title"
|
app:layout_constraintBottom_toTopOf="@+id/title"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
18
app/src/main/res/values-en/strings-en.xml
Normal file
18
app/src/main/res/values-en/strings-en.xml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<resources>
|
||||||
|
<string name="app_name">AS</string>
|
||||||
|
<string name="login">Enter Login</string>
|
||||||
|
<string name="password">Enter password</string>
|
||||||
|
<string name="hello">Welcome!</string>
|
||||||
|
<string name="continue_">Continue</string>
|
||||||
|
<string name="logout">Logout</string>
|
||||||
|
<string name="login_hint">Login must be at least 3 characters long,\start with a letter,\contain only letters and numbers.</string>
|
||||||
|
<string name="close_button">Close</string>
|
||||||
|
<string name="scan">Scan</string>
|
||||||
|
<string name="cancel">The entrance was cancelled</string>
|
||||||
|
<string name="success">Successful</string>
|
||||||
|
<string name="wrong">Somethings wrong</string>
|
||||||
|
<string name="error 401">The login does not work or is incorrect</string>
|
||||||
|
<string name="ok">ОК</string>
|
||||||
|
<string name="error">Error</string>
|
||||||
|
|
||||||
|
</resources>
|
19
app/src/main/res/values-ru/strings-ru.xml
Normal file
19
app/src/main/res/values-ru/strings-ru.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="app_name">AS</string>
|
||||||
|
<string name="login">Введите логин</string>
|
||||||
|
<string name="password">Введите пароль</string>
|
||||||
|
<string name="hello">Здравствуйте!</string>
|
||||||
|
<string name="continue_">Продолжить</string>
|
||||||
|
<string name="logout">Выйти из аккаунта</string>
|
||||||
|
<string name="login_hint">Login must be at least 3 characters long,\start with a letter,\contain only letters and numbers.</string>
|
||||||
|
<string name="close_button">Закрыть</string>
|
||||||
|
<string name="scan">Сканировать</string>
|
||||||
|
<string name="cancel">Вход был отменён</string>
|
||||||
|
<string name="success">Успешно</string>
|
||||||
|
<string name="wrong">Что-то пошло не так</string>
|
||||||
|
<string name="error 401">Логина не существует или неверный</string>
|
||||||
|
<string name="ok">ОК</string>
|
||||||
|
<string name="error">Ошибка</string>
|
||||||
|
|
||||||
|
</resources>
|
@ -1,17 +1,17 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">ACSS</string>
|
<string name="app_name">AS</string>
|
||||||
<string name="login">Enter Login</string>
|
<string name="login">Enter Login</string>
|
||||||
<string name="password">Enter password</string>
|
<string name="password">Enter password</string>
|
||||||
<string name="hello">Hello</string>
|
<string name="hello">Welcome!</string>
|
||||||
<string name="continue_">Continue</string>
|
<string name="continue_">Continue</string>
|
||||||
<string name="logout">logout</string>
|
<string name="logout">Logout</string>
|
||||||
<string name="login_hint">Login must be at least 3 characters long,\nstart with a letter,\ncontain only letters and numbers.</string>
|
<string name="login_hint">Login must be at least 3 characters long,\start with a letter,\contain only letters and numbers.</string>
|
||||||
<string name="close_button">Close</string>
|
<string name="close_button">Close</string>
|
||||||
<string name="scan">Scan</string>
|
<string name="scan">Scan</string>
|
||||||
<string name="cancel">Вход был отменён</string>
|
<string name="cancel">The entrance was cancelled</string>
|
||||||
<string name="success">Успешно</string>
|
<string name="success">Successful</string>
|
||||||
<string name="wrong">Что-то пошло не так</string>
|
<string name="wrong">Somethings wrong</string>
|
||||||
<string name="error401">Логина не существует или неверный</string>
|
<string name="error 401">The login does not work or is incorrect</string>
|
||||||
<string name="ok">ОК</string>
|
<string name="ok">ОК</string>
|
||||||
<string name="error">Error</string>
|
<string name="error">Error</string>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user