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

Commit f53e034a authored by Seigo Nonaka's avatar Seigo Nonaka
Browse files

Update language to comply with Android’s inclusive language guidance

See https://source.android.com/setup/contribute/respectful-code for reference

Bug: 161896447
Test: tapas LatinIME && m
Change-Id: I2ffb39ff70f61e579b62761d3da526a545dead1f
parent daadf710
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
    <include
        latin:keyboardLayout="@xml/key_styles_settings" />
    <!-- Functional key styles -->
    <!-- Base style for shift key. A single space is used for dummy label in moreKeys. -->
    <!-- Base style for shift key. A single space is used for base label in moreKeys. -->
    <key-style
        latin:styleName="baseForShiftKeyStyle"
        latin:keyActionFlags="noKeyPreview"
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
    <include
        latin:keyboardLayout="@xml/key_styles_settings" />
    <!-- Functional key styles -->
    <!-- Base style for shift key. A single space is used for dummy label in moreKeys. -->
    <!-- Base style for shift key. A single space is used for base label in moreKeys. -->
    <key-style
        latin:styleName="baseForShiftKeyStyle"
        latin:keyActionFlags="noKeyPreview"
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
    android:title="@string/settings_screen_accounts">

    <!-- This preference is a dummy view of the underlying preference.
    <!-- This preference is a fake view of the underlying preference.
         This isn't persisted and the summary/title is refreshed by the fragment
         after inspecting the underlying account preference. -->
    <Preference
+1 −1
Original line number Diff line number Diff line
@@ -870,7 +870,7 @@ public class MetadataDbHelper extends SQLiteOpenHelper {
     */
    public static void updateClientInfo(final Context context, final String clientId,
            final ContentValues values) {
        // Sanity check the content values
        // Validity check the content values
        final String valuesClientId = values.getAsString(CLIENT_CLIENT_ID_COLUMN);
        final String valuesMetadataUri = values.getAsString(CLIENT_METADATA_URI_COLUMN);
        final String valuesMetadataAdditionalId =
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ public class Event {
        mSuggestedWordInfo = suggestedWordInfo;
        mFlags = flags;
        mNextEvent = next;
        // Sanity checks
        // Validity checks
        // mSuggestedWordInfo is non-null if and only if the type is SUGGESTION_PICKED
        if (EVENT_TYPE_SUGGESTION_PICKED == mEventType) {
            if (null == mSuggestedWordInfo) {
Loading