Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2dbd06c7 authored by Elliott Hughes's avatar Elliott Hughes Committed by Gerrit Code Review
Browse files

Merge "Move recovery_l10n here from development/tools."

parents 3123e5ad 3d0153a8
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# Copyright 2012 Google Inc. All Rights Reserved.

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_PACKAGE_NAME := RecoveryLocalizer
LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, src)

include $(BUILD_PACKAGE)
+18 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.android.recovery_l10n">

  <application android:label="Recovery Localizer">
    <activity android:name="Main"
              android:label="Recovery Localizer">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>

</manifest>

+31 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              >

  <Spinner android:id="@+id/which"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           />

  <Button android:id="@+id/go"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/go"
          />

  <TextView android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="#ffffffff"
            android:background="#ff000000"
            android:maxWidth="480px"
            android:gravity="center"
            />


</LinearLayout>

+8 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <string name="recovery_installing" msgid="7864047928003865598">"Installeer tans stelselopdatering..."</string>
    <string name="recovery_erasing" msgid="4612809744968710197">"Vee tans uit..."</string>
    <string name="recovery_no_command" msgid="1915703879031023455">"Geen bevel."</string>
    <string name="recovery_error" msgid="4550265746256727080">"Fout!"</string>
</resources>
+8 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <string name="recovery_installing" msgid="7864047928003865598">"የስርዓት ዝማኔ በመጫን ላይ…"</string>
    <string name="recovery_erasing" msgid="4612809744968710197">"በመደምሰስ ላይ…"</string>
    <string name="recovery_no_command" msgid="1915703879031023455">"ምንም ትዕዛዝ የለም።"</string>
    <string name="recovery_error" msgid="4550265746256727080">"ስህተት!"</string>
</resources>
Loading